/* ========================================
   RESET Y CONFIGURACIÓN BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

.top-bar .container {
    padding-left: 0px;
    padding-right: 0px;
}

/* ========================================
   TOP BAR - LIQUID GLASS STYLE
   ======================================== */
.top-bar {
    background: transparent;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
}

.top-bar-left {
    position: absolute;
    left: 0px;
    flex-shrink: 0;
}

.top-bar-right {
    position: absolute;
    right: 24px;
    flex-shrink: 0;
}

@media (min-width: 969px) {
    .top-bar-right {
        display: none !important;
    }
    
    .top-bar-center {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }
}

/* ========================================
   LOGO CONTAINER - RESPONSIVE
   ======================================== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
    
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Logo cuando hay scroll - OCULTAR TEXTO */
.top-bar.scrolled .logo-text {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, width 0.3s ease;
}

.logo-text {
    transition: opacity 0.3s ease, visibility 0.3s ease, width 0.3s ease;
}

.top-bar.scrolled .logo-name {
    color: #2b3064;
    text-shadow: none;
}

.top-bar.scrolled .logo-subtitle {
    color: #25335c;
    text-shadow: none;
}

/* Responsive del logo */
@media (max-width: 968px) {
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-name {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .logo-container {
        gap: 8px;
    }
}

.top-bar-center {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Menú desktop - visible solo en pantallas grandes */
.desktop-menu {
    display: flex;
}

/* Menú móvil - oculto por defecto */
.mobile-menu {
    display: none;
}

.menu-toggle {
    display: none;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
}

@media (max-width: 968px) {
    .menu-close {
        display: flex;
    }
}

.top-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(27, 27, 27, 0.404);
    padding: 8px 12px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.top-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.top-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.151);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top-nav a:hover {
    color: white;
    transform: translateY(-2px);
}

.top-nav a:hover::before {
    opacity: 1;
}

.top-nav a:active {
    transform: translateY(0);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.65) 0%, rgba(20, 20, 20, 0.50) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: left;
    padding-left: 30px;
    padding-right: 400px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero .container {
        padding-left: 64px;
        padding-right: 64px;
    }
}

.hero-content {
    max-width: 700px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
    text-align: left;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: left;
    flex-wrap: wrap;
}

.btn-glass-light {
    display: inline-block;
    height: 52px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
}

.btn-glass-light::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glass-light:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-glass-light:hover::before {
    opacity: 1;
}

/* ========================================
   NOSOTROS SECTION (antes Servicios/Valores)
   ======================================== */
.nosotros {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.nosotros h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    color: #2F5D50;
    position: relative;
    padding-bottom: 24px;
}

.nosotros h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7A8F85 0%, #2F5D50 100%);
    border-radius: 2px;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nosotros-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.nosotros-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.nosotros-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    stroke: #7A8F85;
    margin-bottom: 20px;
}

.nosotros-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2F5D50;
}

.nosotros-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5F738C;
}

/* ========================================
   ESTADÍSTICAS SECTION - LIQUID GLASS UNIFICADO
   ======================================== */
.estadisticas {
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Capa Liquid Glass unificada que ocupa todo */
.estadisticas::before {
    display: none;
}

/* Pattern de burbujas animadas */
.estadisticas::after {
    display: none;
}

@keyframes float-bg {
    0%, 100% { 
        transform: translateY(0) translateX(0);
    }
    50% { 
        transform: translateY(-10px) translateX(10px);
    }
}

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

/* Contenedor glass unificado - barra compacta */
.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}

/* Brillo superior del contenedor glass - ELIMINADO */
.estadisticas-grid::before {
    display: none;
}

/* Sombra inferior del contenedor glass - ELIMINADO */
.estadisticas-grid::after {
    display: none;
}

.stat-card {
    text-align: center;
    padding: 12px 16px;
    position: relative;
    transition: all 0.3s ease;
}

/* Separador sutil entre cards (excepto el último) */
.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.stat-icon {
    display: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.08);
}

.stat-label-intro {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}


/* Animación flotante para los iconos */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Delay para cada icono */
.stat-card:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.3s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 0.6s;
}

.stat-card:nth-child(4) .stat-icon {
    animation-delay: 0.9s;
}

/* ========================================
   RESPONSIVE - ESTADÍSTICAS
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 36px 0;
    }
    
    .stat-card {
        padding: 28px 16px;
    }
    
    /* Separadores para layout 2x2 */
    .stat-card:nth-child(odd)::after {
        display: block;
    }
    
    .stat-card:nth-child(even)::after {
        display: none;
    }
    
    /* Separador horizontal entre filas */
    .stat-card:nth-child(1)::before,
    .stat-card:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%
        );
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .estadisticas {
        padding: 40px 0;
    }
    
    .estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 0;
        border-radius: 20px;
    }
    
    .stat-card {
        padding: 24px 12px;
    }
    
    /* Separadores para móvil 2x2 */
    .stat-card:nth-child(odd)::after {
        display: block;
    }
    
    .stat-card:nth-child(even)::after {
        display: none;
    }
    
    .stat-card:nth-child(1)::before,
    .stat-card:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%
        );
    }
    
    .stat-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .estadisticas {
        padding: 36px 0;
    }
    
    .estadisticas-grid {
        grid-template-columns: 1fr;
        padding: 24px 0;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    /* En móvil vertical, separadores horizontales entre todos */
    .stat-card::after {
        display: none;
    }
    
    .stat-card:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%
        );
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* ========================================
   SERVICIOS SECTION (NUEVA)
   ======================================== */
.servicios {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.servicios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    color: #2F5D50;
    position: relative;
    padding-bottom: 24px;
}

.servicios h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7A8F85 0%, #2F5D50 100%);
    border-radius: 2px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.servicio-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 93, 80, 0.08);
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(47, 93, 80, 0.15);
}

.servicio-icon {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    stroke: #7A8F85;
    margin-bottom: 24px;
}

.servicio-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2F5D50;
}

.servicio-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5F738C;
}
/* ========================================
   VINCÚLATE SECTION
   ======================================== */
.vincularte {
    position: relative;
    padding: 60px 0;
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.vincularte-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.15) 0%, rgba(122, 143, 133, 0.10) 100%);
    z-index: 1;
}

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

.vincularte-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vincularte-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.vincularte-content p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE - VINCÚLATE
   ======================================== */
@media (max-width: 768px) {
    .vincularte {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .vincularte-content h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }
    
    .vincularte-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .vincularte {
        padding: 40px 0;
    }
    
    .vincularte-content h2 {
        font-size: 26px;
    }
    
    .vincularte-content p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .vincularte-content .btn-glass-light {
        width: 100%;
        max-width: 280px;
    }
}







/* ========================================
   INSTALACIONES SECTION
   ======================================== */
.instalaciones {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.instalaciones-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.instalaciones-image {
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
}

.instalaciones-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instalaciones-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 24px;
    color: #2F5D50;
}

.instalaciones-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #5F738C;
    margin-bottom: 16px;
}

/* ========================================
   GALERÍA SECTION
   ======================================== */
.galeria {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.galeria h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    color: #2F5D50;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.galeria-item {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 200ms ease;
}

.galeria-item:hover {
    transform: scale(1.03);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   TESTIMONIOS SECTION
   ======================================== */
.testimonios {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.testimonios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    color: #2F5D50;
}

.testimonios-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    background: #F7F8F6;
    border-radius: 16px;
    padding: 40px;
}

.testimonio-card:hover {
    background: #FFFFFF;
    border-color: rgba(47, 93, 80, 0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonio-foto {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #7A8F85;
}

.testimonio-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2F5D50;
}

.testimonio-info p {
    font-size: 14px;
    color: #7A8F85;
}

.testimonio-text {
    font-size: 16px;
    line-height: 1.6;
    color: #5F738C;
}

/* ========================================
   CONTACTO SECTION
   ======================================== */
.contacto {
    background-color: #E6E1D8;
    padding: 120px 0;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contacto-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 24px;
    color: #2F5D50;
}

.contacto-info > p {
    font-size: 16px;
    line-height: 1.7;
    color: #5F738C;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon {
    width: 24px;
    height: 24px;
    stroke: #7A8F85;
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    color: #5F738C;
    line-height: 1.6;
}

.contacto-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contacto-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2F5D50;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F5D50;
    box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contacto-form .btn-glass-light {
    width: 100%;
    margin-top: 8px;
    background: rgba(47, 93, 80, 0.9);
    border-color: #2F5D50;
}

.contacto-form .btn-glass-light:hover {
    background: #2F5D50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 93, 80, 0.25);
}

/* ========================================
   UBICACIÓN SECTION (antes Mapa)
   ======================================== */
.ubicacion {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.ubicacion h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #2F5D50;
}

.ubicacion-descripcion {
    text-align: center;
    font-size: 18px;
    color: #5F738C;
    margin-bottom: 48px;
}

.ubicacion-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #5F738C 0%, #4a5d73 100%);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer p, .footer a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }
    
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: calc(100% - 48px);
        max-width: 400px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 32px 24px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 10000;
        margin: 0;
        pointer-events: none;
        flex-direction: column;
    }

    .mobile-menu.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .top-bar-content {
        height: 70px;
        padding: 0 20px;
        justify-content: space-between;
    }
    
    .top-bar-left {
        flex-shrink: 0;
    }
    
    .top-bar-right {
        position: absolute;
        right: 0;
    }

    .top-bar-center {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.9);
        width: calc(100% - 48px);
        max-width: 400px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 32px 24px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 1000;
        margin: 0 !important;
        pointer-events: none;
        max-height: 90vh;
        overflow-y: auto;
    }

    .top-bar-center.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .top-bar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    .top-bar.scrolled .menu-toggle {
        background: rgba(47, 93, 80, 0.1);
        border-color: rgba(47, 93, 80, 0.2);
    }

    .top-bar.scrolled .menu-toggle span {
        background: #2F5D50;
    }

    .top-bar.scrolled .menu-toggle:hover {
        background: rgba(47, 93, 80, 0.15);
    }

    .top-bar.scrolled .top-nav {
        background: rgba(47, 93, 80, 0.95);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .top-bar.scrolled .top-nav a {
        color: white;
    }
    
    .top-nav {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
    }   
    
    .top-nav a {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        color: #2F5D50;
        border-radius: 14px;
        display: block;
        background: rgba(47, 93, 80, 0.05);
        border: 1px solid rgba(47, 93, 80, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .top-nav a::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        background: rgba(47, 93, 80, 0.08);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .top-nav a:hover::before,
    .top-nav a:active::before {
        left: 100%;
    }

    .top-nav a:hover,
    .top-nav a:active {
        background: rgba(47, 93, 80, 0.12);
        border-color: rgba(47, 93, 80, 0.25);
        transform: translateY(-2px);
        color: #1a3a2f;
    }

    .top-nav a:hover::before,
    .top-nav a:active::before {
        opacity: 1;
    }

    .menu-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1001;
    }

    .menu-close:hover,
    .menu-close:active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: rotate(90deg) scale(1.1);
    }

    .menu-close svg {
        pointer-events: none;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease, backdrop-filter 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        pointer-events: auto;
    }
    
    .top-bar .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: rgba(47, 93, 80, 0.1);
        border: 1px solid rgba(47, 93, 80, 0.2);
        border-radius: 10px;
        padding: 12px 10px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Hero Mobile */
    .hero {
        min-height: 85vh;
        background-attachment: scroll;
        padding: 100px 0 60px;
    } 

    .hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 1.15;
        text-align: left;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 18px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 28px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .btn-glass-light,
    .btn-glass-dark {
        width: 100%;
        max-width: 280px;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    /* Secciones Mobile */
    .nosotros {
        padding: 96px 0 64px;
    }

    .nosotros h2, .servicios h2, .instalaciones-text h2, 
    .galeria h2, .testimonios h2, .contacto-info h2, .ubicacion h2 {
        font-size: 32px;
    }

    /* Nosotros Mobile */
    .nosotros-grid {
        grid-template-columns: 1fr;
    }

    /* Servicios Mobile */
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    /* Instalaciones Mobile */
    .instalaciones-content {
        grid-template-columns: 1fr;
    }

    /* Galería Mobile */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Testimonios Mobile */
    .testimonios-wrapper {
        grid-template-columns: 1fr;
    }

    /* Contacto Mobile */
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Ubicación Mobile */
    .ubicacion h2 {
        font-size: 32px;
    }
    
    .ubicacion-container iframe {
        height: 350px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 40px;
    }
    
    .hero .container {
        padding-right: 320px;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nosotros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.nosotros,
.servicios,
.instalaciones,
.galeria,
.testimonios,
.contacto,
.ubicacion {
    animation: fadeInUp 0.8s ease-out;
}

/* Animación escalonada de los links */
.top-nav a {
    animation: slideInRight 0.5s ease-out backwards;
}

.top-nav a:nth-child(1) { animation-delay: 0.1s; }
.top-nav a:nth-child(2) { animation-delay: 0.2s; }
.top-nav a:nth-child(3) { animation-delay: 0.3s; }
.top-nav a:nth-child(4) { animation-delay: 0.4s; }
.top-nav a:nth-child(5) { animation-delay: 0.5s; }
.top-nav a:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ========================================
   CSS ADICIONAL PÁGINA NOSOTROS
   Agregado: [TU FECHA]
   ======================================== */

/* ========================================
   HERO NOSOTROS
   ======================================== */
.hero-nosotros {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.65) 0%, rgba(20, 20, 20, 0.50) 100%),
                url('../recursos/nosotros-hero.png');
    background-size: cover;
    background-position: center 0%; /* Abuelita más abajo */
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 140px 0 290px;
    position: relative;
    margin-top: 0;
}

/* Ajustar en tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-nosotros {
        background-position: center 30%;
    }
}

/* Ajustar en móvil */
@media (max-width: 768px) {
    .hero-nosotros {
        background-position: center 25%; /* Más arriba en móvil */
        background-attachment: scroll;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .hero-nosotros {
        background-position: center 20%;
    }
}

.hero-nosotros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(47, 93, 80, 0.2) 50%, transparent 100%);
}

.hero-nosotros-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.15) 0%, rgba(122, 143, 133, 0.10) 100%);
    z-index: 1;
}

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

.hero-nosotros-content {
    text-align: left;
    max-width: 800px;
    margin: 0; /* Eliminar auto para alinear a la izquierda */
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Cambiar de left a flex-start */
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2F5D50;
}

.breadcrumb span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb span:not(:last-child) {
    color: rgba(255, 255, 255, 0.7); /* Mejorar contraste */
}

.hero-nosotros-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    text-align: left;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7A8F85 0%, #a8a7a7 100%);
    margin: 0 0 24px 0; /* Eliminar auto, mantener solo izquierda */
    border-radius: 2px;
}

.hero-nosotros-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0; /* Eliminar auto para alinear a la izquierda */
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: left;
}

/* ========================================
   HISTORIA SECTION
   ======================================== */
.historia-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    margin-top: 0px;
}

.historia-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.historia-text {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(47, 93, 80, 0.1);
    color: #2F5D50;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.historia-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #2F5D50;
    margin-bottom: 24px;
    text-align: center;
}

.historia-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5F738C;
    margin-bottom: 64px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.historia-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0;
}

.historia-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #7A8F85 0%, rgba(122, 143, 133, 0.3) 100%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2F5D50;
    background: #FFFFFF;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #7A8F85;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(122, 143, 133, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(122, 143, 133, 0.3);
    border-color: #2F5D50;
    background: rgba(47, 93, 80, 0.05);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #7A8F85;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-4px);
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #5F738C;
}

.historia-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 0px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: #000;
}

.image-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* ========================================
   PROPÓSITO - GLASS EFFECT CON VIDA ✨
   ======================================== */
.proposito-section {
    background: 
        linear-gradient(135deg, rgba(20, 20, 20, 0.50) 0%, rgba(30, 30, 30, 0.45) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.section-badge-light-nosotros {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: 450px;
    border: 1px solid rgba(255, 255, 255, 0.3);

}



/* Overlay más oscuro para contraste */
.proposito-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.25) 0%, rgba(122, 143, 133, 0.20) 100%);
    z-index: 1;
}

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

.proposito-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.proposito-card {
    /* FONDO MÁS OSCURO = MÁS CONTRASTE */
    background: rgba(119, 121, 133, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    padding: 32px 28px;
    /* BORDE MÁS VISIBLE Y BRILLANTE */
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* SOMBRA MÁS DRAMÁTICA */
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Brillo superior más notorio */
.proposito-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 28px 28px 0 0;
    pointer-events: none;
}

/* Pattern de puntos brillantes */
.proposito-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}


.proposito-icon {
    width: 80px;
    height: 80px;
    /* FONDO MÁS CLARO PARA EL ÍCONO */
    background: rgb a(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    /* BORDE BRILLANTE */
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.proposito-card:hover .proposito-icon {
    transform: scale(1.15) rotate(-8deg);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.proposito-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.proposito-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    /* TEXTO BLANCO PURO Y BRILLANTE */
    color: #FFFFFF;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.proposito-card p {
    font-size: 17px;
    line-height: 1.9;
    /* TEXTO BLANCO CON LIGERA TRANSPARENCIA */
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Animación de entrada */
@keyframes glassFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.proposito-card {
    animation: glassFloat 6s ease-in-out infinite;
}

.proposito-card:nth-child(1) {
    animation-delay: 0s;
}

.proposito-card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Responsive - Carrusel con indicadores */
@media (max-width: 768px) {
    .proposito-section {
        padding: 60px 0 80px 0; /* Más espacio abajo para los puntos */
        background-attachment: scroll;
        overflow: hidden;
    }
    
    .proposito-section .container {
        padding: 0;
        max-width: 100%;
        overflow: visible;
    }
    
    /* Contenedor con scroll horizontal */
    .proposito-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 24px 20px;
        scroll-behavior: smooth;
        margin-bottom: 32px; /* Espacio para los indicadores */
    }
    
    /* Cada tarjeta ocupa 85% */
    .proposito-card {
        min-width: 85vw;
        max-width: 85vw;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 40px 32px;
    }
    
    .proposito-card h3 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .proposito-card p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Ocultar scrollbar */
    .proposito-grid::-webkit-scrollbar {
        display: none;
    }
    
    .proposito-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* ========================================
       INDICADORES (PUNTOS)
       ======================================== */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    }
}

/* Desktop - Ocultar indicadores */
@media (min-width: 769px) {
    .carousel-indicators {
        display: none;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .proposito-card {
        min-width: 88vw;
        max-width: 88vw;
        padding: 36px 28px;
    }
    
    .proposito-card h3 {
        font-size: 24px;
    }
    
    .proposito-card p {
        font-size: 15px;
    }
}
/* ========================================
   VALORES SECTION
   ======================================== */
.valores-section {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #2F5D50;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: #5F738C;
    line-height: 1.6;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.valor-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 93, 80, 0.08);
}

.valor-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(47, 93, 80, 0.15);
}

.valor-icon {
    width: 48px;
    height: 48px;
    background: rgba(122, 143, 133, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.valor-card:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(122, 143, 133, 0.25);
}

.valor-icon svg {
    width: 24px;
    height: 24px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.valor-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.valor-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5F738C;
}

/* ========================================
   EQUIPO SECTION
   ======================================== */
.equipo-section {
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.equipo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.15) 0%, rgba(122, 143, 133, 0.10) 100%);
    z-index: 1;
}

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

.section-header-light {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-header-light h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-header-light p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.equipo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.equipo-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.equipo-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.equipo-card:hover .equipo-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.equipo-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 1.5;
}

.equipo-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.equipo-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   COMPROMISO SECTION
   ======================================== */
.compromiso-section {
    background-color: #F7F8F6;
    padding: 100px 0;
}

.compromiso-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compromiso-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(122, 143, 133, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all 0.3s ease;
}

.compromiso-icon-large:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(122, 143, 133, 0.25);
    animation: pulse 0.6s ease-in-out;
}

.compromiso-icon-large svg {
    width: 40px;
    height: 40px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.compromiso-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #2F5D50;
    margin-bottom: 24px;
}

.compromiso-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5F738C;
}

/* ========================================
   CERTIFICACIONES SECTION
   ======================================== */
.certificaciones-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.certificaciones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cert-card {
    background: #F7F8F6;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 93, 80, 0.05);
}

.cert-card:hover {
    background: #FFFFFF;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(47, 93, 80, 0.1);
}

.cert-icon {
    width: 56px;
    height: 56px;
    background: rgba(122, 143, 133, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(122, 143, 133, 0.25);
}

.cert-icon svg {
    width: 28px;
    height: 28px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.cert-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5F738C;
}

/* ========================================
   CTA NOSOTROS
   ======================================== */
.cta-nosotros {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.2) 0%, rgba(122, 143, 133, 0.15) 100%);
    z-index: 1;
}

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

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.proposito-card,
.compromiso-content,
.valor-card,
.equipo-card,
.cert-card {
    animation: fadeInScale 0.6s ease-out backwards;
}

.proposito-card:nth-child(1) { animation-delay: 0.1s; }
.proposito-card:nth-child(2) { animation-delay: 0.2s; }

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.15s; }
.valor-card:nth-child(3) { animation-delay: 0.2s; }
.valor-card:nth-child(4) { animation-delay: 0.25s; }
.valor-card:nth-child(5) { animation-delay: 0.3s; }
.valor-card:nth-child(6) { animation-delay: 0.35s; }

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

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.15s; }
.cert-card:nth-child(3) { animation-delay: 0.2s; }
.cert-card:nth-child(4) { animation-delay: 0.25s; }

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {

    
    .historia-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 48px;
    }
    
    .historia-timeline::before {
        display: none;
    }
    
    .timeline-year {
        width: 90px;
        height: 90px;
        font-size: 19px;
    }
    
    .proposito-section {
        padding: 80px 0;
    }
    
    .proposito-grid {
        gap: 32px;
    }
    
    .proposito-card {
        padding: 40px 32px;
    }
    
    .proposito-card h3 {
        font-size: 24px;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compromiso-section {
        padding: 80px 0;
    }
    
    .compromiso-content h2 {
        font-size: 36px;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 768px) {
/* ========================================
   RESPONSIVE - HERO NOSOTROS
   ======================================== */

/* TABLET (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-nosotros {
        padding: 130px 0 200px;
    }
    
    .hero-nosotros-content {
        max-width: 700px;
    }
    
    .hero-nosotros-content h1 {
        font-size: 48px;
        letter-spacing: 1px;
    }
    
    .hero-nosotros-content p {
        font-size: 17px;
        max-width: 550px;
    }
}

/* MÓVIL (max-width: 768px) */
@media (max-width: 768px) {
    .hero-nosotros {
        padding: 110px 0 120px;
        background-attachment: scroll; /* Mejor rendimiento en móvil */
    }
    
    .hero-nosotros-content {
        max-width: 100%;
        padding: 0 20px; /* Añadir padding lateral */
    }
    
    .breadcrumb {
        margin-bottom: 24px;
        font-size: 13px;
        gap: 8px;
    }
    
    .hero-nosotros-content h1 {
        font-size: 40px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero-divider {
        width: 60px;
        height: 2px;
        margin: 0 0 20px 0;
    }
    
    .hero-nosotros-content p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 100%;
    }
}

/* MÓVIL PEQUEÑO (max-width: 480px) */
@media (max-width: 480px) {
    .hero-nosotros {
        padding: 100px 0 100px;
    }
    
    .hero-nosotros-content {
        padding: 0 16px; /* Padding más compacto */
    }
    
    .breadcrumb {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .hero-nosotros-content h1 {
        font-size: 32px;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
        line-height: 1.15;
    }
    
    .hero-divider {
        width: 50px;
        height: 2px;
        margin: 0 0 16px 0;
    }
    
    .hero-nosotros-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* MÓVIL MUY PEQUEÑO (max-width: 360px) */
@media (max-width: 360px) {
    .hero-nosotros {
        padding: 90px 0 80px;
    }
    
    .hero-nosotros-content {
        padding: 0 12px;
    }
    
    .hero-nosotros-content h1 {
        font-size: 28px;
    }
    
    .hero-nosotros-content p {
        font-size: 14px;
    }
}
    
    .historia-section {
        padding: 80px 0;
    }
    
    .historia-text h2 {
        font-size: 32px;
        text-align: left;
    }
    
    .historia-intro {
        font-size: 16px;
        margin-bottom: 48px;
        text-align: left;
    }
    
    .historia-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .historia-timeline::before {
        display: block;
        top: 35px;
        bottom: 35px;
        left: 35px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, #7A8F85 0%, rgba(122, 143, 133, 0.3) 100%);
    }
    
    .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 17px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .timeline-content {
        flex: 1;
        padding-top: 8px;
    }
    
    .proposito-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .proposito-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .proposito-card {
        padding: 36px 28px;
    }
    
    .proposito-card h3 {
        font-size: 22px;
    }
    
    .proposito-card p {
        font-size: 15px;
    }
    
    .valores-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .equipo-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .section-header-light h2 {
        font-size: 32px;
    }
    
    .equipo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .compromiso-section {
        padding: 60px 0;
    }
    
    .compromiso-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .compromiso-content h2 {
        font-size: 28px;
    }
    
    .compromiso-content p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .certificaciones-section {
        padding: 80px 0;
    }
    
    .certificaciones-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-nosotros {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-nosotros {
        padding: 100px 0 50px;
    }
    
    .hero-nosotros-content h1 {
        font-size: 32px;
    }
    
    .hero-nosotros-content p {
        font-size: 15px;
    }
    
    .hero-divider {
        width: 60px;
        height: 2px;
    }
    
    .breadcrumb {
        font-size: 13px;
        gap: 8px;
    }
    
    .historia-text h2 {
        font-size: 28px;
    }
    
    .historia-intro {
        font-size: 15px;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .proposito-card {
        padding: 28px 24px;
    }
    
    .proposito-card h3 {
        font-size: 20px;
    }
    
    .section-header h2,
    .section-header-light h2 {
        font-size: 28px;
    }
    
    .compromiso-content h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */
.proposito-card:focus-within,
.valor-card:focus-within,
.equipo-card:focus-within,
.cert-card:focus-within {
    outline: 3px solid rgba(47, 93, 80, 0.5);
    outline-offset: 4px;
}

.hero-nosotros-content h1,
.proposito-card h3,
.compromiso-content h2 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* ========================================
   CSS ADICIONAL PÁGINA SERVICIOS
   Agregar al final de style.css
   ======================================== */

/* ========================================
   HERO SERVICIOS
   ======================================== */
.hero-servicios {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.55) 0%, rgba(20, 20, 20, 0.40) 100%),
                url('../recursos/servicios-hero.png');
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 140px 0 300px;
    position: relative;
    margin-top: 0;
}

.hero-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(47, 93, 80, 0.2) 50%, transparent 100%);
}

.hero-servicios-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.12) 0%, rgba(122, 143, 133, 0.08) 100%);
    z-index: 1;
}

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

.hero-servicios-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.hero-servicios-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    text-align: left;
}

.hero-servicios-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.98);
    max-width: 600px;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    text-align: left;
}

/* ========================================
   SERVICIOS DETALLE SECTION
   ======================================== */
.servicios-detalle-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2F5D50;
    margin-bottom: 16px;
}

.section-intro p {
    font-size: 18px;
    color: #5F738C;
    line-height: 1.7;
}

/* Servicio Individual Detallado */
.servicio-detalle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(47, 93, 80, 0.1);
}

.servicio-detalle:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.servicio-detalle.reverse {
    direction: rtl;
}

.servicio-detalle.reverse > * {
    direction: ltr;
}

.servicio-detalle-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.servicio-detalle-icon {
    width: 64px;
    height: 64px;
    background: rgba(122, 143, 133, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.servicio-detalle:hover .servicio-detalle-icon {
    background: rgba(122, 143, 133, 0.2);
    transform: scale(1.05) rotate(5deg);
}

.servicio-detalle-icon svg {
    width: 32px;
    height: 32px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.servicio-detalle-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2F5D50;
    margin-bottom: 16px;
}

.servicio-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #5F738C;
    margin-bottom: 24px;
}

.servicio-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.servicio-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #5F738C;
    line-height: 1.6;
}

.servicio-features li svg {
    width: 20px;
    height: 20px;
    stroke: #7A8F85;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Placeholder de Imagen en Servicios */
.servicio-detalle-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F7F8F6 0%, #E6E1D8 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed rgba(47, 93, 80, 0.2);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: rgba(47, 93, 80, 0.4);
    background: linear-gradient(135deg, #E6E1D8 0%, #F7F8F6 100%);
}

.image-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: #7A8F85;
    stroke-width: 1.5;
    opacity: 0.6;
}

.image-placeholder span {
    font-size: 14px;
    color: #7A8F85;
    font-weight: 500;
}

/* NUEVO: Estilos para imágenes reales en servicios */
.servicio-detalle-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: contain; /* Muestra la imagen completa sin recortar */
    object-position: center;
    display: block;
    border-radius: 16px;
    background: #FFFFFF; /* Fondo blanco para espacios vacíos */
}

/* Si prefieres que la imagen cubra todo el espacio (puede recortar) */
.servicio-detalle-image img.cover {
    object-fit: cover;
}

/* Posiciones específicas si necesitas ajustar */
.servicio-detalle-image img.pos-top {
    object-position: top center;
}

.servicio-detalle-image img.pos-bottom {
    object-position: bottom center;
}

/* ========================================
   PROCESO DE ADMISIÓN - GLASS EFFECT
   ======================================== */
.proceso-section {
    background: 
        linear-gradient(135deg, rgba(20, 20, 20, 0.50) 0%, rgba(30, 30, 30, 0.45) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.proceso-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.25) 0%, rgba(122, 143, 133, 0.20) 100%);
    z-index: 1;
}

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

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.proceso-step {
    text-align: center;
    position: relative;
}

/* Línea conectora entre pasos */
.proceso-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -16px;
    width: calc(100% - 96px);
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(100%);
    z-index: 0;
}

.paso-numero {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.proceso-step:hover .paso-numero {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.paso-numero span {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.paso-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.paso-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   BENEFICIOS SECTION
   ======================================== */
.beneficios-section {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.beneficio-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 93, 80, 0.08);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(47, 93, 80, 0.15);
}

.beneficio-icon {
    width: 56px;
    height: 56px;
    background: rgba(122, 143, 133, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    background: rgba(122, 143, 133, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.beneficio-icon svg {
    width: 28px;
    height: 28px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.beneficio-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.beneficio-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5F738C;
}

/* ========================================
   PREGUNTAS FRECUENTES
   ======================================== */
.faq-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.faq-container {
    max-width: 900px;
    margin: 64px auto 0;
}

.faq-item {
    background: #F7F8F6;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #2F5D50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #7A8F85;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: #7A8F85;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #5F738C;
    margin: 0;
}

/* ========================================
   CTA SERVICIOS
   ======================================== */
.cta-servicios {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-servicios .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-servicios .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-servicios .cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glass-light-outline {
    display: inline-block;
    height: 52px;
    padding: 0 32px;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
}

.btn-glass-light-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE - TABLET (769px - 1024px)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-servicios {
        padding: 130px 0 80px;
    }
    
    .hero-servicios-content h1 {
        font-size: 48px;
    }
    
    .hero-servicios-content p {
        font-size: 17px;
    }
    
    .servicio-detalle {
        gap: 48px;
        margin-bottom: 80px;
        padding-bottom: 80px;
    }
    
    .servicio-detalle-text h3 {
        font-size: 28px;
    }
    
    .servicio-detalle-image {
        min-height: 350px;
    }
    
    .proceso-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .proceso-step:nth-child(3)::after,
    .proceso-step:nth-child(4)::after {
        display: none;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE - MÓVIL (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .hero-servicios {
        padding: 110px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-servicios-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-servicios-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .hero-servicios-content p {
        font-size: 16px;
    }
    
    .servicios-detalle-section {
        padding: 80px 0;
    }
    
    .section-intro {
        margin-bottom: 60px;
    }
    
    .section-intro h2 {
        font-size: 32px;
    }
    
    .section-intro p {
        font-size: 16px;
    }
    
    .servicio-detalle {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    
    .servicio-detalle.reverse {
        direction: ltr;
    }
    
    .servicio-detalle-text h3 {
        font-size: 26px;
    }
    
    .servicio-lead {
        font-size: 16px;
    }
    
    .servicio-detalle-image {
        min-height: 300px;
        order: -1;
    }
    
    .proceso-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .proceso-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .proceso-step::after {
        display: none;
    }
    
    .beneficios-section {
        padding: 80px 0;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }
    
    .cta-servicios {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-servicios .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-servicios .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-glass-light,
    .cta-buttons .btn-glass-light-outline {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL PEQUEÑO (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-servicios {
        padding: 100px 0 50px;
    }
    
    .hero-servicios-content {
        padding: 0 16px;
    }
    
    .hero-servicios-content h1 {
        font-size: 32px;
    }
    
    .hero-servicios-content p {
        font-size: 15px;
    }
    
    .breadcrumb {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .servicio-detalle-text h3 {
        font-size: 24px;
    }
    
    .servicio-lead {
        font-size: 15px;
    }
    
    .servicio-features li {
        font-size: 14px;
    }
    
    .servicio-detalle-image {
        min-height: 250px;
    }
    
    .paso-content h3 {
        font-size: 16px;
    }
    
    .paso-content p {
        font-size: 13px;
    }
    
    .beneficio-card {
        padding: 32px 24px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .cta-servicios .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-servicios .cta-content p {
        font-size: 15px;
    }
}

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

.servicio-detalle,
.proceso-step,
.beneficio-card,
.faq-item {
    animation: slideInUp 0.6s ease-out backwards;
}

.servicio-detalle:nth-child(1) { animation-delay: 0.1s; }
.servicio-detalle:nth-child(2) { animation-delay: 0.15s; }
.servicio-detalle:nth-child(3) { animation-delay: 0.2s; }

.proceso-step:nth-child(1) { animation-delay: 0.1s; }
.proceso-step:nth-child(2) { animation-delay: 0.2s; }
.proceso-step:nth-child(3) { animation-delay: 0.3s; }
.proceso-step:nth-child(4) { animation-delay: 0.4s; }
.proceso-step:nth-child(5) { animation-delay: 0.5s; }

.beneficio-card:nth-child(1) { animation-delay: 0.1s; }
.beneficio-card:nth-child(2) { animation-delay: 0.15s; }
.beneficio-card:nth-child(3) { animation-delay: 0.2s; }
.beneficio-card:nth-child(4) { animation-delay: 0.25s; }
.beneficio-card:nth-child(5) { animation-delay: 0.3s; }
.beneficio-card:nth-child(6) { animation-delay: 0.35s; }

/* ========================================
   ACCESIBILIDAD
   ======================================== */
.servicio-detalle:focus-within,
.beneficio-card:focus-within,
.faq-item:focus-within {
    outline: 3px solid rgba(47, 93, 80, 0.5);
    outline-offset: 4px;
}

.faq-question:focus {
    outline: 2px solid rgba(47, 93, 80, 0.5);
    outline-offset: 2px;
}
/* ========================================
   CSS ADICIONAL PÁGINA INSTALACIONES
   Agregar al final de style.css
   ======================================== */

/* ========================================
   HERO INSTALACIONES
   ======================================== */
.hero-instalaciones {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.55) 0%, rgba(20, 20, 20, 0.40) 100%),
                url('../recursos/hero-instalaciones.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 140px 0 300px;
    position: relative;
    margin-top: 0;
}

.hero-instalaciones::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(47, 93, 80, 0.2) 50%, transparent 100%);
}

.hero-instalaciones-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.12) 0%, rgba(122, 143, 133, 0.08) 100%);
    z-index: 1;
}

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

.hero-instalaciones-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.hero-instalaciones-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    text-align: left;
}

.hero-instalaciones-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.98);
    max-width: 600px;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    text-align: left;
}

/* ========================================
   INTRODUCCIÓN INSTALACIONES
   ======================================== */
.instalaciones-intro-section {
    background-color: #FFFFFF;
    padding: 120px 0 80px;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.intro-text {
    max-width: 700px;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2F5D50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #5F738C;
    margin-top: 24px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #F7F8F6;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #7A8F85;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   CARRUSEL HORIZONTAL DE CARACTERÍSTICAS
   ======================================== */

.caracteristicas-section {
    background-color: #F7F8F6;
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #2F5D50;
    margin-bottom: 16px;
}

.section-intro p {
    font-size: 17px;
    color: #5F738C;
    line-height: 1.6;
}

/* Wrapper del carrusel */
.caracteristicas-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Contenedor del carrusel */
.caracteristicas-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 32px;
    padding: 20px 0 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.caracteristicas-carousel::-webkit-scrollbar {
    display: none;
}

/* Card horizontal */
.caracteristica-card-horizontal {
    min-width: 100%;
    scroll-snap-align: center;
    display: flex;
    gap: 32px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(47, 93, 80, 0.08);
    transition: all 0.3s ease;
}

.caracteristica-card-horizontal:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(47, 93, 80, 0.15);
}

/* Imagen a la izquierda */
.caracteristica-horizontal-image {
    width: 400px;
    min-width: 400px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #F7F8F6;
}
.caracteristica-horizontal-image img.pos-top {
    width: 600px;
    height: 500px;
    object-fit: cover;
}
/* Imagen real */
.caracteristica-horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder cuando NO hay imagen */
.caracteristica-horizontal-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E6E1D8 0%, #F7F8F6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed rgba(47, 93, 80, 0.2);
}

.caracteristica-horizontal-image .image-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: #7A8F85;
    stroke-width: 1.5;
    opacity: 0.6;
}

.caracteristica-horizontal-image .image-placeholder span {
    font-size: 14px;
    color: #7A8F85;
    font-weight: 500;
}

/* Contenido a la derecha */
.caracteristica-horizontal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.caracteristica-icon {
    width: 56px;
    height: 56px;
    background: rgba(122, 143, 133, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.caracteristica-card-horizontal:hover .caracteristica-icon {
    background: rgba(122, 143, 133, 0.2);
    transform: scale(1.05) rotate(3deg);
}

.caracteristica-icon svg {
    width: 28px;
    height: 28px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.caracteristica-horizontal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.caracteristica-horizontal-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: #5F738C;
    margin-bottom: 20px;
}

.caracteristica-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.caracteristica-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #5F738C;
    padding-left: 8px;
}

.caracteristica-features li::before {
    content: '✓';
    color: #7A8F85;
    font-weight: 600;
    font-size: 16px;
}

/* Botones de navegación */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 2px solid #E6E1D8;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.carousel-nav-btn:hover {
    background: #2F5D50;
    border-color: #2F5D50;
    box-shadow: 0 6px 20px rgba(47, 93, 80, 0.2);
}

.carousel-nav-btn:hover svg {
    stroke: white;
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav-btn:disabled:hover {
    background: #FFFFFF;
    border-color: #E6E1D8;
}

.carousel-nav-btn:disabled:hover svg {
    stroke: currentColor;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav-btn svg {
    stroke: #2F5D50;
    transition: stroke 0.3s ease;
}

/* Indicadores (puntos) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E6E1D8;
    border: 2px solid #E6E1D8;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: #7A8F85;
    border-color: #7A8F85;
    transform: scale(1.2);
}

.indicator.active {
    width: 32px;
    border-radius: 6px;
    background: #2F5D50;
    border-color: #2F5D50;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .caracteristicas-carousel-wrapper {
        padding: 0 50px;
    }
    
    .caracteristica-card-horizontal {
        flex-direction: column;
        padding: 28px;
    }
    
    .caracteristica-horizontal-image {
        width: 100%;
        height: 320px;
        min-width: auto;
    }
    
    .carousel-nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 768px) {
    .caracteristicas-section {
        padding: 80px 0;
    }
    
    .section-intro {
        margin-bottom: 48px;
    }
    
    .section-intro h2 {
        font-size: 32px;
    }
    
    .caracteristicas-carousel-wrapper {
        padding: 0 50px;
    }
    
    .caracteristica-card-horizontal {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    
    .caracteristica-horizontal-image {
        width: 100%;
        height: 280px;
        min-width: auto;
    }
    
    .caracteristica-horizontal-content h3 {
        font-size: 20px;
    }
    
    .caracteristica-horizontal-content > p {
        font-size: 14px;
    }
    
    .caracteristica-features li {
        font-size: 13px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .caracteristicas-carousel-wrapper {
        padding: 0 40px;
    }
    
    .caracteristica-card-horizontal {
        padding: 20px;
    }
    
    .caracteristica-horizontal-image {
        height: 240px;
    }
    
    .caracteristica-horizontal-content h3 {
        font-size: 18px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
}

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

.caracteristica-card-horizontal {
    animation: slideInFromRight 0.4s ease-out;
}

/* ========================================
   RECORRIDO VIRTUAL - GLASS EFFECT
   ======================================== */
.recorrido-section {
    background: 
        linear-gradient(135deg, rgba(20, 20, 20, 0.50) 0%, rgba(30, 30, 30, 0.45) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.recorrido-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.25) 0%, rgba(122, 143, 133, 0.20) 100%);
    z-index: 1;
}

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

.recorrido-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recorrido-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.recorrido-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.recorrido-video {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.video-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: white;
    stroke-width: 1.5;
}

.video-placeholder span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.recorrido-cta {
    margin-top: 48px;
}

.recorrido-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* ========================================
   GALERÍA INSTALACIONES
   ======================================== */
.galeria-instalaciones-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.galeria-instalaciones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galeria-instalaciones-item {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.galeria-instalaciones-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Items grandes ocupan 2 columnas */
.galeria-item-large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.galeria-instalaciones-item .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E6E1D8 0%, #F7F8F6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.galeria-instalaciones-item .image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: #7A8F85;
    stroke-width: 1.5;
    opacity: 0.6;
}

.galeria-instalaciones-item .image-placeholder span {
    font-size: 13px;
    color: #7A8F85;
    font-weight: 500;
}

/* ========================================
   SEGURIDAD Y ACCESIBILIDAD
   ======================================== */
.seguridad-section {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.seguridad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.seguridad-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(47, 93, 80, 0.08);
}

.seguridad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(47, 93, 80, 0.15);
}

.seguridad-icon {
    width: 64px;
    height: 64px;
    background: rgba(122, 143, 133, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.seguridad-card:hover .seguridad-icon {
    background: rgba(122, 143, 133, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.seguridad-icon svg {
    width: 32px;
    height: 32px;
    stroke: #7A8F85;
    stroke-width: 1.5;
}

.seguridad-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.seguridad-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5F738C;
}

/* ========================================
   CTA INSTALACIONES
   ======================================== */
.cta-instalaciones {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-instalaciones .cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-instalaciones .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-instalaciones .cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE - TABLET (769px - 1024px)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-instalaciones {
        padding: 130px 0 80px;
    }
    
    .hero-instalaciones-content h1 {
        font-size: 48px;
    }
    
    .hero-instalaciones-content p {
        font-size: 17px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .caracteristicas-grid {
        gap: 32px;
    }
    
    .galeria-instalaciones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .seguridad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE - MÓVIL (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .hero-instalaciones {
        padding: 110px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-instalaciones-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-instalaciones-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .hero-instalaciones-content p {
        font-size: 16px;
    }
    
    .instalaciones-intro-section {
        padding: 80px 0 60px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text h2 {
        font-size: 32px;
    }
    
    .intro-lead {
        font-size: 16px;
    }
    
    .intro-stats {
        flex-direction: row;
        gap: 16px;
    }
    
    .stat-item {
        flex: 1;
        padding: 20px 16px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .caracteristicas-section {
        padding: 80px 0;
    }
    
    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .caracteristica-image {
        height: 240px;
    }
    
    .recorrido-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .recorrido-content h2 {
        font-size: 32px;
    }
    
    .recorrido-content > p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .galeria-instalaciones-section {
        padding: 80px 0;
    }
    
    .galeria-instalaciones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .galeria-item-large {
        grid-column: span 2;
    }
    
    .seguridad-section {
        padding: 80px 0;
    }
    
    .seguridad-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-instalaciones {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-instalaciones .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-instalaciones .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-glass-light,
    .cta-buttons .btn-glass-light-outline {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL PEQUEÑO (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-instalaciones {
        padding: 100px 0 50px;
    }
    
    .hero-instalaciones-content {
        padding: 0 16px;
    }
    
    .hero-instalaciones-content h1 {
        font-size: 32px;
    }
    
    .hero-instalaciones-content p {
        font-size: 15px;
    }
    
    .breadcrumb {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .intro-text h2 {
        font-size: 28px;
    }
    
    .intro-lead {
        font-size: 15px;
    }
    
    .intro-stats {
        flex-direction: column;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .caracteristica-content {
        padding: 24px;
    }
    
    .caracteristica-content h3 {
        font-size: 20px;
    }
    
    .caracteristica-features li {
        font-size: 13px;
    }
    
    .recorrido-content h2 {
        font-size: 28px;
    }
    
    .galeria-instalaciones-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-item-large {
        grid-column: span 1;
        aspect-ratio: 1/1;
    }
    
    .seguridad-card {
        padding: 32px 24px;
    }
    
    .cta-instalaciones .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-instalaciones .cta-content p {
        font-size: 15px;
    }
}

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

.caracteristica-card,
.seguridad-card {
    animation: slideInUp 0.6s ease-out backwards;
}

.caracteristica-card:nth-child(1) { animation-delay: 0.1s; }
.caracteristica-card:nth-child(2) { animation-delay: 0.15s; }
.caracteristica-card:nth-child(3) { animation-delay: 0.2s; }
.caracteristica-card:nth-child(4) { animation-delay: 0.25s; }
.caracteristica-card:nth-child(5) { animation-delay: 0.3s; }
.caracteristica-card:nth-child(6) { animation-delay: 0.35s; }

.seguridad-card:nth-child(1) { animation-delay: 0.1s; }
.seguridad-card:nth-child(2) { animation-delay: 0.15s; }
.seguridad-card:nth-child(3) { animation-delay: 0.2s; }
.seguridad-card:nth-child(4) { animation-delay: 0.25s; }
.seguridad-card:nth-child(5) { animation-delay: 0.3s; }
.seguridad-card:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.galeria-instalaciones-item {
    animation: fadeIn 0.8s ease-out backwards;
}

.galeria-instalaciones-item:nth-child(1) { animation-delay: 0.1s; }
.galeria-instalaciones-item:nth-child(2) { animation-delay: 0.15s; }
.galeria-instalaciones-item:nth-child(3) { animation-delay: 0.2s; }
.galeria-instalaciones-item:nth-child(4) { animation-delay: 0.25s; }
.galeria-instalaciones-item:nth-child(5) { animation-delay: 0.3s; }
.galeria-instalaciones-item:nth-child(6) { animation-delay: 0.35s; }
.galeria-instalaciones-item:nth-child(7) { animation-delay: 0.4s; }
.galeria-instalaciones-item:nth-child(8) { animation-delay: 0.45s; }

/* ========================================
   ACCESIBILIDAD
   ======================================== */
.caracteristica-card:focus-within,
.seguridad-card:focus-within {
    outline: 3px solid rgba(47, 93, 80, 0.5);
    outline-offset: 4px;
}

.hero-instalaciones-content h1,
.intro-text h2,
.recorrido-content h2 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* ========================================
   LIGHTBOX GALERÍA INSTALACIONES
   Agregar al final del archivo CSS principal
   ======================================== */

.lightbox-instalaciones {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-instalaciones.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Botón cerrar */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close svg {
    stroke: white;
    pointer-events: none;
}

/* Botones navegación */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    stroke: white;
    pointer-events: none;
}

/* Contador */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10001;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
    
    .lightbox-close svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .lightbox-image-container {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        padding: 80px 10px 60px;
    }
    
    .lightbox-image-container img {
        border-radius: 8px;
    }
}
/* ========================================
   CSS PÁGINA DONACIONES
   Agregar al final de style.css
   ======================================== */

/* ========================================
   HERO DONACIONES
   ======================================== */
.hero-donaciones {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.65) 0%, rgba(20, 20, 20, 0.50) 100%),
                url('../recursos/hero-donaciones.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* CAMBIO 1: scroll en lugar de fixed */
    background-repeat: no-repeat;
    padding: 140px 0 240px;
    position: relative;
    margin-top: 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-donaciones-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.15) 0%, rgba(122, 143, 133, 0.10) 100%);
    z-index: 1;
}

.hero-donaciones .container {
    position: relative;
    z-index: 2;
    padding-left: 0px; /* CAMBIO 2: Alineación con el logo */
    padding-right: 420px;
}

.hero-donaciones-content {
    text-align: left;
    max-width: 700px;
    padding-left: 30px; /* CAMBIO 3: Mismo padding que el logo-container */
}

.hero-donaciones-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-donaciones-content p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.98);
    max-width: 600px;
    margin: 0 0 32px 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-donaciones-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Botón con animación de pulso */
.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 
                    0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
                    0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* RESPONSIVE HERO DONACIONES */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-donaciones .container {
        padding-left: 64px;
        padding-right: 64px;
    }
    
    .hero-donaciones-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-donaciones {
        padding: 110px 0 60px;
        min-height: auto;
        background-position: center 25%; /* Ajustar posición en móvil */
    }
    
    .hero-donaciones .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-donaciones-content {
        padding-left: 0;
        max-width: 100%;
    }
    
    .hero-donaciones-content h1 {
        font-size: 36px;
    }
    
    .hero-donaciones-content p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-donaciones {
        padding: 100px 0 50px;
    }
    
    .hero-donaciones-content h1 {
        font-size: 32px;
    }
    
    .hero-donaciones-content p {
        font-size: 16px;
    }
    
    .hero-donaciones-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-donaciones-buttons .btn-glass-light,
    .hero-donaciones-buttons .btn-glass-light-outline {
        width: 100%;
    }
}

/* ========================================
   IMPACTO SECTION
   ======================================== */
.impacto-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.impacto-card {
    background: #F7F8F6;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.impacto-card:hover {
    background: #FFFFFF;
    border-color: #7A8F85;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(47, 93, 80, 0.15);
}

.impacto-icon {
    width: 64px;
    height: 64px;
    background: rgba(122, 143, 133, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.impacto-card:hover .impacto-icon {
    background: rgba(47, 93, 80, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.impacto-icon svg {
    width: 32px;
    height: 32px;
    stroke: #2F5D50;
    stroke-width: 1.5;
}

.impacto-amount {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.impacto-card:hover .impacto-amount {
    color: #7A8F85;
}

.impacto-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.impacto-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5F738C;
}

/* ========================================
   SELECTOR DE DONACIÓN - GLASS EFFECT
   ======================================== */
.donacion-selector-section {
    background: 
        linear-gradient(135deg, rgba(20, 20, 20, 0.50) 0%, rgba(30, 30, 30, 0.45) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.donacion-selector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.25) 0%, rgba(122, 143, 133, 0.20) 100%);
    z-index: 1;
}

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

.donacion-selector-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.donacion-selector-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.donacion-selector-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Grid de montos */
.montos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.monto-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.monto-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7A8F85, #2F5D50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.monto-btn:hover::before,
.monto-btn.active::before {
    transform: scaleX(1);
}

.monto-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.monto-btn.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.monto-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.monto-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.monto-destacado {
    position: relative;
    background: rgba(122, 143, 133, 0.25);
    border-color: rgba(122, 143, 133, 0.5);
}

.monto-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #7A8F85;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input monto personalizado */
.monto-custom-input {
    margin-bottom: 40px;
}

.monto-custom-input label {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 20px;
    font-weight: 600;
}

#montoPersonalizado {
    width: 100%;
    padding: 16px 20px 16px 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 18px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

#montoPersonalizado::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#montoPersonalizado:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Tipo de donación */
.donacion-tipo {
    margin-bottom: 40px;
}

.tipo-label {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 500;
}

.tipo-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tipo-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
}

.tipo-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.tipo-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.tipo-btn.active {
    background: rgba(122, 143, 133, 0.4);
    border-color: #7A8F85;
}

/* Resumen de donación */
.donacion-resumen {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 48px;
}

.resumen-info {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.resumen-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 12px;
}

.resumen-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.resumen-tipo {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-style: italic;
}

/* Métodos de pago */
.metodos-pago {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-pago {
    padding: 20px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
}

.btn-pago svg {
    width: 24px;
    height: 24px;
}

.btn-pago-principal {
    background: white;
    color: #2F5D50;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-pago-principal:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-pago-secundario {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-pago-secundario:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.donacion-nota {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ========================================
   MODAL DATOS BANCARIOS
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #F7F8F6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #2F5D50;
    transform: rotate(90deg);
}

.modal-close:hover svg {
    stroke: white;
}

.modal-header {
    padding: 48px 40px 32px;
    text-align: center;
    border-bottom: 1px solid #E6E1D8;
}

.modal-icon {
    width: 64px;
    height: 64px;
    stroke: #2F5D50;
    margin: 0 auto 20px;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2F5D50;
    margin-bottom: 12px;
}

.modal-header p {
    font-size: 15px;
    color: #5F738C;
}

.datos-bancarios-content {
    padding: 32px 40px;
}

.dato-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #F7F8F6;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.dato-item:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dato-label {
    font-size: 13px;
    color: #7A8F85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.dato-value {
    font-size: 16px;
    color: #2F5D50;
    font-weight: 600;
}

.btn-copy {
    background: transparent;
    border: 1px solid #E6E1D8;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: #2F5D50;
    border-color: #2F5D50;
}

.btn-copy:hover svg {
    stroke: white;
}

.btn-copy svg {
    stroke: #7A8F85;
    transition: stroke 0.3s ease;
}

.modal-footer {
    padding: 24px 40px 40px;
    background: #F7F8F6;
    border-radius: 0 0 24px 24px;
}

.nota-importante {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nota-importante svg {
    width: 24px;
    height: 24px;
    stroke: #7A8F85;
    flex-shrink: 0;
    margin-top: 2px;
}

.nota-importante p {
    font-size: 14px;
    color: #5F738C;
    line-height: 1.7;
}

/* ========================================
   TRANSPARENCIA SECTION
   ======================================== */
.transparencia-section {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.transparencia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.transparencia-chart {
    display: flex;
    justify-content: center;
}

.chart-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #2F5D50;
}

.chart-sublabel {
    display: block;
    font-size: 14px;
    color: #7A8F85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.transparencia-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.transparencia-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-color {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 4px;
}

.transparencia-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 8px;
}

.transparencia-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5F738C;
}

/* ========================================
   TESTIMONIOS DONADORES
   ======================================== */
.testimonios-donadores-section {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.testimonios-donadores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.testimonio-donador-card {
    background: #F7F8F6;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonio-donador-card:hover {
    background: #FFFFFF;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-8px);
}

.testimonio-quote {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.testimonio-quote svg {
    width: 100%;
    height: 100%;
    fill: rgba(122, 143, 133, 0.3);
}

.testimonio-text {
    font-size: 15px;
    line-height: 1.8;
    color: #5F738C;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.autor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A8F85, #2F5D50);
    flex-shrink: 0;
}

.autor-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 4px;
}

.autor-info span {
    font-size: 13px;
    color: #7A8F85;
}

/* ========================================
   OTRAS FORMAS DE AYUDAR
   ======================================== */
.otras-formas-section {
    background-color: #F7F8F6;
    padding: 120px 0;
}

.otras-formas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.forma-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.forma-card:hover {
    border-color: #7A8F85;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    transform: translateY(-8px);
}

.forma-icon {
    width: 56px;
    height: 56px;
    background: rgba(122, 143, 133, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.forma-card:hover .forma-icon {
    background: rgba(47, 93, 80, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.forma-icon svg {
    width: 28px;
    height: 28px;
    stroke: #2F5D50;
    stroke-width: 1.5;
}

.forma-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2F5D50;
    margin-bottom: 12px;
}

.forma-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5F738C;
    margin-bottom: 20px;
}

.forma-link {
    font-size: 14px;
    font-weight: 600;
    color: #7A8F85;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forma-card:hover .forma-link {
    color: #2F5D50;
}

/* ========================================
   CTA DONACIONES
   ======================================== */
.cta-donaciones {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.40) 0%, rgba(20, 20, 20, 0.35) 100%),
        url('../recursos/estadisticas-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-donaciones .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-donaciones .cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-donaciones-content h1 {
        font-size: 48px;
    }
    
    .impacto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .montos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transparencia-content {
        gap: 60px;
    }
    
    .testimonios-donadores-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .otras-formas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 768px) {
    .hero-donaciones {
        padding: 100px 0 60px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero-donaciones-content {
        padding: 0 20px;
    }
    
    .hero-donaciones-content h1 {
        font-size: 36px;
    }
    
    .hero-donaciones-content p {
        font-size: 17px;
    }
    
    .impacto-section {
        padding: 80px 0;
    }
    
    .impacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .donacion-selector-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .montos-grid {
        grid-template-columns: 1fr;
    }
    
    .tipo-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tipo-btn {
        width: 100%;
    }
    
    .donacion-resumen {
        padding: 32px 24px;
    }
    
    .resumen-amount {
        font-size: 40px;
    }
    
    .modal-content {
        margin: 0 16px;
    }
    
    .modal-header,
    .datos-bancarios-content,
    .modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .transparencia-section {
        padding: 80px 0;
    }
    
    .transparencia-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .chart-container {
        width: 250px;
        height: 250px;
    }
    
    .testimonios-donadores-section {
        padding: 80px 0;
    }
    
    .testimonios-donadores-grid {
        grid-template-columns: 1fr;
    }
    
    .otras-formas-section {
        padding: 80px 0;
    }
    
    .otras-formas-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-donaciones {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-donaciones .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-donaciones-content h1 {
        font-size: 32px;
    }
    
    .hero-donaciones-content p {
        font-size: 16px;
    }
    
    .hero-donaciones-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-donaciones-buttons .btn-glass-light,
    .hero-donaciones-buttons .btn-glass-light-outline {
        width: 100%;
    }
    
    .impacto-amount {
        font-size: 32px;
    }
    
    .monto-value {
        font-size: 28px;
    }
    
    .donacion-resumen {
        padding: 24px 20px;
    }
    
    .chart-container {
        width: 200px;
        height: 200px;
    }
    
    .chart-label {
        font-size: 40px;
    }
}

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

.impacto-card,
.testimonio-donador-card,
.forma-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.impacto-card:nth-child(1) { animation-delay: 0.1s; }
.impacto-card:nth-child(2) { animation-delay: 0.2s; }
.impacto-card:nth-child(3) { animation-delay: 0.3s; }
.impacto-card:nth-child(4) { animation-delay: 0.4s; }
/* ========================================
   FIX: CTA BUTTONS CLICKEABLES
   ======================================== */

/* Asegurar que el overlay no bloquee los clicks */
.cta-overlay {
    pointer-events: none;
}

/* Asegurar que el contenido y botones sean clickeables */
.cta-content {
    position: relative;
    z-index: 10;
}

.cta-buttons {
    position: relative;
    z-index: 20;
}

.cta-buttons a,
.cta-buttons .btn-glass-light,
.cta-buttons .btn-glass-light-outline {
    pointer-events: auto;
    cursor: pointer;
}

/* Lo mismo para la sección de donaciones */
.cta-donaciones .cta-overlay,
.cta-nosotros .cta-overlay,
.cta-servicios .cta-overlay,
.cta-instalaciones .cta-overlay {
    pointer-events: none;
}

.cta-donaciones .cta-content,
.cta-nosotros .cta-content,
.cta-servicios .cta-content,
.cta-instalaciones .cta-content {
    position: relative;
    z-index: 10;
}

.cta-donaciones .cta-buttons,
.cta-nosotros .cta-buttons,
.cta-servicios .cta-buttons,
.cta-instalaciones .cta-buttons {
    position: relative;
    z-index: 20;
}