.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #001a4d 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(227, 6, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary), var(--color-accent));
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: var(--font-size-hero-h1);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: var(--line-height-tight);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: var(--font-size-body-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: var(--line-height-relaxed);
}

.hero .lead {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.hero-highlights {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.highlight-item {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.hero-cta {
    margin-bottom: var(--spacing-md);
}

.hero-cta .btn {
    min-width: 200px;
}

.trust-badges {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.9;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: white;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-badge i {
    color: var(--color-accent);
}

.technology-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.technology-badge.coverage {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(155, 89, 182, 0.6);
        transform: scale(1.02);
    }
}

.tech-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.benefit-tag {
    background: rgba(0, 210, 255, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--color-accent);
}

.coverage-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.coverage-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.coverage-card h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.coverage-card h6 {
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.coverage-card p {
    color: var(--color-gray-600);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.coverage-list li {
    padding: 0.25rem 0;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.9rem;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list li strong {
    color: var(--color-secondary);
}

.coverage-list li em {
    color: var(--color-gray-600);
    font-style: italic;
}

.info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: white;
    font-size: 1.25rem;
}

.info-card h5 {
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.info-card p {
    color: var(--color-gray-600);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-card .text-start {
    text-align: left !important;
}

.info-card .text-start p {
    text-align: left;
}

.info-card .text-start ul {
    list-style-position: inside;
    padding: 0;
    margin: 0;
    text-align: left;
}

.info-card .text-start ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--color-gray-700);
}

.btn-success {
    background-color: var(--color-whatsapp);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-success:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.bg-light-custom {
    background-color: var(--color-gray-50);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-light {
    color: var(--color-gray-100) !important;
}

.text-success {
    color: var(--color-whatsapp) !important;
}

.text-muted {
    color: var(--color-gray-600) !important;
}

.w-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-3 {
    gap: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-md);
}

.section .lead {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
}

.fas.fa-broadcast-tower {
    opacity: 0.7;
}

.fas.fa-check-circle {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 450px;
        padding: var(--spacing-lg) 0;
    }

    .hero .container {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero-highlights {
        padding: var(--spacing-sm);
    }

    .highlight-item {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
    }

    .highlight-item i {
        margin-bottom: 0.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        min-width: auto;
    }

    .trust-badges {
        gap: var(--spacing-sm);
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .tech-benefits {
        justify-content: flex-start;
    }

    .benefit-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .technology-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: var(--spacing-md) 0;
        min-height: 380px;
    }

    .hero .container {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .lead {
        font-size: 0.95rem;
    }

    .hero-highlights .row {
        gap: 0.5rem;
    }

    .hero-highlights .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .highlight-item {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .technology-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .coverage-card,
    .info-card {
        margin-bottom: var(--spacing-md);
    }

    .section h3 {
        font-size: 1.5rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .btn-lg {
        width: 100%;
    }
}
