/* ===== VARIÁVEIS CSS - CORES PADRÃO DO PROJETO ===== */

.header.modern-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.modern-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo - Cor vermelha do projeto com ícone */
.header.modern-header .logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: #dc2626;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.header.modern-header .logo i {
    font-size: 1.5rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

.header.modern-header .logo:hover {
    transform: scale(1.05);
    color: #b91c1c;
}

.header.modern-header .logo:hover i {
    color: #b91c1c;
    transform: rotate(15deg);
}

.header.modern-header .logo-text {
    display: inline-block;
}

/* Menu de Navegação - CORES VERMELHO E BRANCO */
.header.modern-header .nav-menu {
    display: flex;
    align-items: center;
}

.header.modern-header .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.header.modern-header .nav-link {
    color: #dc2626 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.header.modern-header .nav-link:hover {
    color: #ffffff !important;
    background: #dc2626;
}

.header.modern-header .nav-link.active {
    color: #ffffff !important;
    background: #dc2626;
    border: 1px solid #b91c1c;
}

/* Estilos movidos para Sobre.css para evitar duplicação */
.header.modern-header .nav-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 1rem !important;
    right: 1rem !important;
    height: 2px !important;
    width: auto !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transform: none !important;
}

/* Dropdown */
.header.modern-header .dropdown {
    position: relative;
}

.header.modern-header .dropdown-toggle {
    position: relative;
}

.header.modern-header .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.header.modern-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 1rem;
    padding: 0.5rem;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.header.modern-header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header.modern-header .dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.header.modern-header .dropdown-item:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(5px);
    color: #dc2626;
}

.header.modern-header .dropdown-item i {
    width: 20px;
    text-align: center;
    color: #dc2626;
    font-size: 1.1rem;
}

.header.modern-header .item-content {
    flex: 1;
}

.header.modern-header .item-title {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.header.modern-header .item-desc {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
}

.header.modern-header .item-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
}

.header.modern-header .item-status.pending {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* Botões do Header - CORES VERMELHO E BRANCO */
.header.modern-header .header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header.modern-header .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.header.modern-header .btn-outline {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.header.modern-header .btn-outline:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    transform: translateY(-2px);
}

/* Botão Cadastrar - Cor vermelha do projeto */
.header.modern-header .btn-primary {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 2px solid #dc2626;
}

.header.modern-header .btn-primary:hover {
    background: #b91c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
    border-color: #b91c1c;
}

/* Menu Mobile */
.header.modern-header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.header.modern-header .mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .header.modern-header .nav-menu {
        display: none;
    }

    .header.modern-header .header-buttons {
        display: none;
    }

    .header.modern-header .mobile-menu-btn {
        display: flex;
    }

    .header.modern-header .header-container {
        padding: 1rem;
    }

    /* Menu mobile aberto */
    .header.modern-header .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(220, 38, 38, 0.2);
    }

    .header.modern-header .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .header.modern-header .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        color: #dc2626 !important;
    }

    .header.modern-header .nav-link:hover,
    .header.modern-header .nav-link.active {
        color: #ffffff !important;
        background: #dc2626;
    }

    .header.modern-header .header-buttons.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .header.modern-header .header-buttons.active .btn {
        width: 100%;
        justify-content: center;
    }
}

:root {
    /* Cores principais IDÊNTICAS ao site "Por que doar" */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --urgent-orange: #f59e0b;
    --crisis-red: #ef4444;
    --hope-green: #10b981;
    --warning-yellow: #fbbf24;

    /* Gradiente de fundo IDÊNTICO */
    --bg-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #991b1b 100%);

    /* Cores de texto */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --text-dark: #1f2937;

    /* Outras cores */
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Fontes */
    --body-font: 'Inter', sans-serif;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    /* Font weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-black: 900;

    /* Margens */
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* z index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background: var(--bg-gradient);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 5rem 0 2rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: var(--z-fixed);
    transition: .4s;
}

.nav {
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav__logo i {
    font-size: 1.5rem;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-weight: var(--font-medium);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.08);
}

.nav__link.active-link {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

.nav__buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav__toggle {
    display: none;
    font-size: 1.25rem;
    color: var(--gray-700);
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== BOTÕES ===== */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: var(--font-semi-bold);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.button--primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.button--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.button--ghost {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.button--ghost:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.button--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ATUALIZADA ===== */
.hero {
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(153, 27, 27, 0.8) 100%);
    min-height: 100vh;
}

.hero__container {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: var(--font-black);
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    animation: fadeInDown 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
    font-size: 4rem;
    font-weight: var(--font-black);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: fadeInDown 1s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero__title-color {
    background: linear-gradient(135deg, #2563eb, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
    background-size: 200% auto;
    display: inline-block;
}

.hero__title-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #dc2626 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
    display: inline-block;
    font-weight: var(--font-black);
}

@keyframes textShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero__description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: var(--font-medium);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero__data {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero__data-item {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(220, 38, 38, 0.15));
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

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

.hero__data-item:hover::before {
    left: 100%;
}

.hero__data-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

.hero__data-item h3 {
    font-size: 2.2rem;
    font-weight: var(--font-black);
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.hero__data-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.3px;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ===== ALIMENTOS CAINDO - DESIGN MODERNO E PROFISSIONAL ===== */
.hero__falling-foods {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-food {
    position: absolute;
    left: var(--x-start);
    top: -120px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: fallDownModern var(--speed) linear infinite;
    animation-delay: var(--delay);
    transform: scale(var(--size));
    will-change: transform;
    transition: all 0.3s ease;
}

.falling-food i {
    display: block;
    transition: all 0.3s ease;
}

.falling-food:hover {
    transform: scale(calc(var(--size) * 1.3)) !important;
    filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.6));
    animation-play-state: paused;
    z-index: 10;
}

.falling-food:hover i {
    color: #fbbf24;
    transform: rotate(15deg);
}

/* Cores específicas para diferentes alimentos */
.falling-food:nth-child(1) i { color: #ef4444; } /* Maçã - Vermelho */
.falling-food:nth-child(2) i { color: #f59e0b; } /* Pão - Laranja */
.falling-food:nth-child(3) i { color: #f97316; } /* Cenoura - Laranja escuro */
.falling-food:nth-child(4) i { color: #fbbf24; } /* Queijo - Amarelo */
.falling-food:nth-child(5) i { color: #fde047; } /* Limão - Amarelo claro */
.falling-food:nth-child(6) i { color: #dc2626; } /* Frango - Vermelho escuro */
.falling-food:nth-child(7) i { color: #3b82f6; } /* Peixe - Azul */
.falling-food:nth-child(8) i { color: #10b981; } /* Verduras - Verde */
.falling-food:nth-child(9) i { color: #fef3c7; } /* Ovo - Amarelo claro */
.falling-food:nth-child(10) i { color: #f97316; } /* Pimenta - Laranja */
.falling-food:nth-child(11) i { color: #92400e; } /* Cookie - Marrom */
.falling-food:nth-child(12) i { color: #dc2626; } /* Bacon - Vermelho */

@keyframes fallDownModern {
    0% {
        transform: translateY(-120px) translateX(0) rotate(0deg) scale(var(--size));
        opacity: 0;
    }
    3% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(calc(50vh)) translateX(calc((var(--x-start) - 50%) * 0.2)) rotate(180deg) scale(var(--size));
    }
    97% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(calc(100vh + 120px)) translateX(calc((var(--x-start) - 50%) * 0.4)) rotate(360deg) scale(var(--size));
        opacity: 0;
    }
}

/* Garantir que o conteúdo fique acima dos cards caindo */
.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
}

/* ===== ALIMENTOS CAINDO MINIMALISTAS NAS OUTRAS SEÇÕES ===== */
.section-falling-foods {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-food-minimal {
    position: absolute;
    left: var(--x-start);
    top: -80px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    animation: fallDownMinimal var(--speed) linear infinite;
    animation-delay: var(--delay);
    will-change: transform;
    opacity: 0.55;
    transition: all 0.3s ease;
}

.falling-food-minimal:hover {
    opacity: 0.85;
    transform: scale(1.2);
    animation-play-state: paused;
    filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.4));
}

.falling-food-minimal i {
    display: block;
    transition: transform 0.3s ease;
}

.falling-food-minimal:hover i {
    transform: rotate(15deg);
}

/* Cores mais visíveis para alimentos minimalistas */
.falling-food-minimal:nth-child(1) i { color: rgba(239, 68, 68, 0.7); }
.falling-food-minimal:nth-child(2) i { color: rgba(245, 158, 11, 0.7); }
.falling-food-minimal:nth-child(3) i { color: rgba(251, 191, 36, 0.7); }
.falling-food-minimal:nth-child(4) i { color: rgba(16, 185, 129, 0.7); }
.falling-food-minimal:nth-child(5) i { color: rgba(59, 130, 246, 0.7); }

@keyframes fallDownMinimal {
    0% {
        transform: translateY(-80px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.55;
    }
    50% {
        transform: translateY(calc(50vh)) translateX(calc((var(--x-start) - 50%) * 0.15)) rotate(180deg);
    }
    95% {
        opacity: 0.55;
    }
    100% {
        transform: translateY(calc(100vh + 80px)) translateX(calc((var(--x-start) - 50%) * 0.3)) rotate(360deg);
        opacity: 0;
    }
}

/* Garantir que o conteúdo das seções fique acima */
.stats,
.impact,
.how,
.urgency,
.cta {
    position: relative;
}

.stats__container,
.impact__container,
.how__container,
.urgency__container,
.cta__container {
    position: relative;
    z-index: 2;
}

/* ===== REMOVER ANIMAÇÕES DOS ALIMENTOS CAINDO ===== */
.falling-foods-container,
.hero-particles,
.food-particle,
.particle {
    display: none !important;
}

/* Efeito de brilho no texto melhorado */
.glow-text {
    text-shadow:
        0 0 20px rgba(37, 99, 235, 0.6),
        0 0 40px rgba(220, 38, 38, 0.4),
        0 0 60px rgba(37, 99, 235, 0.3) !important;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow:
            0 0 20px rgba(37, 99, 235, 0.6),
            0 0 40px rgba(220, 38, 38, 0.4),
            0 0 60px rgba(37, 99, 235, 0.3);
    }
    to {
        text-shadow:
            0 0 25px rgba(37, 99, 235, 0.8),
            0 0 50px rgba(220, 38, 38, 0.6),
            0 0 75px rgba(37, 99, 235, 0.4);
    }
}

/* Novas animações modernas */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

/* REMOVER ANIMAÇÕES DOS ALIMENTOS */
@keyframes fallModern { /* REMOVIDO */ }
@keyframes particleFloat { /* REMOVIDO */ }

/* Efeito de pulso moderno para o botão principal */
#donate-btn {
    animation: pulseModern 2s infinite 1.2s;
    background: linear-gradient(135deg, #2563eb, #dc2626);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

#donate-btn:hover::before {
    left: 100%;
}

@keyframes pulseModern {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 99, 235, 0.7),
            0 4px 25px rgba(220, 38, 38, 0.4);
    }
    70% {
        box-shadow:
            0 0 0 20px rgba(37, 99, 235, 0),
            0 4px 35px rgba(220, 38, 38, 0.6);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(37, 99, 235, 0),
            0 4px 25px rgba(220, 38, 38, 0.4);
    }
}

/* Responsividade melhorada */
@media screen and (max-width: 768px) {
    .hero__title {
        font-size: 2.8rem;
    }

    .hero__description {
        font-size: 1.2rem;
    }

    .hero__data {
        gap: 1.5rem;
    }

    .hero__data-item {
        min-width: 180px;
        padding: 1.5rem;
    }

    .hero__data-item h3 {
        font-size: 1.8rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .falling-food {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .hero__falling-foods .falling-food:nth-child(n+9) {
        display: none;
    }
    
    .falling-food-minimal {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
        opacity: 0.5;
    }
    
    .section-falling-foods .falling-food-minimal:nth-child(n+3) {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }

    .hero__description {
        font-size: 1.1rem;
    }

    .hero__data {
        flex-direction: column;
        align-items: center;
    }

    .hero__data-item {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== SECTIONS COMUNS ===== */
.section__title {
    font-size: 2.5rem;
    font-weight: var(--font-black);
    text-align: center;
    margin-bottom: 3rem;
}

.section__title-color {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== STATS SECTION ===== */
.stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.stats__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.stats__number {
    font-size: 3rem;
    font-weight: var(--font-black);
    background: linear-gradient(135deg, var(--warning-yellow), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stats__label {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ===== IMPACT SECTION ===== */
.impact {
    position: relative;
    overflow: hidden;
}

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

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

.impact__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.impact__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hope-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.impact__item h3 {
    font-size: 2rem;
    font-weight: var(--font-black);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--warning-yellow), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact__item p {
    color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how {
    position: relative;
    overflow: hidden;
}

.how__steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-black);
    color: var(--white);
    flex-shrink: 0;
}

.step__content h3 {
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step__content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== URGENCY SECTION ===== */
.urgency {
    background: rgba(239, 68, 68, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.urgency__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.urgency__title {
    font-size: 2.5rem;
    font-weight: var(--font-black);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.urgency__title-color {
    background: linear-gradient(135deg, var(--warning-yellow), var(--crisis-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency__comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.comparison__card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.waste-card {
    border-left: 4px solid var(--urgent-orange);
}

.hunger-card {
    border-left: 4px solid var(--crisis-red);
}

.comparison__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comparison__header i {
    font-size: 2rem;
}

.waste-card .comparison__header i {
    color: var(--urgent-orange);
}

.hunger-card .comparison__header i {
    color: var(--crisis-red);
}

.comparison__header h3 {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
}

.comparison__list {
    list-style: none;
}

.comparison__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.comparison__list i {
    font-size: 1rem;
}

.waste-card .comparison__list i {
    color: var(--urgent-orange);
}

.hunger-card .comparison__list i {
    color: var(--crisis-red);
}

.comparison__vs {
    display: flex;
    justify-content: center;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--urgent-orange), var(--crisis-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-black);
    font-size: 1.25rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== CTA SECTION ===== */
.cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__title {
    font-size: 3rem;
    font-weight: var(--font-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta__title-color {
    background: linear-gradient(135deg, var(--hope-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta__description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta__stat {
    text-align: center;
}

.cta__stat strong {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-black);
    background: linear-gradient(135deg, var(--warning-yellow), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.cta__stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer__container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer__description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__link:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: var(--white);
}

/* ===== RESPONSIVIDADE ===== */
@media screen and (max-width: 1024px) {
    .container {
        margin-left: var(--mb-1-5);
        margin-right: var(--mb-1-5);
    }

    .hero__title {
        font-size: 3rem;
    }

    .urgency__comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison__vs {
        order: -1;
    }

    .vs-circle {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 3rem 2rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 1rem 1rem;
        transition: .4s;
        flex-direction: column;
        gap: 2rem;
    }

    .nav__menu.show-menu {
        top: 100%;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav__buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav__toggle {
        display: block;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__data {
        justify-content: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .falling-food {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .hero__falling-foods .falling-food:nth-child(n+7) {
        display: none;
    }
    
    .falling-food-minimal {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
        opacity: 0.45;
    }
    
    .section-falling-foods .falling-food-minimal:nth-child(n+2) {
        display: none;
    }

    .section__title {
        font-size: 2rem;
    }

    .stats__grid,
    .impact__grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .button--large {
        width: 100%;
        justify-content: center;
    }

    .falling-food {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* Reduzir quantidade de alimentos em telas muito pequenas */
    .hero__falling-foods .falling-food:nth-child(n+6) {
        display: none;
    }
    
    .falling-food-minimal {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    /* Ocultar alimentos minimalistas em telas muito pequenas */
    .section-falling-foods {
        display: none;
    }

    .cta__title {
        font-size: 2.5rem;
    }

    .cta__buttons {
        flex-direction: column;
    }

    .cta__stats {
        gap: 1.5rem;
    }
}

/* ===== ANIMAÇÕES AOS ===== */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

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

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

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

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

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

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

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

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}