/* ===== RESET + VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta premium — verde bosque + azul profundo + toques ámbar */
    --deep-green: #0f5c3f;
    --green-hover: #0a4630;
    --green-soft: #e2f0e6;
    --green-pale: #f0f9f2;
    --deep-blue: #1c4e6c;
    --blue-soft: #e2ecf5;
    --amber: #b86f2b;
    --amber-soft: #fef1e6;
    --neutral-900: #1a2421;
    --neutral-700: #2e3b37;
    --neutral-500: #5f6c68;
    --neutral-300: #d6dfdb;
    --neutral-100: #f6f9f8;
    --white: #ffffff;
    
    /* Sombras */
    --shadow-sm: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,20,10,0.02);
    --shadow-md: 0 12px 30px rgba(0,30,20,0.04);
    --shadow-lg: 0 20px 40px rgba(0,40,30,0.08);
    --shadow-xl: 0 30px 60px rgba(0,50,30,0.12);
    
    /* Bordes */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 9999px;
    
    /* Tipografía */
    --font-display: 'Archivo', -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

body {
    font-family: var(--font-body);
    color: var(--neutral-700);
    background-color: var(--neutral-100);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 40px; }
}

section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0f5c3f 0%, #0a3d2c 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s ease;
}

.preloader-content {
    max-width: 360px;
    width: 85%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.3);
    animation: preloaderAppear 0.6s ease;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #0f5c3f, #166b49);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(15,92,63,0.3);
    animation: softPulse 2.2s infinite ease-in-out;
}

.preloader-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-green);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.preloader-sub {
    font-size: 0.95rem;
    color: var(--neutral-500);
    margin-bottom: 28px;
}

.preloader-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    border: 3px solid var(--neutral-300);
    border-top-color: var(--deep-green);
    border-right-color: var(--deep-blue);
    border-radius: 50%;
    animation: spin 0.9s infinite linear;
}

.preloader-progress {
    width: 100%;
    height: 4px;
    background: var(--neutral-300);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 16px 0 20px;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--deep-green), var(--deep-blue));
    border-radius: var(--radius-full);
    animation: progressLoad 2s ease-in-out forwards;
}

.preloader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.preloader-dots span {
    width: 8px;
    height: 8px;
    background: var(--deep-green);
    border-radius: 50%;
    opacity: 0.2;
    animation: dotWave 1.4s infinite;
}

.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ===== ANIMACIONES ===== */
@keyframes softPulse {
    0%,100% { transform: scale(1); box-shadow: 0 20px 40px rgba(15,92,63,0.3); }
    50% { transform: scale(1.03); box-shadow: 0 30px 50px rgba(15,92,63,0.4); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes dotWave {
    0%,100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}
@keyframes preloaderAppear {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.02);
}
.header.scrolled {
    background: rgba(255,255,255,0.96);
    border-color: rgba(15,92,63,0.15);
    box-shadow: 0 12px 30px rgba(0,30,0,0.06);
    top: 12px;
}
@media (max-width: 640px) {
    .header { padding: 8px 16px; }
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.header-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--neutral-900);
    letter-spacing: -0.03em;
}
@media (max-width: 480px) {
    .header-logo span { display: none; }
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-desktop a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-desktop a i { font-size: 0.9rem; }
.nav-desktop a:hover {
    background: var(--green-soft);
    color: var(--deep-green);
}
.nav-desktop a.active {
    background: var(--deep-green);
    color: white;
}
.btn-donate-header {
    background: var(--amber) !important;
    color: white !important;
    margin-left: 8px;
}
.btn-donate-header:hover {
    background: #9e5f25 !important;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--neutral-900);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    background: transparent;
    border: none;
}
.nav-mobile {
    display: none;
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0,20,0,0.2);
    border: 1px solid var(--neutral-300);
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-mobile a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 600;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--neutral-100);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
}
.nav-mobile a i { width: 24px; color: var(--deep-green); }

@media (max-width: 900px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: block; }
    .nav-mobile { display: flex; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px 20px 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(15,92,63,0.3) 0%, rgba(28,78,108,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.3);
}
.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.hero-logo-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.25);
    box-shadow: 0 30px 50px rgba(0,0,0,0.25);
    background: white;
}
.hero-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-title-group {
    text-align: left;
}
.hero-title-group h1 {
    font-size: 4.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-title-gradient {
    background: linear-gradient(to right, #ffffff, #e0f0e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-message {
    margin-top: 30px;
    margin-bottom: 30px;
}
.hero-quote {
    font-size: 1.5rem;
    color: white;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
    padding: 22px 35px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.25);
    line-height: 1.4;
    font-weight: 400;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.hero-quote i {
    opacity: 0.9;
    margin: 0 8px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
}
.btn-primary {
    background: white;
    color: var(--deep-green);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.btn-outline-light {
    background: transparent;
    backdrop-filter: blur(8px);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.6);
}

/* ===== SECCIONES GENERALES ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.title-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--deep-green), #166b49);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 15px 30px rgba(15,92,63,0.2);
}
.section-sub {
    font-size: 1.2rem;
    color: var(--neutral-500);
    font-weight: 400;
    line-height: 1.5;
}

/* ===== STATS CARDS ===== */
.stats-section {
    background: white;
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}
.stat-card {
    background: white;
    padding: 36px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--neutral-300);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--deep-green);
    box-shadow: var(--shadow-lg);
}
.stat-icon-lg {
    font-size: 2.8rem;
    color: var(--deep-green);
    margin-bottom: 16px;
}
.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--deep-green);
    margin-bottom: 8px;
    line-height: 1;
}
.stat-card p {
    color: var(--neutral-500);
    font-weight: 500;
    margin: 0;
}
.mini-municipios {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
}
.mini-municipios span {
    background: var(--green-soft);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--deep-green);
}

/* ===== SECCIÓN NOSOTROS ===== */
.about-section {
    background: white;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}
.about-card {
    perspective: 1000px;
    height: 400px;
}
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-front {
    background: linear-gradient(145deg, var(--deep-green), #166b49);
    color: white;
}
.card-back {
    background: white;
    color: var(--neutral-700);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-300);
}
.history-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-card:hover .history-image img {
    transform: scale(1.1);
}
.card-flip-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-flip-btn:hover {
    background: white;
    color: var(--deep-green);
    transform: translateY(-3px);
}
.card-flip-back {
    background: var(--deep-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.card-flip-back:hover {
    background: var(--green-hover);
    transform: translateY(-3px);
}
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mv-card {
    background: var(--neutral-100);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border-top: 4px solid var(--deep-green);
    transition: var(--transition);
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.mv-card.vision {
    border-top-color: var(--deep-blue);
}
.mv-card.values {
    border-top-color: var(--amber);
}
.mv-icon {
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 16px;
}
.mv-card.vision .mv-icon { color: var(--deep-blue); }
.mv-card.values .mv-icon { color: var(--amber); }

/* ===== PROGRAMAS ===== */
.programs-section {
    background: var(--neutral-100);
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    justify-content: center;
}

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

/* Centrar Contingencia cuando hay 7 elementos */
.programs-grid .program-card:last-child {
    grid-column: auto;
}

@media (min-width: 1200px) {
    .programs-grid .program-card:last-child {
        grid-column: 2 / span 1;
    }
}

.program-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--neutral-300);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}
.program-img {
    height: 210px;
    overflow: hidden;
}
.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.program-card:hover .program-img img {
    transform: scale(1.06);
}
.program-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.program-content p {
    color: var(--neutral-500);
    margin-bottom: 20px;
    flex: 1;
}

/* ===== CÓMO AYUDAR ===== */
.business-section {
    background: white;
}
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.business-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-300);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--deep-green);
}
.business-card.featured {
    border: 2px solid var(--deep-green);
    box-shadow: var(--shadow-md);
}
.business-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--deep-green);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}
.business-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-green);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.business-img {
    height: 200px;
    overflow: hidden;
}
.business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.business-card:hover .business-img img {
    transform: scale(1.05);
}
.business-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.business-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}
.donation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.donation-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background: var(--neutral-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid var(--deep-green);
}
.donation-list li i {
    color: var(--deep-green);
    width: 20px;
}
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--green-soft);
    border-radius: 12px;
    margin-top: 20px;
}
.info-box i {
    font-size: 1.3rem;
    color: var(--deep-green);
}

/* ===== PAYMENT OPTIONS ===== */
.payment-option {
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--neutral-300);
    transition: var(--transition);
    cursor: pointer;
}
.payment-option:hover {
    border-color: var(--deep-green);
    background: white;
}
.payment-option.active {
    border-color: var(--deep-green);
    background: white;
    box-shadow: 0 6px 16px rgba(15,92,63,0.08);
}
.payment-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.payment-icon {
    font-size: 2.2rem;
    color: var(--deep-green);
    width: 50px;
    text-align: center;
}
.payment-info {
    flex: 1;
}
.payment-info h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}
.payment-info p {
    margin: 0;
    color: var(--neutral-500);
    font-size: 0.9rem;
}
.payment-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-300);
}
.payment-option.active .payment-details {
    display: block;
    animation: fadeSlide 0.3s ease;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.qr-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--neutral-300);
}
.qr-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.copy-btn {
    background: var(--deep-green);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
    margin-right: 8px;
}
.copy-btn:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
}
.paypal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0070ba;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
}
.paypal-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
}

/* ===== REDES SOCIALES ===== */
.social-media-section {
    margin: 25px 0;
    padding: 15px;
    background: var(--neutral-100);
    border-radius: var(--radius-md);
}
.social-media-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}
.social-media-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-media-item i {
    font-size: 1.1rem;
}
.social-media-item.facebook { background: #1877f2; }
.social-media-item.instagram { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); }
.social-media-item.tiktok { background: #000000; }
.social-media-item.linkedin { background: #0077b5; }
.social-media-item.whatsapp { background: #25d366; }
.social-media-item:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* ===== VIDEOS MINI ===== */
.volunteer-video-section,
.events-video-section {
    margin: 25px 0;
    padding: 15px;
    background: var(--neutral-100);
    border-radius: var(--radius-md);
}
.volunteer-video-section h4,
.events-video-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.video-mini-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}
.video-mini-container video {
    width: 100%;
    height: auto;
    display: block;
}
.video-description {
    font-size: 0.9rem;
    color: var(--neutral-500);
    text-align: center;
    margin-top: 8px;
}

/* ===== ODS SECTION ===== */
.ods-section {
    background: var(--neutral-100);
}
.ods-intro p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--neutral-700);
}
.ods-with-video {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 0;
}
.ods-items-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.ods-item-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 25px;
    width: 250px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid;
}
.ods-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.ods-item-card:nth-child(1) { border-left-color: #e5243b; }
.ods-item-card:nth-child(2) { border-left-color: #4c9f38; }
.ods-item-card:nth-child(3) { border-left-color: #2196f3; }
.ods-item-card:nth-child(4) { border-left-color: #ff9800; }
.ods-item-card:nth-child(5) { border-left-color: #795548; }
.ods-item-card:nth-child(6) { border-left-color: #3f51b5; }
.ods-item-card .ods-number {
    width: 50px;
    height: 50px;
    background: currentColor;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}
.ods-item-card h4 {
    margin-bottom: 10px;
    color: var(--neutral-900);
}
.ods-item-card p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    margin: 0;
}
.ods-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.ods-progress-bar {
    flex-grow: 1;
    height: 8px;
    background: var(--neutral-300);
    border-radius: 4px;
    overflow: hidden;
}
.ods-progress-fill {
    height: 100%;
    background: currentColor;
    border-radius: 4px;
    width: 75%;
}
.ods-progress-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neutral-500);
}
.ods-video-container {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.ods-video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.ods-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}
.ods-video-container h4 {
    margin: 15px 0 8px;
    font-size: 1.1rem;
}
.ods-video-container p {
    color: var(--neutral-500);
    font-size: 0.9rem;
}
.ods-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.summary-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.summary-card i {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 20px;
}

/* ===== TRANSPARENCIA Y LOGROS ===== */
.transparency-section {
    background: white;
}
.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 1100px) {
    .transparency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.transparency-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.transparency-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--deep-green);
    font-weight: 600;
}
.feature-item i {
    background: var(--green-soft);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.annual-report {
    background: var(--neutral-100);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--deep-green);
    margin-top: 30px;
}
.report-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.report-btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 12px 20px;
}
.report-btn.small {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: 100px;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--deep-green);
    color: var(--deep-green);
}
.btn-outline:hover {
    background: var(--deep-green);
    color: white;
}
.verified-donations {
    background: var(--green-soft);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    border-left: 4px solid var(--deep-green);
}
.verified-donations h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.stats-grid-transparency {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card-transparency {
    background: var(--neutral-100);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    border-top: 4px solid var(--deep-green);
    transition: var(--transition);
}
.stat-card-transparency:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 10px;
    line-height: 1.2;
}
.stat-label {
    font-size: 1rem;
    color: var(--neutral-700);
    font-weight: 500;
}
.charts-container {
    background: var(--neutral-100);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 30px;
}
.charts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.btn.small {
    padding: 10px 18px;
    font-size: 0.9rem;
}
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}
.chart-container {
    position: relative;
    height: 300px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.chart-container h5 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* ===== BOTÓN PDF MEJORADO ===== */
#downloadChartsPDF {
    background: var(--deep-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

#downloadChartsPDF:hover {
    background: var(--green-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

#downloadChartsPDF:disabled {
    background: var(--neutral-500);
    cursor: wait;
    transform: none;
}

#downloadChartsPDF i {
    font-size: 1.1rem;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* ===== ALIANZAS SIN MARCOS ===== */
.alliances-section {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--neutral-300);
    margin-top: 60px;
}
.alliances-title {
    font-size: 2rem;
    margin-bottom: 10px;
}
.alliances-subtitle {
    color: var(--neutral-500);
    margin-bottom: 40px;
}
.alliance-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.category {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.category h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}
.carousel-controls {
    display: flex;
    gap: 10px;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--deep-green);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--green-hover);
    transform: scale(1.1);
}
.carousel-btn:disabled {
    background: var(--neutral-500);
    cursor: not-allowed;
}
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 20px 0;
}
.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
}
.alliance-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.alliance-logo img {
    max-width: 140px;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}
.alliance-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neutral-300);
    cursor: pointer;
    transition: var(--transition);
}
.carousel-indicator.active {
    background: var(--deep-green);
    transform: scale(1.2);
}

/* ===== MULTIMEDIA ===== */
.multimedia-section {
    background: var(--neutral-100);
}
.featured-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.featured-video-container {
    height: 100%;
    min-height: 300px;
    background: #0a2a1f;
}
.featured-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured-video-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-video-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--deep-green);
}
.featured-video-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--neutral-700);
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.video-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--neutral-300);
    transition: var(--transition);
}
.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    background: #0a2a1f;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Videos optimizados para mostrar rostros */
.optimized-video {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #0a2a1f;
    overflow: hidden;
}

.optimized-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

#testimonioVideo video,
#testimonio2Video video {
    object-position: center 20%;
}

@media (max-width: 768px) {
    .optimized-video {
        padding-bottom: 70%;
    }
    .optimized-video video {
        object-position: center 25%;
    }
}

.video-item h4 {
    padding: 20px 20px 8px;
    margin: 0;
}
.video-item p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--neutral-500);
    font-size: 0.9rem;
}
.gallery-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 1.8rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.lightbox-nav button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}
.lightbox-nav button:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== SECCIÓN DONAR ===== */
.donate-section {
    background: white;
}
.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.method-card {
    background: var(--neutral-100);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.method-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.method-icon {
    font-size: 2.2rem;
    color: var(--deep-green);
    width: 70px;
    height: 70px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donate-card {
    background: var(--neutral-100);
    padding: 40px;
    border-radius: var(--radius-md);
}
.donation-tips {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.donation-tips li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--neutral-300);
}
.donation-tips li i {
    color: var(--deep-green);
}
.whatsapp-cta {
    background: var(--green-soft);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 30px;
}
.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

/* ===== CONTACTO ===== */
.contact-section {
    background: var(--neutral-100);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.contact-icon {
    font-size: 1.5rem;
    color: white;
    background: var(--deep-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-map {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
#map {
    width: 100%;
    height: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: #0e2a21;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
}
.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}
.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0;
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--deep-green);
    transform: translateY(-5px);
}
.footer-links h3, .footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 24px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 14px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: white;
    transform: translateX(6px);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.footer-contact-item i {
    width: 22px;
    color: var(--green-soft);
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.footer-extra {
    display: flex;
    gap: 28px;
}
.footer-extra a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-extra a:hover {
    color: white;
}
.donate-footer-btn {
    background: var(--amber);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    color: white !important;
}

/* ===== BOTONES FLOTANTES ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
    transition: var(--transition);
    z-index: 99;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 18px 40px rgba(37,211,102,0.4);
}
.back-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-900);
    font-size: 1.3rem;
    border: 1px solid var(--neutral-300);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 98;
}
.back-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    background: var(--deep-green);
    color: white;
    transform: translateY(-6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .videos-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .about-content { grid-template-columns: 1fr; }
    .mission-vision { grid-template-columns: 1fr; }
    .transparency-content { grid-template-columns: 1fr; }
    .donate-content { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    .charts-grid { grid-template-columns: 1fr; }
    .ods-summary { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .hero-title-group h1 { font-size: 3.2rem; }
    .hero-logo-wrap { gap: 20px; }
    .stats-grid-transparency { grid-template-columns: 1fr; }
    .hero-quote { font-size: 1.3rem; padding: 18px 25px; }
    .ods-with-video { grid-template-columns: 1fr; }
    .featured-video { grid-template-columns: 1fr; }
    .featured-video-container { min-height: 250px; }
}

@media (max-width: 768px) {
    .hero { padding-top: 120px; background-attachment: scroll; }
    .hero-title-group { text-align: center; }
    .hero-title-group h1 { font-size: 2.8rem; }
    .hero-logo-wrap { flex-direction: column; }
    .hero-impact { gap: 30px; }
    .section-title { font-size: 2.2rem; }
    .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .business-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .ods-items-container { flex-direction: column; align-items: center; }
    .ods-item-card { width: 100%; max-width: 300px; }
    .category-header { flex-direction: column; gap: 15px; }
    .featured-video-content { padding: 30px; }
    .featured-video-content h3 { font-size: 1.6rem; }
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid-transparency { grid-template-columns: 1fr; }
    .hero-title-group h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.1rem; }
    .hero-impact-number { font-size: 2.5rem; }
    .btn { width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .section-title { font-size: 1.8rem; flex-direction: column; }
    .title-icon-circle { width: 60px; height: 60px; font-size: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-extra { flex-wrap: wrap; justify-content: center; }
    .method-card { flex-direction: column; text-align: center; }
    .hero-quote { font-size: 1.1rem; padding: 15px 20px; }
    .report-buttons { flex-direction: column; }
    .report-btn { width: 100%; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 380px) {
    .hero-title-group h1 { font-size: 1.9rem; }
    .hero-logo-circle { width: 100px; height: 100px; }
}