/* Hero Section Parallax */
.hero-parallax {
    position: relative;
    background-image: url('../img/hero_bg_checador.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}
.hero-parallax::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 40, 60, 0.7); /* dark cyan overlay */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}
.btn-hero-primary {
    background: linear-gradient(135deg, #00b3ff, #008da2);
    border: none;
    color: white !important;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 179, 255, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 179, 255, 0.6);
}
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    color: white !important;
    padding: 13px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}
.btn-hero-secondary:hover {
    background: white;
    color: #004459 !important;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}
.comparison-header h2 {
    color: #008da2;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
}
.comp-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s;
}
.comp-card:hover {
    transform: translateY(-5px);
}
.comp-card h3 {
    color: #004459;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}
.comp-card h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}
.comp-list {
    list-style: none;
    padding: 0;
}
.comp-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
    line-height: 1.5;
}
.comp-list.pros li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #13de58;
    font-size: 1.2rem;
}
.comp-list.cons li::before {
    content: "\f00d";
    font-family: FontAwesome;
    position: absolute;
    left: 2px;
    top: 2px;
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #004459, #002233);
    color: white;
    padding: 60px 0;
    margin-top: 40px;
}
.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    text-align: center;
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}
.contact-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #00b3ff;
    display: block;
}
.contact-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-card p, .contact-card a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
}
.contact-card a:hover {
    color: white;
}

/* Modern Sections Styling */
.section-title {
    font-family: 'Archivo', sans-serif;
    color: #004459;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid #00b3ff;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.feature-box i {
    font-size: 2.5rem;
    color: #008da2;
    margin-bottom: 15px;
}
.feature-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.info-banner {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}
.modern-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.modern-table th {
    background: #008da2;
    color: #fff;
    padding: 15px;
    font-weight: 600;
}
.modern-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.modern-table tr:last-child td {
    border-bottom: none;
}
.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.featured::before {
    content: "Recomendado";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #13de58;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004459;
    margin: 20px 0;
}
.pricing-card .duration {
    font-size: 1.2rem;
    color: #666;
}
.docs-card {
    background: #004459;
    color: white;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}
.docs-card i {
    font-size: 5rem;
    color: #00b3ff;
}

