/* Estilos Modernos de Healthic - Basado en el sitio oficial */

/* Variables CSS para consistencia - Nueva paleta de colores Healthic */
:root {
    /* Colores primarios */
    --primary-color: #59BEC9;
    --primary-dark: #28939C;
    
    /* Colores secundarios para hover y acentos */
    --secondary-color: #EB451B;
    --accent-color: #077CAB;
    
    /* Colores de apoyo */
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-bg: #28939C;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-strong: 0 8px 16px rgba(0,0,0,0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset y configuración base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== NAVBAR MODERNO ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* Navbar transparente solo en index.html */
body.index-page .navbar {
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

/* Enlaces del navbar en index.html - color blanco para visibilidad sobre video */
body.index-page .navbar .nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

body.index-page .navbar .nav-link:hover {
    color: #EB451B !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Dropdown en index.html */
body.index-page .navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.index-page .navbar .dropdown-item {
    color: var(--text-dark);
}

body.index-page .navbar .dropdown-item:hover {
    background: rgba(235, 69, 27, 0.1);
    color: #EB451B;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: #EB451B !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Dropdown moderno */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== HERO SECTION MODERNO ===== */
.hero-section {
    background: var(--primary-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ===== BOTONES UNIFICADOS - ESTILO ESTÁNDAR ===== */
/* Botón principal - estilo "Más Información" */
.btnclaro, .btn-modern, .btn-primary, .btn-secondary, button[type="submit"], .enviar, .boton {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(89, 190, 201, 0.3);
    cursor: pointer;
}

.btnclaro:hover, .btn-modern:hover, .btn-primary:hover, .btn-secondary:hover, 
button[type="submit"]:hover, .enviar:hover, .boton:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 69, 27, 0.4);
    color: white;
    text-decoration: none;
}

/* Botón alternativo - estilo outline */
.btn-modern-outline, .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-modern-outline:hover, .btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 69, 27, 0.3);
    text-decoration: none;
}

/* Efecto hover-lift para todos los botones */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
}

/* Botones en formularios */
.form-control + .btnclaro,
.form-control + .btn-modern,
.form-control + .btn-primary {
    margin-top: 1rem;
}

/* Botones en cards */
.card-modern .btnclaro,
.card-modern .btn-modern,
.card-modern .btn-primary {
    margin-top: 1.5rem;
}

/* Responsive para botones */
@media (max-width: 768px) {
    .btnclaro, .btn-modern, .btn-primary, .btn-secondary, 
    button[type="submit"], .enviar, .boton,
    .btn-modern-outline, .btn-outline {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btnclaro, .btn-modern, .btn-primary, .btn-secondary, 
    button[type="submit"], .enviar, .boton,
    .btn-modern-outline, .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== SECCIONES MODERNAS ===== */
.section-modern {
    padding: 80px 0;
    position: relative;
}

.section-modern.light {
    background: var(--light-bg);
}

.section-modern.dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-modern.dark .section-title {
    color: var(--text-light);
}

/* ===== CARDS MODERNAS ===== */
.card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(89, 190, 201, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== LISTAS MODERNAS - VIÑETAS CONSISTENTES ===== */
.list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-modern li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 2rem;
}

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

.list-modern li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
}

/* Estilos para todas las listas del sitio - mantener consistencia */
ul:not(.navbar-nav):not(.dropdown-menu):not(.carousel-indicators) {
    list-style: none;
    padding-left: 0;
}

ul:not(.navbar-nav):not(.dropdown-menu):not(.carousel-indicators) li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

ul:not(.navbar-nav):not(.dropdown-menu):not(.carousel-indicators) li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: bold;
    width: 1.5rem;
    text-align: center;
}

/* Estilos específicos para listas en secciones de contenido */
.QS-Azul ul li,
.beneficios ul li {
    position: relative;
    padding-left: 2.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.7 !important;
    text-align: justify;
}

.QS-Azul ul li::before,
.beneficios ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    width: 2rem;
    text-align: center;
    line-height: 1;
}

/* ===== FOOTER MODERNO ===== */
.footer-modern {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== SCROLL SUAVE PARA ANCLAS ===== */
html {
    scroll-behavior: smooth;
}

/* Ajuste para navbar fijo */
section[id] {
    scroll-margin-top: 80px;
}

/* ===== MODAL DE CONTACTO ===== */
#contactModal .modal-dialog {
    max-width: 90vw;
    margin: 1rem auto;
}

#contactModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: none;
}

#contactModal .modal-header {
    background: var(--primary-dark);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

#contactModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

#contactModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#contactModal .btn-close:hover {
    opacity: 1;
}

#contactModal .modal-body {
    padding: 0;
    background: #f8f9fa;
}

#contactModal iframe {
    border-radius: 0 0 15px 15px;
    min-height: 600px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-modern {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-modern {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    /* Modal responsive */
    #contactModal .modal-dialog {
        max-width: 95vw;
        margin: 0.5rem auto;
    }
    
    #contactModal .modal-header {
        padding: 1rem;
    }
    
    #contactModal .modal-title {
        font-size: 1.2rem;
    }
    
    #contactModal iframe {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-modern,
    .btn-modern-outline {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

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

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

/* ===== CAROUSEL MODERNO ===== */
.bgcarouselintro {
    position: relative;
    overflow: hidden;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Estilos específicos para botones en carousel */
.carousel-caption .btnclaro {
    margin-top: 1rem;
}

/* Botones con clase btn-carousel también usan el estilo estándar */
.btn-carousel {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(89, 190, 201, 0.3);
    cursor: pointer;
}

.btn-carousel:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 69, 27, 0.4);
    color: white;
    text-decoration: none;
}

.obscuro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.vimeo-wrapper {
    width: 100%;
    height: 100vh;
    min-height: 500px;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 2;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
}

.carousel-indicators li::before {
    display: none;
}

.carousel-indicators li.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ===== SECCIÓN DE VALORES MEJORADA ===== */
.valores-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.valor-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.valor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 20px 20px 0 0;
}

.valor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.valor-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.valor-titulo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.valor-item:hover .valor-titulo::after {
    width: 60px;
}

.valor-descripcion {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Animaciones específicas para valores */
.valor-item:nth-child(1) {
    animation-delay: 0.1s;
}

.valor-item:nth-child(2) {
    animation-delay: 0.2s;
}

.valor-item:nth-child(3) {
    animation-delay: 0.3s;
}

.valor-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive para valores */
@media (max-width: 768px) {
    .valores-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .valor-item {
        padding: 1.5rem;
    }
    
    .valor-icon {
        font-size: 2.5rem;
    }
    
    .valor-titulo {
        font-size: 1.3rem;
    }
}

/* ===== ICONOS DE REDES SOCIALES MEJORADOS ===== */
.socialicons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.socialicons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.socialicons a::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;
}

.socialicons a:hover::before {
    left: 100%;
}

.socialicons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(89, 190, 201, 0.4);
}

.socialicons a i {
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
}

/* Efectos específicos para cada red social */
.socialicons a:nth-child(1):hover {
    background: #077CAB;
    box-shadow: 0 10px 25px rgba(7, 124, 171, 0.4);
}

.socialicons a:nth-child(2):hover {
    background: #EB451B;
    box-shadow: 0 10px 25px rgba(235, 69, 27, 0.4);
}

.socialicons a:nth-child(3):hover {
    background: #077CAB;
    box-shadow: 0 10px 25px rgba(7, 124, 171, 0.4);
}

/* Responsive para iconos sociales */
@media (max-width: 768px) {
    .socialicons {
        gap: 1rem;
        justify-content: center;
    }
    
    .socialicons a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .socialicons {
        gap: 0.8rem;
    }
    
    .socialicons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ===== FORMULARIO DE CONTACTO ===== */
#contact {
    background: var(--dark-bg);
    color: var(--text-light);
}

#contact .section-title {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

#contact .form-group {
    margin-bottom: 1.5rem;
}

#contact label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

#contact .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#contact .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(89, 190, 201, 0.25);
    color: var(--text-light);
}

#contact .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#contact textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#contact .btn-modern {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive para formulario */
@media (max-width: 768px) {
    #contact .form-control {
        padding: 10px 14px;
    }
    
    #contact .btn-modern {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ===== SECCIÓN DE ESTADÍSTICAS VISUALES ===== */
.stats-container {
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(89, 190, 201, 0.3);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(89, 190, 201, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.stat-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.8;
}

/* Animación de contador */
.stat-number[data-count] {
    animation: countUp 2s ease-out forwards;
}

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

/* Efectos de partículas para las tarjetas */
.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 190, 201, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.stat-card:hover::after {
    opacity: 1;
}

/* Responsive para estadísticas */
@media (max-width: 768px) {
    .stats-container {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-symbol {
        font-size: 2rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-symbol {
        font-size: 1.8rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
}

/* ===== SECCIÓN DE RESULTADOS VISUALES ===== */
.results-container {
    margin: 3rem 0;
    padding: 2rem 0;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(89, 190, 201, 0.3);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-card::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.8s ease;
}

.result-card:hover::before {
    left: 100%;
}

.result-card:hover {
    transform: translateY(-20px) scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(89, 190, 201, 0.4);
}

.result-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.result-card:hover .result-icon {
    transform: scale(1.3) rotate(15deg);
    color: var(--secondary-color);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.result-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.result-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.result-highlight {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(89, 190, 201, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover .result-highlight {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(89, 190, 201, 0.5);
}

/* Efectos de partículas para las tarjetas de resultados */
.result-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 190, 201, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.result-card:hover::after {
    opacity: 1;
}

/* Animación de entrada para las tarjetas */
.result-card {
    animation: slideInUp 0.8s ease-out forwards;
}

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

/* Responsive para resultados */
@media (max-width: 768px) {
    .results-container {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .result-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .result-title {
        font-size: 1.3rem;
    }
    
    .result-description {
        font-size: 0.9rem;
    }
    
    .result-highlight {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .result-card {
        padding: 1.5rem 1rem;
    }
    
    .result-icon {
        font-size: 3rem;
    }
    
    .result-title {
        font-size: 1.1rem;
    }
    
    .result-description {
        font-size: 0.85rem;
    }
    
    .result-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== SECCIÓN DE BENEFICIOS VISUALES ===== */
.benefits-container {
    margin: 3rem 0;
    padding: 2rem 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(89, 190, 201, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card-wide {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(89, 190, 201, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.benefit-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(89, 190, 201, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-badge {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(89, 190, 201, 0.4);
}

/* Efectos de partículas para las tarjetas de beneficios */
.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 190, 201, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Animación de entrada para las tarjetas de beneficios */
.benefit-card {
    animation: slideInLeft 0.8s ease-out forwards;
}

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

/* Responsive para beneficios */
@media (max-width: 768px) {
    .benefits-container {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-card-wide {
        flex-direction: column;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
    
    .benefit-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 1.2rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
    
    .benefit-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* ===== SECCIÓN DE DIFERENCIADORES VISUALES ===== */
.differentiators-container {
    margin: 3rem 0;
    padding: 2rem 0;
}

.differentiator-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(89, 190, 201, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(9, 131, 178, 0.1), transparent);
    transition: left 0.6s ease;
}

.differentiator-card:hover::before {
    left: 100%;
}

.differentiator-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(89, 190, 201, 0.2);
}

.differentiator-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.differentiator-card:hover .differentiator-icon {
    transform: scale(1.15) rotate(8deg);
    color: var(--secondary-color);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.differentiator-content {
    flex: 1;
}

.differentiator-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.differentiator-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.differentiator-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(89, 190, 201, 0.3);
    transition: all 0.3s ease;
}

.differentiator-card:hover .differentiator-tag {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(89, 190, 201, 0.4);
}

/* Efectos de partículas para las tarjetas de diferenciadores */
.differentiator-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 190, 201, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.differentiator-card:hover::after {
    opacity: 1;
}

/* Animación de entrada para las tarjetas de diferenciadores */
.differentiator-card {
    animation: slideInUp 0.8s ease-out forwards;
}

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

/* Responsive para diferenciadores */
@media (max-width: 768px) {
    .differentiators-container {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .differentiator-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .differentiator-icon {
        font-size: 2.2rem;
        margin-top: 0;
    }
    
    .differentiator-title {
        font-size: 1.2rem;
    }
    
    .differentiator-description {
        font-size: 0.9rem;
    }
    
    .differentiator-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .differentiator-card {
        padding: 1.2rem;
    }
    
    .differentiator-icon {
        font-size: 2rem;
    }
    
    .differentiator-title {
        font-size: 1.1rem;
    }
    
    .differentiator-description {
        font-size: 0.85rem;
    }
    
    .differentiator-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* ===== SECCIÓN DE VALORES VISUALES ===== */
.values-container {
    margin: 3rem 0;
    padding: 2rem 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(89, 190, 201, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    /* cursor: pointer; */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(9, 131, 178, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(89, 190, 201, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(8deg);
    color: var(--secondary-color);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.value-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.value-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(89, 190, 201, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(89, 190, 201, 0.4);
}

/* Efectos de partículas para las tarjetas de valores */
.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 190, 201, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.value-card:hover::after {
    opacity: 1;
}

/* Animación de entrada para las tarjetas de valores */
.value-card {
    animation: slideInUp 0.8s ease-out forwards;
}

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

/* Responsive para valores */
@media (max-width: 768px) {
    .values-container {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .value-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-icon {
        font-size: 2.2rem;
        margin-top: 0;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    .value-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 1.2rem;
    }
    
    .value-icon {
        font-size: 2rem;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-description {
        font-size: 0.85rem;
    }
    
    .value-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* ===== UTILIDADES ===== */
.text-gradient {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-modern {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.border-modern {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.bg-gradient {
    background: var(--primary-color);
}

.bg-gradient-light {
    background: #f8f9fa;
}
