/* ============================================
   VARIABLES CSS - Definiciones globales
   ============================================ */
:root {
    /* Paleta de colores */
    --venezuela-blue: #101A5B;
    --venezuela-red: #cf1414;
    --blue-hover: #162672;
    --red-hover: #F94B4B;
    --blue-dark: #101A5B;
   
    
    --white: #FFFFFF;
    --gray-dark: #2D3748;
    --gray-medium: #e9eff3;
    --gray-light: #F7FAFC;
    --color-text: #333333;
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* ============================================
   RESET Y ESTILOS BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ============================================
   CONTENEDORES Y ESTRUCTURA BASE
   ============================================ */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-content {
    padding-top: 80px;
}

main.site-main section:nth-of-type(odd) {
  background-color: var(--gray-light);
}


main.site-main section:nth-of-type(even) {
  
  background-color: var(--gray-medium);

}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Transición suave */
}

.navbar {
    display: flex;
    height: auto;
    align-items: center;
    background: transparent;
    transition: all var(--transition-normal);
    padding: .5rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enlaces del Menú */
.navbar-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.navbar-logo img {
    transition: max-height 0.4s ease; /* Animación del tamaño */
}

/* Fondo y Sombra */
.site-header.is-scrolled .navbar {
    background: var(--venezuela-blue); /* Tu color corporativo */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Reducción del Logo */
.site-header.is-scrolled .navbar-logo img {
    width: 70%;
    height: auto;
}

.navbar-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    transition: background var(--transition-normal);
}

.navbar-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Botón Hamburguesa */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.navbar-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* Animación Hamburguesa a X */
.navbar-toggle.active .bar:nth-child(1) { 
    transform: translateY(8px) rotate(45deg); 
}

.navbar-toggle.active .bar:nth-child(2) { 
    opacity: 0; 
}

.navbar-toggle.active .bar:nth-child(3) { 
    transform: translateY(-8px) rotate(-45deg); 
}

/* Responsivo */
@media (max-width: 880px) {
    .navbar-toggle { 
        display: flex; 
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        background: rgba(16, 26, 91, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px var(--spacing-lg) var(--spacing-lg);
        box-shadow: var(--shadow-heavy);
        transition: right var(--transition-normal);
        overflow-y: auto;
        z-index: 1000;
    }

    .navbar-menu.active { 
        right: 0; 
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

/* ============================================
   SECCIONES
   ============================================ */
.site-main section {
    padding: 6rem 0;
}

.site-main .tax-info-section {
    padding-top: 0;
}

/* ============================================
   HERO SECTION - CORREGIDO SIN NESTING
   ============================================ */
.hero-section {
    position: relative;
    height: 70rem;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(20, 74, 191, 0.6), rgba(29, 47, 135, 0.5)), url('../images/front-page-hero.webp') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 6rem 0;
    margin-top: -80px;
   
    &.hero-about-us {
        background: linear-gradient(rgba(2, 38, 117, 0.6), rgba(1, 28, 91, 0.5)), url('../images/hero-about-us.webp') no-repeat center center;
        background-size: cover;
    
    }

    &.hero-donate {
        background: linear-gradient(rgba(2, 38, 117, 0.6), rgba(1, 28, 91, 0.5)), url('../images/donate-hero.webp') no-repeat center center;
        background-size: cover;
    
    }

    &.hero-inversiones {
        background: linear-gradient(rgba(2, 38, 117, 0.6), rgba(1, 28, 91, 0.5)), url('../images/inversiones.webp') no-repeat center center;
        background-size: cover;
    
    }

    &.hero-contact {
        background: linear-gradient(rgba(2, 38, 117, 0.6), rgba(1, 28, 91, 0.5)), url('../images/contacto.webp') no-repeat center center;
        background-size: cover;
    
    }

    &.hero-blog {
        background: linear-gradient(rgba(2, 38, 117, 0.6), rgba(1, 28, 91, 0.5)), url('../images/hero-eventos.webp') no-repeat center center;
        background-size: cover;
    
    }

    &.hero-alianza {
        background: linear-gradient(rgba(2, 38, 117, 0.6), rgba(1, 28, 91, 0.5)), url('../images/alianza.webp') no-repeat center center;
        background-size: cover;
    
    }
}

@media (min-width: 768px) { 
    .hero-section {
        height: 80rem;

    }
}

.hero-section.legales {
    height: 25rem;
}

@media (min-width: 768px) { 
    .hero-section.legales {
        height: 40rem;
    }
}

.hero-section.events {
    height: 35rem;
}

@media (min-width: 768px) { 
    .hero-section.events {
        height: 50rem;
    }
}

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

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

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.btn {
    padding: 1.2rem 2.4rem;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    min-width: 200px;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--venezuela-red);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--red-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--white);
    color: var(--venezuela-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* PROGRAMS CTA - CORREGIDO SIN NESTING */
.programs-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--blue-dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.programs-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(117, 121, 126, 0.3);
    gap: 16px;
    background: var(--blue-hover);
}

.programs-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.programs-cta:hover i {
    transform: translateX(5px);
}

/* ============================================
   SECCIONES GENERALES - Estilos reutilizables
   ============================================ */

/* Section Labels */
.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    position: relative;
    color: var(--venezuela-blue);
}

.section-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 8rem;
    height: 2px;
    background: currentColor;
}

.section-label.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Section Headings */
.section-heading {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    @media (min-width: 768px) { 
        font-size: 3.4rem;
    }
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 90rem;
    margin: 0 auto 4rem;
}

.section-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* Grid común para secciones */
.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}


/* Ajuste para las Stats para que no queden pegadas */
/* Contenedor principal de Stats */
.intro-stats {
    margin: 4rem 0;   
}

/* Grid con divisores elegantes */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    @media (min-width: 768px) { 
        grid-template-columns: repeat(3, 1fr);
    }
}

/* El Box: Minimalismo puro */
.stat-box {
    text-align: center;
    padding: 3rem;
    background-color: var(--gray-medium);
    border-radius: 1.5rem;
    
}


.intro-video-wrapper {
    max-width: 1000px; /* Un poco más estrecho para que no sea gigante en monitores grandes */
    width: 100%;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* El marco que da el toque profesional */
.video-frame-glass {
    background: var(--venezuela-blue);
    padding: .6rem; /* Este es el "padding" que rodea el video */
    border-radius: 24px; /* Bordes muy suaves */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Sombra elegante */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);

    &:hover {
        transform: scale(1.01) translateY(-10px);
        box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    }
}

/* Mantener proporción y aplicar el radius al video también */
.video-aspect-ratio iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: none;
    
    /* EL TRUCO: Centramos y escalamos lo suficiente para ocultar bordes */
    /* Usamos 1.15 para estar seguros de que no queden líneas negras */
    transform: translate(-50%, -50%) scale(1.02); 
    
    /* Mantenemos la proporción sin deformar */
    object-fit: cover; 
}

/* Contenedor del video (asegúrate de que tenga esto) */
.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden; /* ESTO ES VITAL: Corta lo que sobra del zoom */
    background: #000; /* Fondo negro por si hay delay en carga */
    border-radius: 16px;
}


/* El Número: La estrella del show */
.stat-number {
    font-size: 4rem; /* Grande pero refinado */
    font-weight: 600;
    line-height: 1;
    color: var(--venezuela-blue);
    margin-bottom: 1.5rem; 
    font-family: var(--font-primary);
}

/* El detalle original: una pequeña línea decorativa bajo el número */
.stat-number::after {
    content: "";
    display: block;
    width: 4rem;
    height: 0.3rem;
    background: currentColor; 
    margin: 1rem auto 0;
    transition: width 0.3s ease;
}

/* El Label: Sofisticación en el texto */
.stat-label {
    text-transform: uppercase;
    font-weight: 600;
}

/* Interacción: Trascendencia al pasar el mouse */
.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box:hover .stat-number::after {
    width: 60px; /* La línea crece suavemente */
}

.intro-cta {
    display: flex;
    justify-content: center;
}


/* Front CTA Sections - Enhanced Visual Impact */
.front-cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--gray-light);
}



.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.cta-1 {
    background: url('../images/donaciones.webp') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.cta-2 {
    background: url('../images/auditoria.webp') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    height: 400px;
    position: relative;
    overflow: hidden;
}


.cta-content .cta-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    position: relative;
    color: var(--venezuela-blue);
}

.cta-content .cta-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--venezuela-blue);
}

 .cta-content .cta-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-content .cta-title {
        font-size: 2.8rem;
    }
}

.cta-content .cta-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: inherit;
    opacity: 0.9;
}

.cta-content .cta-buttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* CTA Membership */
.cta-membership .membership-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.cta-membership .membership-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 36, 125, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 36, 125, 0.1);
    transition: all 0.3s ease;
}

.cta-membership .membership-highlights .highlight:hover {
    background: rgba(0, 36, 125, 0.1);
    transform: translateY(-3px);
}

.cta-membership .membership-highlights .highlight i {
    color: var(--venezuela-blue);
    font-size: 1.8rem;
}

.cta-membership .membership-highlights .highlight span {
    font-weight: 600;
    color: var(--venezuela-blue);
}

/* CTA Insights */
.cta-insights {
    background: linear-gradient(135deg, var(--venezuela-blue) 0%, #001f5a 100%);
    color: var(--white);
}

.cta-insights .cta-label {
    color: var(--red-hover);
}

.cta-insights .cta-title {
    color: var(--white);
}

.cta-insights .cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.cta-insights .insight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.cta-insights .insight-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-insights .insight-stats .stat .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red-hover);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-insights .insight-stats .stat .label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-content-wrapper, .donations-wrapper {
        text-align: center;
    }
    
    .cta-content .cta-buttons {
        justify-content: center;
    }
    
    .cta-content .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .cta-membership .membership-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-insights .insight-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
   
    
    .front-cta-section {
        padding: 6rem 0;
    }
    
    .cta-content .cta-title {
        font-size: 2.6rem;
    }
    
    .cta-content .cta-description {
        font-size: 1.6rem;
    }
}



.donations-wrapper {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 8rem;
    align-items: start;
    @media (min-width: 768px) { 
        grid-template-columns: 1.2fr 0.8fr;
    }
}


/* Lista de Impacto (Derecha) */
.donations-features-grid {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.features-heading {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: var(--blue-dark);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.feature-item:last-child { border: none; }

.feature-icon {
    color: var(--blue-hover);
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.sent-mail {
    color: var(--blue-dark);
    font-weight: 600;
    transition: all 0.6s ease;
    &:hover {
        color: var(--blue-hover);
        font-weight: 700;
    }
}

/* ============================================
   FOOTER
   ============================================ */
#colophon.site-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    @media (min-width: 768px) { 
        text-align: left;
    }
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.footer-column.brand-column .footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}



.footer-column.brand-column .footer-site-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-column.brand-column .footer-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.footer-column .contact-info {
    margin-bottom: 2rem;
}

.footer-column .contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    @media (min-width: 768px) { 
        justify-content: start;
    }
}

.footer-column .contact-item i {
    color: var(--red-hover);
    margin-right: 1rem;
    margin-top: 0.3rem;
    font-size: 1.6rem;
    min-width: 20px;
}

.footer-column .contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column .contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-column .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.footer-column .badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column .footer-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column .footer-title::after {
    content: '';  
    width: 40px;
    height: 3px;
    background-color: var(--red-hover);
    border-radius: 2px;
    display: block;
    margin: .5rem auto;
    @media (min-width: 768px) { 
        margin: .5rem 0;
    }
}

.footer-column .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.footer-column .footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-column .footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.4rem;
    display: inline-block;
    padding: 0.2rem 0;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer-column .footer-menu a:hover {
    color: var(--white);
    padding-left: 1rem;
}

.footer-column .footer-menu a::before {
    content: "›";
    position: absolute;
    left: -1rem;
    opacity: 0;
    color: var(--red-hover);
    transition: all 0.2s ease;
}

.footer-column .footer-menu a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-column .social-section {
    margin-bottom: 2.5rem;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-content .social-icon {
    background: var(--venezuela-blue);
    justify-content: center;
    margin-top: 2rem;
}

.contact-content .social-icon:hover {
    background: var(--blue-hover);
    color: var(--white);
}

 .social-icon:hover {
    background: var(--red-hover);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.footer-column .newsletter-signup {
    margin-top: 2rem;
}

.footer-column .newsletter-form {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
}

.footer-column .newsletter-form input {
    flex:0;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 4px 0 0 4px;
    font-size: 1.4rem;
    font-family: var(--font-secondary);
    @media (min-width: 768px) { 
        flex: 1;
    }
}

.footer-column .newsletter-form input:focus {
    outline: none;
    border-color: var(--red-hover);
    background: rgba(255, 255, 255, 0.12);
}

.footer-column .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-column .btn-newsletter {
    background: var(--red-hover);
    color: var(--blue-dark);
    border: none;
    padding: 0 1.8rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1.6rem;
    transition: background 0.2s ease;
}

.footer-column .btn-newsletter:hover {
    background: var(--venezuela-yellow);
}

.footer-bottom {
    padding: 2rem 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    @media (min-width: 768px) { 
        flex-direction: row;
        justify-content: space-between;
    }
   
}

.footer-bottom .copyright p {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .copyright a {
    color: var(--gray-medium);
    text-decoration: none;
    font-weight: 300;
}

.footer-bottom .copyright a:hover {
    color: var(--red-hover);
    text-decoration: underline;
}

/* ============================================
   MEDIA QUERIES REORGANIZADAS
   ============================================ */

/* Tablet y desktop para grids */
@media (min-width: 768px) {
    .hero-btn-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 2rem;
    }
    
    .btn {
        padding: 1.5rem 3rem;
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-bottom .copyright {
        margin-bottom: 0;
        flex: 1;
    }
    
    .footer-bottom .footer-partners {
        margin-top: 0;
        text-align: right;
    }
    
    .footer-bottom .partner-logos {
        justify-content: flex-end;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

@media (min-width: 992px) {
  
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.8rem;
    }
}

@media (min-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Móvil específico */
@media (max-width: 880px) {
   
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.6rem;
    }
    
    .hero-btn-container .btn {
        min-width: 180px;
        padding: 1rem 2rem;
    }
    
    .navbar {
        background: rgba(0, 36, 125, 0.9);
    }
    
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        gap: 3rem;
    }
    
    .footer-column.brand-column .footer-site-title {
        font-size: 2rem;
    }
    
    .footer-column.brand-column .footer-tagline {
        font-size: 1.3rem;
    }
    
    .footer-column .social-icons {
        justify-content: center;
    }
    
    .footer-column .newsletter-form input {
        padding: 1rem;
    }

    
}

@media (max-width: 767px) {
    .mission-image-card,
    .visual-container {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        gap: 3rem;
    }
    
    .values-section .section-heading {
        font-size: 3rem;
    }
    
    .value-title {
        font-size: 2.2rem;
    }
    
    .value-icon i {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .hero-btn-container {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 1.6rem;
    }
    
    .stats-card,
    .image-overlay {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .footer-column .contact-item {
        font-size: 1.3rem;
    }
    
    .footer-column .footer-menu a {
        font-size: 1.3rem;
    }
    
    .footer-column .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-column .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
    

    .values-section .section-heading {
        font-size: 2.6rem;
    }
    
    .value-card {
        padding: 3rem 2rem;
    }
    
    .value-title {
        font-size: 2rem;
    }
    
    .value-description {
        font-size: 1.5rem;
    }
}

/* ============================================
   TEAM SECTION - Elegant Themes Style
   ============================================ */

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Team Member Card */
.team-member {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 36, 125, 0.1);
}

/* Member Info */
.member-info {
    padding: 2rem;
    background-color: var(--blue-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.member-name {
    font-family: var(--font-primary);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.member-position {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
    color: var(--red-hover);
    margin-bottom: 0.8rem;
    text-align: center;
}

.member-bio {
    text-align: center;
}

.member-photo {
    background-color: var(--white);
    display: flex;
    justify-content: center;
}



/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: center;
        
        @media (min-width: 778px) {
            grid-template-columns: 1fr 1.2fr;
            gap: 8rem;
        }

        .section-contacto {
            .section-label {
                color: var(--venezuela-blue);
                font-size: 13px;
                text-transform: uppercase;
                margin-bottom: 15px;
                font-weight: 600;
                
            }
            
            .section-heading {
            
                font-size: 35px;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 40px;
                
                @media (max-width: 768px) {
                    font-size: 32px;
                }
            }
            
            .contact-details {
                .contact-item {
                    display: flex;
                    gap: 20px;
                    margin-bottom: 30px;
                    padding-bottom: 30px;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                    
                    &:last-child {
                        border-bottom: none;
                    }
                    
                    .contact-icon {
                        width: 50px;
                        height: 50px;
                        background: var(--gray-light);
                        border-radius: 10px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: var(--blue-hover);
                        font-size: 20px;
                        flex-shrink: 0;
                    }
                    
                    .contact-content {
                        .contact-title {
                            color: var(--venezuela-yellow);
                            font-size: 18px;
                            font-weight: 600;
                            margin-bottom: 8px;
                        }
                        
                        .contact-text {
                            color: var(--dark-text);
                            line-height: 1.6;
                            margin-bottom: 5px;
                        }
                        
                       
                        
                        .schedule-link {
                            color: var(--venezuela-yellow);
                            text-decoration: none;
                            font-weight: 600;
                            font-size: 15px;
                            display: inline-block;
                            margin-top: 8px;
                            
                            &:hover {
                                text-decoration: underline;
                            }
                        }
                    }
                }
            }
        
           
        }
            
           
        
        
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            
            .form-header {
                margin-bottom: 1.5rem;
                
                .section-label {
                    color: var(--venezuela-red);
                    font-size: 13px;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    
                }
                
                .form-title {
                    color: var(--venezuela-blue);
                    font-size: 28px;
                    font-weight: 700;
                    
                }
                
                .form-description {
                    color: var(--gray-dark);
                    line-height: 1.6;
                }
            }
            
            /* Estilos para Contact Form 7 */
            .wpcf7-form {
                .wpcf7-form-control-wrap {
                    margin-bottom: 1rem;
                    display: block;
                }

                p {
                    margin: 0;
                    line-height: 1;
                }
                
                label {
                    display: block;
                    color: var(--venezuela-blue);
                    font-weight: 600;
                    font-size: 14px;
                }

                textarea {
                    resize: none;
                }
                
                input[type="text"],
                input[type="email"],
                input[type="tel"],
                input[type="url"],
                textarea,
                select {
                    width: 100%;
                    padding: 12px 16px;
                    border: 1px solid rgba(0, 0, 0, 0.1);
                    border-radius: 8px;
                    font-size: 15px;
                    transition: all 0.3s ease;
                    background: var(--white);
                    
                    &:focus {
                        outline: none;
                        border-color: var(--venezuela-yellow);
                        box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.1);
                    }
                }
                
                .boton-contenedor {
                    display: flex;
                    justify-content: center;
                    margin-top: 2rem;
                    
                    @media (min-width: 768px) { 
                        justify-content: flex-end;
                    }
                }
                .submit-button {
                    background: var(--venezuela-red);
                    color: var(--white);
                    border: none;
                    padding: 16px 32px;
                    border-radius: 30px;
                    font-weight: 600;
                    font-size: 16px;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    
                    &:hover {
                        background: var(--red-hover);
                        color: var(--white);
                    }
                }
            }
            
            /* Estilos para fallback form */
            .fallback-contact-form {
                .form-row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    
                    @media (max-width: 480px) {
                        grid-template-columns: 1fr;
                    }
                }
                
                .form-group {
                    margin-bottom: 25px;
                    
                    label {
                        display: block;
                        color: var(--venezuela-blue);
                        font-weight: 600;
                        margin-bottom: 8px;
                        font-size: 14px;
                    }
                    
                    input,
                    textarea,
                    select {
                        width: 100%;
                        padding: 12px 16px;
                        border: 1px solid rgba(0, 0, 0, 0.1);
                        border-radius: 8px;
                        font-size: 15px;
                        transition: all 0.3s ease;
                        
                        &:focus {
                            outline: none;
                            border-color: var(--venezuela-yellow);
                            box-shadow: 0 0 0 3px rgba(247, 181, 0, 0.1);
                        }
                    }
                    
                }
                
                .submit-button {
                    background: var(--venezuela-red);
                    color: var(--white);
                    border: none;
                    padding: 16px 32px;
                    border-radius: 30px;
                    font-weight: 600;
                    font-size: 16px;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    
                    &:hover {
                        background: var(--venezuela-blue);
                        color: var(--white);
                    }
                }
            }
        }
    }
}

/* Donation Block Reutilizable */
.donation-block-section {
    text-align: center;
    .donation-content {
        max-width: 1000px;
        margin: 0 auto;
        .custom-donation {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
            margin-top: 2rem;
            .custom-header {
                margin-bottom: 30px;
                color: var(--blue-dark);
                .custom-title {
                    text-align: center;
                    margin: 0 auto;
                    color: var(--color-text);
                    font-size: 2rem;
                    margin-bottom: 10px;
                    @media (min-width: 768px) { 
                        max-width: 70%;
                    }
                }
                
               
            }
            
            .donation-form {
                max-width: 30rem;
                margin: 0 auto;
                .donation-input-group {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--blue-dark);
                    border-radius: 12px;
                    padding: 7px;
                    margin-bottom: 20px;
                    
                    .currency-symbol {
                        padding: 0 15px;
                        color: var(--white);
                        font-size: 18px;
                        font-weight: 600;
                    }
                    
                    .donation-input {
                        width: 50%;             
                        font-size: 24px;
                        font-weight: 700;
                        padding: 7px 0;
                        text-align: center;
                        
                        &::-webkit-inner-spin-button,
                        &::-webkit-outer-spin-button {
                            -webkit-appearance: none;
                            margin: 0;
                        }
                        
                        &:focus {
                            border: 1px solid var(--blue-light);
                            outline: none;
                        }
                        
                       
                    }
                    
                    .donation-currency {
                        padding: 0 15px;
                        color: rgba(255, 255, 255, 0.8);
                        font-size: 14px;
                    }
                }
                
               
                
                .donate-button {
                    background: var(--venezuela-red);
                    color: var(--white);
                    border: none;
                    width: 100%;
                    padding: 16px;
                    border-radius: 12px;
                    font-size: 18px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    
                    &:hover {
                      
                        transform: translateY(-3px);
                        background-color: var(--red-hover);
                    }
                }
                
                .security-notice {
                    color: var(--gray-dark);
                    font-size: 1.2rem;
                    margin-top: 1.5rem;
                    
                }
            }
        }
        
       
    }
}

/* FAQ Section retilizable */
.faq-section {
    padding: 100px 0;
    
    .faq-grid {
        max-width: 800px;
        margin: 60px auto 0;
        
        .faq-item {
            background: var(--blue-hover);
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            
            .faq-question {
                width: 100%;
                padding: 24px 30px;
                background: none;
                border: none;
                color: var(--white);
                font-size: 18px;
                font-weight: 600;
                text-align: left;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: all 0.3s ease;
                
                &:hover {
                    background: rgba(255, 255, 255, 0.05);
                }
                
                i {
                    transition: transform 0.3s ease;
                }
                
                &.active i {
                    transform: rotate(180deg);
                }
            }
            
            .faq-answer {
                padding: 0 3rem;
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease;
                background: var(--gray-medium);
                
                p {
                    color: var(--blue-dark);
                    line-height: 1.6;
                    padding-top: 1rem;
                    font-weight: 500;
                }
                p:last-of-type {
                    padding-bottom: 1rem;
                }
                
                
                &.active {
                    max-height: 500px;
                
                }
            }
        }
    }
    
    .faq-cta {
        text-align: center;
        margin-top: 40px;
        
        p {
      
            font-size: 16px;
            
            a {
                color: var(--blue-dark);
                text-decoration: none;
                font-weight: 600;
                
                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }
}

/* Community Programs Section with CSS Variables */

.programs-section {
    background: linear-gradient(rgba(40, 40, 41, 0.6), rgba(0, 9, 24, 0.3)),
                url('../images/mission-photo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
    text-shadow: var(--shadow-heavy);
    
  
    
    .programs-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        
        .section-label {
            display: inline-block;
            color: var(--gray-medium);
            padding: 8px 0;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        
        .section-heading {
            font-size: 35px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--white);
            
            @media (max-width: 768px) {
                font-size: 36px;
            }
            
            @media (max-width: 480px) {
                font-size: 28px;
            }
        }
        
        .section-description {
            font-size: 18px;
            line-height: 1.6;
            color: var(--gray-light);
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            
           
        }
        
        .programs-highlights {
            display: grid;
            gap: 2rem;
            margin-bottom: 60px;
            @media (min-width: 768px) { 
                grid-template-columns: repeat(2,1fr);
            }
           
            .highlight-item {
                background: rgba(1, 18, 127, 0.7);
                backdrop-filter: blur(10px);
                border: 1px solid var(--border-light);
                border-radius: 12px;
                padding: 32px;
                text-align: left;
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    border-color: var(--primary-blue);
                   
                }
                
                .highlight-title {
                    font-size: 20px;
                    font-weight: 600;
                    color: var(--gray-light);
                    margin-bottom: 16px;
                    position: relative;
                    text-align: center;            
                  
                }
                
                .highlight-text {
                    line-height: 1.6;
                    color: var(--gray-light);
                    text-align: center;
                }
            }
        }   
    }
}

/* ABOUT */

/* Image Cards */
.mission-image-card,
.visual-container {
    background-size: cover;
    border-radius: 12px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.mission-image-card {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/mission-photo-about.webp') no-repeat center center;
}

.visual-container {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/reactivacion.webp') no-repeat center center;
}

.venezuela-donation {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/venezuela-donacion.webp') no-repeat center center;
}

.historia-cambio {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/historia-cambio.webp') no-repeat center center;
}

.historia-cambio-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/historia-de-cambio-2.webp') no-repeat top right;
}

.historia-cambio-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/historia-de-cambio-3.webp') no-repeat top center;
}


.inv-img-aerea {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/conectividad-aerea.webp') no-repeat center center;
}

.inv-img-turismo{
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/turismo.webp') no-repeat center center;
}

.inv-img-infra{
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/infraestructura.webp') no-repeat center center;
}

.inv-img-agro{
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/agro.webp') no-repeat center center;
}

.inv-img-digital{
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/infra-digital.webp') no-repeat center center;
}
.inv-img-talento{
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/talento-humano.webp') no-repeat center center;
}




.historia-persona {
    margin-top: 1rem;
    p {
        color: var(--venezuela-blue);
        line-height: 1.2;
        text-align: right;
        small {
            color: var(--gray-dark);
        }
    }
}


/* Mission & Vision Grids */
.mission-grid,
.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
    @media (min-width: 768px) { 
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Values Grid */
.values-grid, .initiatives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .values-grid, .initiatives-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5rem;
    }
}


/* Value Card - Diseño optimizado para fondo oscuro */
.value-card {
    border-radius: 15px;
    padding: 4rem 3rem;
    background-color: var(--gray-medium);
    transition: all 0.3s ease;
    border: 1px solid var(--blue-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}



.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Value Icon */
.value-icon {
    margin-bottom: 2.5rem;
    position: relative;
}

.value-icon i {
    font-size: 4rem;
    color: var(--venezuela-blue);
    background: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
    background: rgba(194, 193, 187, 0.15);
    border-color: rgba(180, 178, 169, 0.3);
}

/* Value Content */
.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.value-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.value-description {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive para Values */
@media (max-width: 991px) {
    .value-card {
        padding: 3.5rem 2.5rem;
    }
    
    .value-icon i {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
    }
    
    .value-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .values-grid {
        gap: 3rem;
    }
    
    .value-title {
        font-size: 2rem;
    }
    
    .value-description {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 3rem 2rem;
    }
    
    .value-icon i {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
    
    .value-title {
        font-size: 1.9rem;
    }
}


/* Hero con estadísticas */
.donate-hero {
    background: linear-gradient(rgba(16,26,91,0.7), rgba(16,26,91,0.5)), url('../images/donations-hero.webp') no-repeat center center;
    background-size: cover;
}



/* Impact facts (dentro de mission-section) */
.impact-facts {
    margin-top: 3rem;
}

.impact-fact {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.impact-fact i {
    font-size: 2.4rem;
    color: var(--venezuela-blue);
    background: var(--gray-light);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.impact-fact h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.impact-fact p {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--gray-dark);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-item {
        padding: 0.8rem 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .impact-fact {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}




    .talent-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 50px;

    }
    .talent-card {
        background: var(--white);
        border: 1px solid #eee;
        padding: 20px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .talent-card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transform: translateY(-3px);
        border-color: var(--blue-hover);
    }
    .talent-indicator {
        width: 4px;
        height: 40px;
        background: var(--venezuela-blue);
        margin-right: 15px;
        border-radius: 2px;
    }
    .talent-name {
        display: block;
        font-weight: 700;
        margin-bottom: 4px;
    }
    .talent-role {
        display: block;
        font-size: 1.2rem;
        color: var(--gray-dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    @media (max-width: 768px) {
        .talent-grid {
            grid-template-columns: 1fr;
        }
    }


/* inversione */

.inv-subtext {
    max-width: 600px;
    margin: 15px auto 0;
    color: #666;
    font-size: 16px;
}

/* BOXES MEJORADOS */
.inv-box h3 {
    color: #183973;
    margin-bottom: 10px;
    font-size: 18px;
}

.inv-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* MEJOR CTA */
.inv-text .btn {
    margin-top: 25px;
}

/* HIGHLIGHT MÁS PREMIUM */
.inv-box-highlight {
    background: linear-gradient(135deg, #183973, #16a34a);
    color: #fff;
    padding: 50px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}


/* =========================
   EDITORIAL BASE
========================= */
.editorial-layout {
    max-width: 1000px;
    margin: 0 auto;
}

/* HEADER */
.editorial-header {
    margin-bottom: 60px;
}

.editorial-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* línea roja tipo HTML5UP */
.editorial-header .line {
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

/* =========================
   GRID
========================= */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

/* ITEM */
.editorial-item {
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

/* TITULO */
.editorial-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

/* TEXTO */
.editorial-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

/* =========================
   HOVER SUTIL (ELEGANT)
========================= */
.editorial-item:hover h3 {
    color: #e74c3c;
}

/* =========================
   SPACING GENERAL
========================= */
.inv-section {
    padding: 100px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-header h2 {
        font-size: 26px;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
    
    @media (min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    @media (min-width: 1200px) {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        
        &:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--venezuela-blue);
            
            .event-image img {
                transform: scale(1.05);
            }
            
           
        }
        
        .blog-card-image {
            height: 220px;
            overflow: hidden;
            position: relative; /* Marco de referencia */

            .blog-img-link {
                display: block;
                width: 100%;
                height: 100%;
                
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }
            }

            /* La Etiqueta corregida */
            .blog-category-tag {
                position: absolute;
                top: 15px;
                right: 15px;
                z-index: 20; /* Por encima de la imagen (.blog-img-link) */
                
                background-color: var(--venezuela-red);
                color: var(--white);
                padding: 6px 14px;
                font-size: 0.7rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                border-radius: 1.2rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                text-decoration: none; /* Quitar subrayado */
                
                /* ELIMINADO: pointer-events: none; (Esto impedía el click) */
                pointer-events: auto; 
                
                transition: all 0.3s ease;

                &:hover {
                    background-color: var(--red-hover); /* O el color de tu preferencia */
                    transform: scale(1.05);
                    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
                }
            }
        }

      

       

        
        .blog-card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            
            .blog-card-title {
                color: var(--venezuela-blue);
                font-size: 22px;
                font-weight: 700;
                line-height: 1.3;
                margin-bottom: 15px;
                text-align: center;
                @media (min-width: 768px) { 
                    text-align: left;
                }
                
                a {
                    color: inherit;
                    text-decoration: none;
                    
                }
            }
            
            .blog-card-excerpt {
                color: var(--dark-text);
                line-height: 1.6;
                margin-bottom: 25px;
                flex-grow: 1;
                font-size: 14px;
                
                p {
                    margin: 0;
                }
            }
            
            .blog-read-more {
                display: inline-block;
                background: var(--blue-dark);
                color: var(--white);
                padding: 12px 24px;
                border-radius: 30px;
                font-weight: 600;
                text-decoration: none;
                text-align: center;
                transition: all 0.3s ease;
                font-size: 15px;
                margin-top: auto;
                
                &:hover {
                    background: var(--venezuela-blue);
                    transform: translateY(-3px);
                }
            }
        }
    }
    
    .no-posts {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        color: var(--gray-medium);
        font-size: 18px;
        background: var(--gray-light);
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }


    .blog-pagination {
        grid-column: 1 / -1;
        margin-top: 60px;
        
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            
            .page-numbers {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                background: var(--gray-light);
                color: var(--venezuela-blue);
                text-decoration: none;
                border-radius: 10px;
                font-weight: 600;
                transition: all 0.3s ease;
                
                &:hover:not(.current) {
                    background: var(--venezuela-yellow);
                    color: var(--venezuela-blue);
                }
                
                &.current {
                    background: var(--venezuela-blue);
                    color: var(--white);
                }
                
                &.dots {
                    background: transparent;
                    color: var(--gray-medium);
                }
                
                &.prev,
                &.next {
                    width: auto;
                    padding: 0 20px;
                    gap: 8px;
                    
                    i {
                        font-size: 12px;
                    }
                }
                
                &.prev:hover,
                &.next:hover {
                    background: var(--venezuela-blue);
                    color: var(--white);
                }
            }
        }
    }
}


.blog-card-image.alianza-image {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
}

/* estilos de paginas legales */

/* Contenido de página */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 0;
    line-height: 1.6;
    p, li {
        margin: 0;
        margin-bottom: 1rem;
    }
    h3 {
        margin-bottom: 1rem;
        color: var(--venezuela-blue);
    }
    hr {
        color: var(--gray-medium);
        padding: 1rem 0;
    }
    strong {
        color: var(--blue-dark);
    }
}



/* single page */

.section-single {
    background-color: #dfe2e4;
    padding: 3rem 0;
}

.white-bg {
    background-color: var(--white);
    border-radius: 15px;
    padding: 3rem;
   
}

/* archive */

.alianzas-archive {
    padding: 8rem 0;
    
}

.alianza-contact-list {

    .contact-item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .6rem;
       
    }
    .contact-icon {
        color: var(--blue-dark);
        margin-bottom: .5rem;
    }
    .contact-text {
        font-weight: 700;
        margin-bottom: .5rem;
    }

    .contact-text:hover {
        color: var(--gray-dark);
    }

    .contact-text.mb-10 {
        margin-bottom: 1rem;
    }
}

.blog-card-title.alianza-title {
    display: flex;
    justify-content: center;
}

.blog-card-description {
    margin-bottom: 1rem;
    text-align: center;
    
}

/* Layout General de la Alianza */
.section-single-alianza {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.alianza-grid-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.col-content {
    flex: 2;
    min-width: 300px;
}

.col-sidebar {
    flex: 1;
    min-width: 280px;
}

/* Tarjeta de Contenido Principal */
.alianza-article-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.alianza-subtitle {
    margin-top: 0;
    color: #002469;
    font-size: 1.8rem;
}

.divider-short {
    border-top: 2px solid #eee;
    margin-bottom: 25px;
    width: 50px;
}

/* Hero Elements */
.section-label-hero {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Sidebar de Contacto */
.sidebar-contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #002469;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.alianza-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-icon {
    color: #002469;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #002469;
}

.contact-link-web {
    color: #002469;
    font-weight: bold;
    text-decoration: none;
}

.contact-link-web:hover {
    text-decoration: underline;
}

/* Footer del Sidebar */
.sidebar-footer {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
}

.btn-back {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #002469;
}

/* Responsive */
@media (max-width: 768px) {
    .alianza-grid-layout {
        flex-direction: column;
    }
    
    .col-sidebar {
        order: 2;
    }
    
    .col-content {
        order: 1;
    }
}



