:root {
    /* Paleta de colores principal */
    --onix-gold: #ec9f18;        /* Dorado-naranja principal */
    --onix-gold-light: #fdb42b;  /* Versión más clara y brillante */
    --onix-gold-dark: #d68b0c;   /* Versión más oscura y profunda */
    --onix-black: #000000;
    --onix-dark: #1A1A1A;
    --onix-gray-dark: #333333;
    --onix-gray: #666666;
    --onix-gray-light: #F5F5F5;
    --onix-white: #FFFFFF;
}

.logo-white, .logo-gold {
    height: 40px;
    width: 100%;
}

/* Estilos de navegación */
.navbar {
    background-color: var(--onix-black);
    transition: all 0.3s ease;
    max-width: 100%;
    padding: 0px;
}

.navbar-brand {
    padding: 4px;
    margin:0px;
    max-width: 70%;
}

.navbar.scrolled {
    background-color: var(--onix-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: opacity 0.3s ease;
}

.navbar-brand .logo-white {
    display: block;
}

.navbar-brand .logo-gold {
    display: none;
}

.navbar.scrolled .navbar-brand .logo-white {
    display: none;
}

.navbar.scrolled .navbar-brand .logo-gold {
    display: block;
}

.nav-link {
    color: var(--onix-white) !important;
    font-weight: 300;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: black !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--onix-gold-dark) !important;
}

.navbar-toggler {
    border-color: var(--onix-white);
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--onix-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(236, 159, 24, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--onix-white);
    overflow: hidden;
    margin-top: 48px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%),
                url('/assets/img/servicio-ejecutivo.jpg') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(236, 159, 24, 0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--onix-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.9;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(236, 159, 24, 0.9);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    margin-right: 0.5rem;
    color: var(--onix-white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title .text-gold {
    color: var(--onix-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--onix-gray-light);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--onix-gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-feature i {
    font-size: 1.2rem;
    color: var(--onix-gold);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-actions .btn-onix {
    background: linear-gradient(45deg, var(--onix-gold), var(--onix-gold-light));
    border: none;
    box-shadow: 0 4px 15px rgba(236, 159, 24, 0.4);
}

.hero-actions .btn-onix:hover {
    background: linear-gradient(45deg, var(--onix-gold-dark), var(--onix-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 159, 24, 0.6);
}

.hero-actions .btn-outline-light {
    border: 2px solid var(--onix-white);
    background: transparent;
    color: var(--onix-white);
}

.hero-actions .btn-outline-light:hover {
    background: var(--onix-white);
    color: var(--onix-dark);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--onix-gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--onix-gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

.scroll-text {
    color: var(--onix-gray-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    color: var(--onix-gold);
    font-size: 1.5rem;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Botones */
.btn-onix {
    background: linear-gradient(135deg, var(--onix-gold), var(--onix-gold-light));
    border: none;
    color: var(--onix-white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-onix:hover {
    background: linear-gradient(135deg, var(--onix-gold-dark), var(--onix-gold));
    color: var(--onix-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 159, 24, 0.3);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--onix-gold);
    color: var(--onix-gold);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--onix-gold);
    color: var(--onix-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 159, 24, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--onix-white);
    color: var(--onix-white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--onix-white);
    color: var(--onix-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Tarjetas de características */
.features-section {
    padding: 5rem 0;
    background-color: var(--onix-white);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
    background-color: var(--onix-white);
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    color: var(--onix-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--onix-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--onix-gray);
}

/* Enhanced Features Section - Nuevas clases mejoradas */
.enhanced-features {
    background: linear-gradient(135deg, var(--onix-white) 0%, var(--onix-gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--onix-gold) 50%, transparent 100%);
}

.features-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.features-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--onix-gold);
    border-radius: 2px;
}

.features-section-subtitle {
    font-size: 1.1rem;
    color: var(--onix-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.enhanced-feature-card {
    background: var(--onix-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(236, 159, 24, 0.1);
}

.enhanced-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enhanced-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.enhanced-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--onix-gold-light) 0%, var(--onix-gold) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-feature-card:hover .feature-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.enhanced-feature-card:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-icon-enhanced {
    color: var(--onix-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.enhanced-feature-card:hover .feature-icon-enhanced {
    transform: scale(1.1);
}

.feature-number {
    background: var(--onix-dark);
    color: var(--onix-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    position: relative;
}

.feature-number::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-feature-card:hover .feature-number::before {
    opacity: 1;
}

.feature-card-body {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--onix-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.enhanced-feature-card:hover .feature-title {
    color: var(--onix-gold-dark);
}

.feature-description {
    color: var(--onix-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--onix-gray-dark);
    transition: all 0.3s ease;
}

.feature-benefits li i {
    color: var(--onix-gold);
    margin-right: 0.75rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.enhanced-feature-card:hover .feature-benefits li {
    color: var(--onix-dark);
}

.enhanced-feature-card:hover .feature-benefits li i {
    transform: scale(1.2);
}

.feature-card-footer {
    margin-top: auto;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.enhanced-feature-card:hover .feature-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 159, 24, 0.3);
}

/* Responsive adjustments for enhanced features */
@media (max-width: 991px) {
    .features-section-title {
        font-size: 2rem;
    }
    
    .enhanced-feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .enhanced-features {
        padding: 3rem 0;
    }
    
    .features-section-title {
        font-size: 1.8rem;
    }
    
    .features-section-subtitle {
        font-size: 1rem;
    }
    
    .enhanced-feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-enhanced {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

/* Animaciones para AOS (Animate On Scroll) */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Página de servicios */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('/assets/img/servicios-bg.jpg') center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    color: var(--onix-white);
    margin-top: 76px;
}

.service-card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: var(--onix-white);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    height: 250px;
    object-fit: cover;
}

.service-card .card-title {
    color: var(--onix-gold);
    font-weight: 600;
}

.service-card .card-text {
    color: var(--onix-gray);
}

/* Sección de características de servicio */
.service-features {
    background-color: var(--onix-gray-light);
    padding: 4rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    color: var(--onix-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--onix-gray);
    margin-bottom: 0;
}

.feature-icon {
    color: var(--onix-gold);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Footer Styles */
.footer {
    background-color: var(--onix-black) !important;
}

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

.social-links a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--onix-gold-light) !important;
}

hr.bg-gold {
    border: none;
    height: 2px;
    background: var(--onix-gold);
    margin: 1rem 0;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--onix-gold-light) !important;
    text-decoration: underline;
}

.footer-links .text-muted {
    color: var(--onix-gray) !important;
    font-size: 0.9rem;
}

/* Botones flotantes */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--onix-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-call {
    background-color: var(--onix-gold);
}

.btn-call:hover {
    background-color: var(--onix-gold-dark);
    color: var(--onix-white);
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--onix-white);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .btn-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Beneficios Section */
.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    margin-bottom: 1rem;
    margin-right: 0;
    margin-left: 0;
}

.benefit-card h4, .benefit-card p {
    width: 100%;
    word-break: break-word;
    text-align: center;
    margin: 0 auto 0.5rem auto;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-content h4 {
    color: var(--onix-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--onix-gray);
    margin-bottom: 0;
}

/* Servicios Destacados */
.service-highlight {
    background: var(--onix-white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
}

.service-highlight img {
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-highlight h4 {
    color: var(--onix-gold);
    margin: 1rem 0;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    color: var(--onix-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features-list li i {
    color: var(--onix-gold);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-card {
        margin-bottom: 1rem;
    }
    
    .service-highlight {
        margin-bottom: 1.5rem;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: var(--onix-gray-light);
}

.review-card {
    background: var(--onix-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: var(--onix-gold);
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--onix-gray);
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.review-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--onix-gray-light);
    padding-top: 1rem;
}

.author-info h5 {
    margin: 0;
    color: var(--onix-dark);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
}

/* Estadísticas */
.review-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--onix-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h4 {
    color: var(--onix-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--onix-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .review-text {
        min-height: auto;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

/* Cobertura Styles */
.coverage-map-section {
    background-color: var(--onix-white);
}

.coverage-map {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.coverage-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: var(--onix-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.coverage-item:hover {
    transform: translateX(10px);
}

.coverage-icon {
    background-color: var(--onix-gold);
    color: var(--onix-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.coverage-content h4 {
    color: var(--onix-dark);
    margin-bottom: 0.5rem;
}

.coverage-content p {
    color: var(--onix-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--onix-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-card h4 {
    color: var(--onix-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--onix-gray);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .coverage-item:hover {
        transform: none;
    }
    
    .coverage-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Historia Styles */
.history-section {
    position: relative;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--onix-gold);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    position: relative;
    width: 45%;
    margin-left: auto;
    padding: 2rem;
    background: var(--onix-white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: -80px;
    background: var(--onix-gold);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.timeline-item:nth-child(even) .timeline-year {
    left: auto;
    right: -80px;
}

.timeline-body h4 {
    color: var(--onix-gold);
    margin-bottom: 1rem;
}

.timeline-body p {
    color: var(--onix-gray);
    margin-bottom: 0;
}

/* Valores Section */
.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--onix-white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--onix-gold);
    color: var(--onix-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Commitment Section */
.commitment-section {
    background-color: var(--onix-white);
}

.commitment-content {
    padding: 2rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.commitment-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.commitment-list li i {
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }
    
    .timeline-content {
        width: 90%;
        margin-left: 2rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
    
    .timeline-year {
        left: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -10px;
        right: auto;
    }
}

/* Contact Styles */
.contact-info {
    background: var(--onix-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    color: var(--onix-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--onix-gray);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--onix-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--onix-gold);
    box-shadow: 0 0 0 0.2rem rgba(236, 159, 24, 0.15);
}

.contact-form .form-control.is-invalid:focus,
.contact-form .form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.contact-form .form-label {
    color: var(--onix-dark);
    font-weight: 500;
}

.contact-form .form-text {
    color: var(--onix-gray);
    font-size: 0.875rem;
}

.contact-form .btn-onix {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.contact-form .btn-onix:hover {
    transform: translateY(-2px);
}

.contact-form .invalid-feedback {
    font-size: 0.875rem;
}

/* Estilo para campos requeridos */
.form-label.required::after {
    content: " *";
    color: #dc3545;
}

/* Animación para el botón de enviar */
@keyframes button-loading {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.contact-form button[type="submit"]:active {
    animation: button-loading 0.2s ease;
}

.map-wrapper {
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        margin-bottom: 1.5rem;
    }
}

/* Blog Styles */
.blog-section {
    background-color: var(--onix-white);
}

.blog-card {
    background: var(--onix-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--onix-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    color: var(--onix-gold);
    margin-right: 0.5rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--onix-dark);
}

.blog-content p {
    color: var(--onix-gray);
    margin-bottom: 1.5rem;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--onix-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--onix-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--onix-gold);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: var(--onix-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--onix-gold);
    padding-left: 5px;
}

.category-list i {
    color: var(--onix-gold);
    margin-right: 0.5rem;
}

.popular-post {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--onix-gray-light);
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.post-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.post-info h4 a {
    color: var(--onix-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-info h4 a:hover {
    color: var(--onix-gold);
}

.post-info span {
    font-size: 0.8rem;
    color: var(--onix-gray);
}

@media (max-width: 768px) {
    .blog-sidebar {
        margin-top: 2rem;
    }
}

/* Article Styles */
.article-section {
    background-color: var(--onix-white);
}

.article-meta {
    color: var(--onix-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.article-meta span {
    margin-right: 1.5rem;
}

.article-meta i {
    color: var(--onix-gold);
    margin-right: 0.5rem;
}

.article-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: var(--onix-dark);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.article-content ul li {
    margin-bottom: 0.5rem;
    color: var(--onix-gray);
}

.info-box, .conclusion-box {
    background: var(--onix-gray-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--onix-gold);
}

.info-box h3, .conclusion-box h3 {
    color: var(--onix-gold);
    margin-bottom: 1rem;
}

.cta-box {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('/assets/img/cta-bg.jpg') center/cover;
    padding: 3rem;
    border-radius: 8px;
    color: var(--onix-white);
}

.share-box {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--onix-gray-light);
}

.share-box h4 {
    color: var(--onix-dark);
    margin-bottom: 1rem;
}

.social-share {
    display: flex;
    gap: 1rem;
}

.social-share .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-share .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .article-content {
        font-size: 1rem;
    }
    
    .article-meta span {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* Recommended Posts Styles */
.recommended-post {
    margin-bottom: 2rem;
    background: var(--onix-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.recommended-post:hover {
    transform: translateY(-5px);
}

.recommended-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recommended-content {
    padding: 1.5rem;
}

.recommended-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.recommended-content h4 a {
    color: var(--onix-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recommended-content h4 a:hover {
    color: var(--onix-gold);
}

.recommended-content p {
    font-size: 0.9rem;
    color: var(--onix-gray);
    margin-bottom: 0.5rem;
}

.recommended-content .post-meta {
    font-size: 0.8rem;
    color: var(--onix-gray);
}

.recommended-content .post-meta i {
    color: var(--onix-gold);
    margin-right: 0.3rem;
}

/* Enhanced Benefits Section Styles */
.enhanced-benefits-section {
    position: relative;
    background: linear-gradient(135deg, var(--onix-gray-light) 0%, #f8f9fa 100%);
    overflow: hidden;
}

.enhanced-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ec9f18" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.enhanced-benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--onix-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.enhanced-benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border-radius: 2px;
}

.enhanced-benefits-subtitle {
    font-size: 1.1rem;
    color: var(--onix-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.enhanced-benefit-card {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enhanced-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold) 0%, var(--onix-gold-light) 50%, var(--onix-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.enhanced-benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 159, 24, 0.2);
}

.enhanced-benefit-card:hover::before {
    transform: scaleX(1);
}

.enhanced-benefit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.enhanced-benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.enhanced-benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.enhanced-benefit-card:hover .enhanced-benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.enhanced-benefit-card:hover .enhanced-benefit-icon-wrapper::before {
    opacity: 0.6;
    transform: scale(1.2);
}

.enhanced-benefit-icon {
    font-size: 1.5rem;
    color: var(--onix-white);
    transition: all 0.3s ease;
}

.enhanced-benefit-card:hover .enhanced-benefit-icon {
    transform: scale(1.1);
}

.enhanced-benefit-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--onix-gold);
    opacity: 0.3;
    position: relative;
}

.enhanced-benefit-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--onix-gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    transition: all 0.3s ease;
}

.enhanced-benefit-card:hover .enhanced-benefit-number::before {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.2);
}

.enhanced-benefit-body {
    margin-bottom: 1.5rem;
}

.enhanced-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--onix-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.enhanced-benefit-card:hover .enhanced-benefit-title {
    color: var(--onix-gold);
}

.enhanced-benefit-description {
    color: var(--onix-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.enhanced-benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enhanced-benefit-features li {
    display: flex;
    align-items: center;
    color: var(--onix-gray);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.enhanced-benefit-features li i {
    color: var(--onix-gold);
    margin-right: 0.75rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.enhanced-benefit-card:hover .enhanced-benefit-features li {
    color: var(--onix-dark);
    transform: translateX(5px);
}

.enhanced-benefit-card:hover .enhanced-benefit-features li i {
    transform: scale(1.2);
}

.enhanced-benefit-footer {
    border-top: 1px solid var(--onix-gray-light);
    padding-top: 1rem;
    text-align: center;
}

.enhanced-benefit-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.enhanced-benefit-card:hover .enhanced-benefit-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 159, 24, 0.3);
}

/* Responsive adjustments for enhanced benefits */
@media (max-width: 991px) {
    .enhanced-benefits-title {
        font-size: 2rem;
    }
    
    .enhanced-benefit-card {
        padding: 1.5rem;
    }
    
    .enhanced-benefit-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .enhanced-benefit-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .enhanced-benefits-section {
        padding: 3rem 0;
    }
    
    .enhanced-benefits-title {
        font-size: 1.8rem;
    }
    
    .enhanced-benefits-subtitle {
        font-size: 1rem;
    }
    
    .enhanced-benefit-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .enhanced-benefit-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .enhanced-benefit-icon {
        font-size: 1.1rem;
    }
    
    .enhanced-benefit-title {
        font-size: 1.2rem;
    }
    
    .enhanced-benefit-description {
        font-size: 0.9rem;
    }
    
    .enhanced-benefit-features li {
        font-size: 0.85rem;
    }
}

/* ===== SECCIÓN DE SERVICIOS DESTACADOS MEJORADA ===== */

.featured-services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.featured-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ec9f18" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.services-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--onix-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.services-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border-radius: 2px;
}

.services-section-subtitle {
    font-size: 1.2rem;
    color: var(--onix-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Tarjetas de servicio mejoradas */
.enhanced-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--onix-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enhanced-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold) 0%, var(--onix-gold-light) 50%, var(--onix-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.enhanced-service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 159, 24, 0.2);
}

.enhanced-service-card:hover::before {
    transform: scaleX(1);
}

/* Header de la tarjeta */
.service-card-header {
    position: relative;
    overflow: hidden;
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.enhanced-service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 159, 24, 0.8) 0%, rgba(236, 159, 24, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enhanced-service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay-icon {
    font-size: 3rem;
    color: var(--onix-white);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.enhanced-service-card:hover .service-overlay-icon {
    transform: scale(1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--onix-gold);
    color: var(--onix-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(236, 159, 24, 0.3);
    transition: all 0.3s ease;
}

.enhanced-service-card:hover .service-number {
    transform: scale(1.1) rotate(360deg);
    background: var(--onix-gold-light);
}

/* Cuerpo de la tarjeta */
.service-card-body {
    flex: 1 1 auto;
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--onix-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.enhanced-service-card:hover .service-title {
    color: var(--onix-gold);
}

.service-description {
    color: var(--onix-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--onix-gray-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-features li i {
    color: var(--onix-gold);
    margin-right: 0.8rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.enhanced-service-card:hover .service-features li {
    color: var(--onix-dark);
    transform: translateX(5px);
}

.enhanced-service-card:hover .service-features li i {
    color: var(--onix-gold-light);
    transform: scale(1.2);
}

/* Footer de la tarjeta */
.service-card-footer {
    margin-top: auto;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-badge {
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.enhanced-service-card:hover .service-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 159, 24, 0.3);
}

.service-link {
    width: 40px;
    height: 40px;
    background: var(--onix-dark);
    color: var(--onix-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-link:hover {
    background: var(--onix-gold);
    color: var(--onix-white);
    transform: scale(1.1) rotate(5deg);
}

/* Botón de ver todos los servicios */
.featured-services-section .btn-onix {
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(236, 159, 24, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-services-section .btn-onix::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.featured-services-section .btn-onix:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 159, 24, 0.4);
}

.featured-services-section .btn-onix:hover::before {
    left: 100%;
}

/* Responsive para servicios destacados */
@media (max-width: 991px) {
    .services-section-title {
        font-size: 2.5rem;
    }
    
    .enhanced-service-card {
        margin-bottom: 2rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .featured-services-section {
        padding: 4rem 0;
    }
    
    .services-section-title {
        font-size: 2rem;
    }
    
    .services-section-subtitle {
        font-size: 1rem;
    }
    
    .enhanced-service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-card-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .featured-services-section .btn-onix {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Animaciones adicionales */
@keyframes serviceCardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.enhanced-service-card:nth-child(1) {
    animation: serviceCardFloat 6s ease-in-out infinite;
}

.enhanced-service-card:nth-child(2) {
    animation: serviceCardFloat 6s ease-in-out infinite 2s;
}

.enhanced-service-card:nth-child(3) {
    animation: serviceCardFloat 6s ease-in-out infinite 4s;
}

/* ===== COVERAGE PAGE STYLES ===== */

/* Coverage Hero Section */
.coverage-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%),
                url('/assets/img/cobertura-hero.jpg') center/cover;
    color: var(--onix-white);
    padding: 120px 0 80px;
    position: relative;
}

.coverage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(236, 159, 24, 0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.coverage-hero .container {
    position: relative;
    z-index: 2;
}

.coverage-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-stats .stat-item {
    text-align: center;
    flex: 1;
}

.coverage-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--onix-gold);
    line-height: 1;
}

.coverage-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--onix-white);
    opacity: 0.9;
    margin-top: 0.5rem;
}

.coverage-hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.coverage-hero-image img:hover {
    transform: translateY(-5px);
}

/* Coverage Map Section */
.coverage-map-container {
    position: relative;
}

.coverage-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.map-controls .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.map-controls .btn:hover,
.map-controls .btn.active {
    background-color: var(--onix-gold);
    border-color: var(--onix-gold);
    color: var(--onix-white);
    transform: translateY(-2px);
}

/* Coverage Areas Panel */
.coverage-areas-panel {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.panel-title {
    color: var(--onix-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--onix-gold);
    padding-bottom: 1rem;
}

.coverage-areas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--onix-gray-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.coverage-item:hover,
.coverage-item.active {
    background: var(--onix-white);
    border-color: var(--onix-gold);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(236, 159, 24, 0.2);
}

.coverage-icon {
    width: 50px;
    height: 50px;
    background: var(--onix-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--onix-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.coverage-content h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.coverage-content p {
    color: var(--onix-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.coverage-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--onix-gold);
    color: var(--onix-white);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Coverage Categories */
.coverage-category-card {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.coverage-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold), var(--onix-gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.coverage-category-card:hover::before {
    transform: scaleX(1);
}

.coverage-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--onix-gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--onix-gold), var(--onix-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--onix-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.coverage-category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.coverage-category-card h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.coverage-category-card p {
    color: var(--onix-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-destinations {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.category-destinations li {
    padding: 0.5rem 0;
    color: var(--onix-gray);
    border-bottom: 1px solid var(--onix-gray-light);
    position: relative;
    padding-left: 1.5rem;
}

.category-destinations li::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.category-destinations li:last-child {
    border-bottom: none;
}

.category-badge {
    background: var(--onix-gold);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Coverage Details Tabs */
.coverage-tabs {
    background: var(--onix-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coverage-tabs .nav-tabs {
    border-bottom: 2px solid var(--onix-gray-light);
    background: var(--onix-gray-light);
    padding: 0;
    margin: 0;
}

.coverage-tabs .nav-link {
    border: none;
    background: transparent;
    color: black !important;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.coverage-tabs .nav-link:hover {
    background: var(--onix-white);
    color: var(--onix-gold);
}

.coverage-tabs .nav-link.active {
    background: var(--onix-white);
    color: var(--onix-gold);
    border-bottom: 3px solid var(--onix-gold);
}

.coverage-tabs .nav-link i {
    margin-right: 0.5rem;
}

.tab-content {
    padding: 2rem;
}

.coverage-detail-content h3 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--onix-gold);
    padding-bottom: 0.5rem;
}

.coverage-detail-content p {
    color: var(--onix-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.coverage-zone {
    background: var(--onix-gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--onix-gold);
    color: var(--onix-dark); /* Asegura texto oscuro */
}

.coverage-zone h5 {
    color: var(--onix-gold); /* Título en dorado para destacar */
    font-weight: 700;
    margin-bottom: 1rem;
}

.coverage-zone ul,
.coverage-zone li {
    color: var(--onix-dark); /* Listas en color oscuro */
    font-size: 1rem;
}

.coverage-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.coverage-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--onix-gray);
}

/* Airport Services */
.airport-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.airport-item {
    background: var(--onix-gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--onix-gold);
}

.airport-info h5 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.airport-info p {
    color: var(--onix-gray);
    margin-bottom: 1rem;
}

.airport-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.airport-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--onix-gray);
    font-size: 0.9rem;
}

/* Valle Bravo Services */
.valle-bravo-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--onix-gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--onix-gold);
}

.service-item h5 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--onix-gray);
    margin: 0;
}

/* Coverage Sidebar */
.coverage-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sidebar-widget h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--onix-gold);
    padding-bottom: 0.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: var(--onix-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item strong {
    color: var(--onix-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: var(--onix-gray);
    margin: 0;
    font-size: 0.9rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--onix-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list li i {
    color: var(--onix-gold);
    font-size: 0.9rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-options .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-options .btn:hover {
    transform: translateY(-2px);
}

/* Coverage Benefits */
.coverage-benefits {
    background: linear-gradient(135deg, var(--onix-gray-light) 0%, #f8f9fa 100%);
}

.benefit-card {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--onix-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--onix-gold), var(--onix-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--onix-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--onix-gray);
    line-height: 1.6;
    margin: 0;
}

/* Coverage CTA */
.coverage-cta {
    background: linear-gradient(135deg, var(--onix-dark) 0%, var(--onix-black) 100%);
    color: var(--onix-white);
    position: relative;
    overflow: hidden;
}

.coverage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(236,159,24,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(236,159,24,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(236,159,24,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(236,159,24,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(236,159,24,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.coverage-cta .container {
    position: relative;
    z-index: 2;
}

.coverage-cta h2 {
    color: var(--onix-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.coverage-cta .lead {
    color: var(--onix-white);
    opacity: 0.9;
    margin-bottom: 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--onix-dark);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold), var(--onix-gold-light));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--onix-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .coverage-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .coverage-stats .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .coverage-stats .stat-number {
        font-size: 2rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .airport-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .valle-bravo-services {
        grid-template-columns: 1fr;
    }
    
    .coverage-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .coverage-hero {
        padding: 100px 0 60px;
    }
    
    .coverage-hero .row {
        flex-direction: column-reverse;
    }
    
    .coverage-hero-image {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coverage-tabs .nav-tabs {
        flex-direction: column;
    }
    
    .coverage-tabs .nav-link {
        border-radius: 0;
        border-bottom: 1px solid var(--onix-gray-light);
    }
    
    .coverage-tabs .nav-link.active {
        border-bottom: 3px solid var(--onix-gold);
    }
    
    .map-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .map-controls .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .coverage-cta .row {
        text-align: center;
    }
    
    .coverage-cta .btn {
        margin-bottom: 1rem;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.coverage-category-card,
.benefit-card,
.coverage-item {
    animation: fadeInUp 0.6s ease-out;
}

.coverage-category-card:nth-child(1) { animation-delay: 0.1s; }
.coverage-category-card:nth-child(2) { animation-delay: 0.2s; }
.coverage-category-card:nth-child(3) { animation-delay: 0.3s; }
.coverage-category-card:nth-child(4) { animation-delay: 0.4s; }

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* Mejora visual para el header de cobertura y estadísticas */
.coverage-hero .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    word-break: break-word;
}

.coverage-hero .lead {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--onix-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.coverage-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.coverage-stats .stat-item {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.2rem 2.2rem;
    text-align: center;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.coverage-stats .stat-item:hover {
    box-shadow: 0 8px 24px rgba(236,159,24,0.15);
}

.coverage-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--onix-gold);
    text-shadow: 1px 2px 6px rgba(236,159,24,0.10);
    margin-bottom: 0.2rem;
}

.coverage-stats .stat-label {
    color: var(--onix-dark);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
}

.coverage-hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #ececec;
    min-height: 180px;
    object-fit: cover;
}

.coverage-hero-image img:not([src]),
.coverage-hero-image img[src=""] {
    display: none;
}

/* History Page Styles */
.history-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--onix-white);
    overflow: hidden;
    padding-top: 170px;
}

.history-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%),
                url('/assets/img/servicio-ejecutivo.jpg') center/cover;
    z-index: -2;
}

.history-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(236, 159, 24, 0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.history-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.history-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--onix-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.history-hero .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.history-hero .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.history-hero .particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.history-hero .particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.history-hero .particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.history-hero .hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.history-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(236, 159, 24, 0.9);
    color: var(--onix-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(236, 159, 24, 0.3);
}

.history-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.history-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.history-hero .hero-stats {
    margin-top: 3rem;
}

.history-hero .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.history-hero .stat-card:hover {
    background: rgba(236, 159, 24, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.history-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--onix-gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.history-hero .stat-label {
    font-size: 0.9rem;
    color: var(--onix-white);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.history-hero .hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--onix-white);
    z-index: 2;
}

.history-hero .scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.history-hero .scroll-arrow {
    animation: bounce 2s infinite;
}

.history-hero .scroll-arrow i {
    font-size: 1.5rem;
    color: var(--onix-gold);
}

/* Enhanced Timeline Styles */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--onix-gold), var(--onix-gold-light));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(236, 159, 24, 0.3);
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
}

.timeline-content {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 159, 24, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--onix-gold);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
}

.timeline-year {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--onix-gold);
    color: var(--onix-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(236, 159, 24, 0.3);
    z-index: 2;
}

.timeline-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--onix-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--onix-white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(236, 159, 24, 0.3);
    z-index: 3;
}

.timeline-body h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-body p {
    color: var(--onix-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-badge {
    background: rgba(236, 159, 24, 0.1);
    color: var(--onix-gold-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(236, 159, 24, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: var(--onix-gold);
    color: var(--onix-white);
    transform: translateY(-2px);
}

.feature-badge i {
    margin-right: 0.3rem;
}

/* Enhanced Value Cards */
.value-card {
    background: var(--onix-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 159, 24, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold), var(--onix-gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--onix-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--onix-gold), var(--onix-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--onix-white);
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(236, 159, 24, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(236, 159, 24, 0.4);
}

.value-card h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--onix-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.value-features span {
    display: flex;
    align-items: center;
    color: var(--onix-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.value-features span i {
    color: var(--onix-gold);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.value-card:hover .value-features span {
    color: var(--onix-dark);
}

/* Enhanced Commitment Section */
.commitment-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.commitment-image img {
    transition: transform 0.3s ease;
}

.commitment-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(236, 159, 24, 0.8), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commitment-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--onix-white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.overlay-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.commitment-content h2 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.commitment-list {
    margin-bottom: 2rem;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(236, 159, 24, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--onix-gold);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: rgba(236, 159, 24, 0.1);
    transform: translateX(5px);
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background: var(--onix-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--onix-white);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.commitment-text h5 {
    color: var(--onix-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.commitment-text p {
    color: var(--onix-gray);
    margin: 0;
    line-height: 1.5;
}

.commitment-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--onix-dark) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ec9f18" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 991px) {
    .history-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .history-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .history-hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }
    
    .history-hero .hero-title {
        font-size: 2rem;
    }
    
    .history-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .history-hero .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .history-hero .stat-number {
        font-size: 2rem;
    }
    
    .history-hero .stat-label {
        font-size: 0.8rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 40px;
        padding: 1.5rem;
    }
    
    .timeline-year {
        left: 20px;
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .timeline-icon {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .commitment-actions {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--onix-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--onix-gold), var(--onix-gold-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--onix-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Modern Stats for Historia */
.stat-modern {
    background: rgba(0,0,0,0.45);
    border: 2px solid var(--onix-gold);
    border-radius: 18px;
    padding: 2rem 1rem 1.5rem 1rem;
    margin: 0 auto;
    min-width: 120px;
    min-height: 140px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--onix-white);
    position: relative;
    z-index: 2;
}
.stat-modern:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(236,159,24,0.18);
    border-color: var(--onix-gold-light);
}
.stat-modern .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--onix-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}
.stat-modern .stat-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--onix-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.18);
}
@media (max-width: 991px) {
    .stat-modern {
        min-width: 100px;
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
    .stat-modern .stat-number {
        font-size: 2rem;
    }
    .stat-modern .stat-label {
        font-size: 0.95rem;
    }
}
@media (max-width: 767px) {
    .stat-modern {
        min-width: 90px;
        min-height: 110px;
        padding: 1.2rem 0.2rem 1rem 0.2rem;
        margin-bottom: 1.2rem;
    }
    .stat-modern .stat-number {
        font-size: 1.5rem;
    }
    .stat-modern .stat-label {
        font-size: 0.85rem;
    }
}

/* Clean Stats (sin fondo ni borde) */
.stat-clean {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    min-width: unset;
    min-height: unset;
    padding: 0 0 0.5rem 0 !important;
    margin: 0 0 0.5rem 0 !important;
}
.stat-clean .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--onix-gold);
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}
.stat-clean .stat-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--onix-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.18);
    margin-top: 0.2rem;
}
@media (max-width: 991px) {
    .stat-clean .stat-number {
        font-size: 2rem;
    }
    .stat-clean .stat-label {
        font-size: 0.95rem;
    }
}
@media (max-width: 767px) {
    .stat-clean {
        margin-bottom: 1.2rem !important;
    }
    .stat-clean .stat-number {
        font-size: 1.5rem;
    }
    .stat-clean .stat-label {
        font-size: 0.85rem;
    }
}

/* Stats Section fuera del hero */
.stats-section {
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(2px);
    margin-bottom: 2rem;
    z-index: 2;
    position: relative;
}
.stats-section .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.stats-section .stat-clean {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.stats-section .stat-number {
    margin-bottom: 0.3rem;
}
.stats-section .stat-label {
    margin-top: 0.1rem;
}
@media (max-width: 991px) {
    .stats-section .stat-clean {
        margin-bottom: 1.2rem !important;
    }
}
@media (max-width: 767px) {
    .stats-section .row > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.2rem;
    }
    .stats-section .stat-clean {
        margin-bottom: 1.2rem !important;
    }
}

/* Estilos para la página de Políticas de Privacidad */
.privacy-hero {
    height: 60vh;
    min-height: 400px;
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%),
                url('/assets/img/servicio-ejecutivo.jpg') center/cover;
}

.privacy-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.privacy-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.privacy-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.privacy-content {
    background: var(--onix-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--onix-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--onix-gold);
    padding-bottom: 0.5rem;
}

.privacy-section-title i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.privacy-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--onix-gold-dark);
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--onix-gold);
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--onix-gray);
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

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

.privacy-list li::before {
    content: "•";
    color: var(--onix-gold);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.privacy-list li:hover {
    background: rgba(236, 159, 24, 0.05);
    padding-left: 2.5rem;
    border-radius: 5px;
}

.privacy-list li strong {
    color: var(--onix-dark);
    font-weight: 600;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(236, 159, 24, 0.05);
    padding-left: 1rem;
    border-radius: 5px;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-size: 1rem;
    color: var(--onix-gray);
    font-weight: 500;
}

.alert-info {
    background: linear-gradient(135deg, rgba(236, 159, 24, 0.1) 0%, rgba(236, 159, 24, 0.05) 100%);
    border: 1px solid rgba(236, 159, 24, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
}

.alert-heading {
    color: var(--onix-gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.alert-heading i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--onix-dark) 0%, var(--onix-black) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ec9f18" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ec9f18" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ec9f18" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ec9f18" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ec9f18" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-onix {
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border: none;
    color: var(--onix-white);
    box-shadow: 0 4px 15px rgba(236, 159, 24, 0.3);
}

.cta-buttons .btn-onix:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 159, 24, 0.4);
    color: var(--onix-white);
}

.cta-buttons .btn-outline-light {
    border: 2px solid var(--onix-white);
    color: var(--onix-white);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: var(--onix-white);
    color: var(--onix-dark);
    transform: translateY(-2px);
}

/* Responsive Design para Políticas de Privacidad */
@media (max-width: 991px) {
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 2rem;
        margin-top: -30px;
    }
    
    .privacy-section-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        height: 50vh;
        min-height: 300px;
        padding-top: 100px;
    }
    
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
        margin-top: -20px;
        border-radius: 10px;
    }
    
    .privacy-section-title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .privacy-section-title i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .privacy-list li {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
    
    .privacy-list li:hover {
        padding-left: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem 0;
    }
    
    .contact-item:hover {
        padding-left: 0.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .privacy-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 1rem;
        margin-top: -10px;
    }
    
    .privacy-section-title {
        font-size: 1.3rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-right: 0;
    }
}

/* Estilos para la página de Términos y Condiciones */
.hero-small {
    height: 50vh;
    min-height: 400px;
}

.hero-small .hero-content {
    text-align: center;
}

.hero-small .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-small .hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.terms-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.terms-content {
    background: var(--onix-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
}

.terms-section-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.terms-section-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section-title {
    color: var(--onix-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.terms-section-title i {
    font-size: 1.8rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-section-content {
    color: var(--onix-gray);
    line-height: 1.8;
}

.terms-section-content h4 {
    color: var(--onix-dark);
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
}

.terms-section-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--onix-gray);
    line-height: 1.6;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--onix-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-list li strong {
    color: var(--onix-dark);
    font-weight: 600;
}

.terms-list li:hover {
    color: var(--onix-dark);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 4px solid var(--onix-gold);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    width: 20px;
    margin-right: 0.5rem;
}

.terms-update-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
}

.terms-update-info p {
    margin: 0;
    color: var(--onix-gray);
    font-size: 0.9rem;
}

.terms-update-info strong {
    color: var(--onix-dark);
}

/* Estilos para el CTA de términos */
.cta-section {
    background: linear-gradient(135deg, var(--onix-dark) 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    color: var(--onix-white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-onix {
    background: linear-gradient(135deg, var(--onix-gold) 0%, var(--onix-gold-light) 100%);
    border: none;
    color: var(--onix-white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(236, 159, 24, 0.3);
}

.cta-section .btn-onix:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 159, 24, 0.4);
    color: var(--onix-white);
}

/* Responsive para términos y condiciones */
@media (max-width: 991px) {
    .hero-small .hero-title {
        font-size: 2.5rem;
    }
    
    .terms-content {
        padding: 2rem;
    }
    
    .terms-section-title {
        font-size: 1.3rem;
    }
    
    .terms-section-title i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-small {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-small .hero-title {
        font-size: 2rem;
    }
    
    .hero-small .hero-subtitle {
        font-size: 1rem;
    }
    
    .terms-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .terms-section-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-section-title i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .terms-section-content h4 {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-section .btn-onix {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-small .hero-title {
        font-size: 1.8rem;
    }
    
    .terms-content {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .terms-section-title {
        font-size: 1.1rem;
    }
    
    .terms-list li {
        padding-left: 1.2rem;
    }
    
    .contact-info {
        padding: 0.8rem;
    }
    
    .cta-section .btn-onix {
        width: 100%;
        justify-content: center;
    }
}
  