/* ========================================= */
/* CSS SUPER PREMIUM - POR QUE DOAR */
/* ========================================= */



.header.modern-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 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 */
/* Logo com ícone - Estilos movidos para Sobre.css para evitar duplicação */
/* Mantido aqui apenas para compatibilidade, mas Sobre.css tem prioridade */
.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;
}

.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 */
.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: #374151;
    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;
}

.header.modern-header .nav-link:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.header.modern-header .nav-link.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.15);
}

/* Estilos movidos para Sobre.css para evitar duplicação */
/* Mantido apenas para compatibilidade, mas Sobre.css tem prioridade */
.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: #dc2626 !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(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 0.5rem;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 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);
}

.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 */
.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;
}

.header.modern-header .btn-outline {
    background: transparent;
    color: #374151;
    border-color: rgba(55, 65, 81, 0.3);
}

.header.modern-header .btn-outline:hover {
    background: rgba(55, 65, 81, 0.1);
    border-color: rgba(55, 65, 81, 0.5);
    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);
}


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

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

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

/* 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(0, 0, 0, 0.1);
    }

    .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;
    }

    .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 aprimoradas */
  --primary-blue: #2563eb;
  --primary-blue-dark: #1e40af;
  --primary-red: #dc2626;
  --primary-red-dark: #b91c1c;
  --primary-red-light: #fee2e2;
  --urgent-orange: #f59e0b;
  --urgent-orange-dark: #d97706;

  /* Novas cores para urgência */
  --crisis-red: #ef4444;
  --crisis-dark: #991b1b;
  --hope-green: #10b981;
  --warning-yellow: #fbbf24;
}

/* ========================================= */
/* HERO SECTION - REDESENHADA COMPLETAMENTE */
/* ========================================= */

.porque-doar-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #991b1b 100%) !important;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Efeito de frutas/flores igual à seção de urgência */
.floating-food-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-food-icons i {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: floatFood 15s infinite linear;
    color: rgba(255, 255, 255, 0.6);
}

.floating-food-icons i:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-food-icons i:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.floating-food-icons i:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.floating-food-icons i:nth-child(4) { top: 40%; right: 20%; animation-delay: 6s; }
.floating-food-icons i:nth-child(5) { bottom: 20%; left: 10%; animation-delay: 8s; }
.floating-food-icons i:nth-child(6) { bottom: 30%; right: 15%; animation-delay: 10s; }
.floating-food-icons i:nth-child(7) { top: 80%; right: 5%; animation-delay: 12s; }
.floating-food-icons i:nth-child(8) { bottom: 10%; left: 20%; animation-delay: 14s; }
.floating-food-icons i:nth-child(9) { top: 30%; left: 25%; animation-delay: 16s; }
.floating-food-icons i:nth-child(10) { bottom: 40%; right: 25%; animation-delay: 18s; }

@keyframes floatFood {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Badge de impacto */
.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(239, 68, 68, 0.8);
    }
}

/* Título principal */
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fbbf24, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Alerta de urgência */
.hero-urgent-message {
    margin-bottom: 3rem;
}

.urgent-alert {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(239, 68, 68, 0.2);
    padding: 1rem 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--crisis-red);
    backdrop-filter: blur(10px);
}

.urgent-alert i {
    color: var(--crisis-red);
    font-size: 1.5rem;
}

/* Estatísticas premium */
.hero-stats-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1000px;
}

.hero-stat-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);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.hero-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
}

.stat-icon {
    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;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* CTA Premium */
.hero-cta-premium {
    max-width: 800px;
    margin: 3rem auto 0;
}

.cta-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border-left: 4px solid #10b981;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.cta-message i {
    color: #10b981;
    font-size: 1.5rem;
}

.cta-message strong {
    color: #10b981;
}

.cta-buttons-hero {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

/* Scroll Indicator Premium */
.scroll-indicator-premium {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    border-bottom: 3px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* ========================================= */
/* SEÇÃO URGÊNCIA DA FOME - SUPER MELHORADA */
/* ========================================= */

.urgency-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #991b1b 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.urgency-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  animation: pulse-urgent 2s infinite;
}

/* TIMELINE INTERATIVA */
.urgency-timeline {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem 0;
}

.timeline-progress {
  position: absolute;
  top: calc(70px + 1.5rem + 2.5rem + 0.75rem);
  left: 5%;
  right: 5%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #f97316 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 100%);
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.timeline-item {
  text-align: center;
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 1rem;
}

.timeline-item.active .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.timeline-marker {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  color: white;
}

.timeline-item[data-step="1"] .timeline-marker {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.timeline-item[data-step="2"] .timeline-marker {
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.6), 0 0 40px rgba(239, 68, 68, 0.4);
}

.timeline-item[data-step="3"] .timeline-marker {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.timeline-content {
  position: relative;
}

.timeline-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.timeline-item[data-step="1"] .timeline-content h3 {
  color: #f97316;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #f97316;
}

.timeline-item[data-step="2"] .timeline-content h3 {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
}

.timeline-item[data-step="3"] .timeline-content h3 {
  color: #fbbf24;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fbbf24;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.timeline-stats {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* COMPARAÇÃO VISUAL IMPACTANTE */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 4rem auto;
  align-items: center;
}

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

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

.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-vs {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* ANIMAÇÕES DE COMPARAÇÃO */
.waste-animation,
.hunger-animation {
  position: relative;
  height: 120px;
  margin-bottom: 1rem;
}

.food-item,
.person {
  position: absolute;
  font-size: 2rem;
  animation: fallDown 3s infinite;
  animation-delay: var(--delay);
}

.trash-bin,
.empty-plate {
  position: absolute;
  bottom: 0;
  font-size: 3rem;
}

.trash-bin {
  right: 20%;
}

.empty-plate {
  left: 20%;
}

@keyframes fallDown {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(80px) rotate(360deg);
    opacity: 0;
  }
}

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

/* IMPACTO IMEDIATO */
.immediate-impact {
  max-width: 900px;
  margin: 4rem auto;
  text-align: center;
}

.impact-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.impact-immediate-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.impact-immediate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px 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: white;
}

.impact-meter {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin-top: 1rem;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hope-green), #3b82f6);
  border-radius: 3px;
  transition: width 1s ease;
}

/* URGENCY CTA */
.urgency-cta {
  max-width: 800px;
  margin: 4rem auto 0;
  text-align: center;
}

.urgency-message {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(239, 68, 68, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--crisis-red);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.message-icon {
  font-size: 3rem;
  color: var(--crisis-red);
}

.message-content h3 {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.urgency-highlight {
  font-size: 1.25rem;
  color: var(--warning-yellow);
}

.urgency-btn {
  background: linear-gradient(135deg, var(--crisis-red), var(--urgent-orange));
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.urgency-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

.pulse-urgent {
  animation: pulse-urgent 2s infinite;
}

@keyframes pulse-urgent {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.8);
  }
}

/* ========================================= */
/* SEÇÕES ORIGINAIS (MANTIDAS) */
/* ========================================= */

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

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

.benefit-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) !important;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefit-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.benefit-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.9rem;
}

.benefit-features i {
  color: var(--primary-blue);
  font-size: 0.875rem;
}

/* Impact Section */
.impact-section {
  padding: 5rem 0;
  background: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #f3f4f6;
  position: relative;
}

.impact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
  transition: width 0.4s ease;
}

.impact-card:hover::after {
  width: 100%;
}

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

.impact-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-blue);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.impact-card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-left: 6px solid var(--primary-red) !important;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.1);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--primary-red) !important;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  margin-bottom: 1rem;
}

.testimonial-card:hover .testimonial-quote i {
  opacity: 0.4;
}

.testimonial-text {
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: #1f2937;
  font-weight: 600;
}

.author-info span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Reasons Section */
.reasons-section {
  padding: 5rem 0;
  background: white;
}

.reasons-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reason-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.reason-item:hover {
  border-color: var(--primary-blue);
  background: white !important;
  transform: translateX(15px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.reason-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red)) !important;
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.reason-item:hover .reason-number {
  transform: scale(1.1) rotate(5deg);
}

.reason-content {
  flex: 1;
}

.reason-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.reason-content p {
  color: #6b7280;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 50%, var(--primary-blue) 100%) !important;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
      radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)) !important;
    border: none !important;
    transition: all 0.3s ease !important;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent !important;
    border: 2px solid white !important;
    transition: all 0.3s ease !important;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: white !important;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.share-cause-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-cause-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* ========================================= */
/* MODAL DE DOAÇÃO */
/* ========================================= */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    color: #1f2937;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ef4444;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.modal-header h3 {
    color: #ef4444;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.donation-option {
    padding: 1.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.donation-option.active {
    border-color: #ef4444;
    background: #fef2f2;
    transform: translateY(-2px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.donation-action {
    padding: 0 2rem 2rem;
}

.btn-confirm-donation {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-confirm-donation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

/* ========================================= */
/* BOTÕES FLUTUANTES */
/* ========================================= */

.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

/* ========================================= */
/* ANIMAÇÕES GLOBAIS */
/* ========================================= */

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Animações de Scroll */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-child] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================= */
/* RESPONSIVIDADE */
/* ========================================= */

@media (max-width: 768px) {
    .porque-doar-hero .hero-title {
        font-size: 2.5rem;
    }

    .porque-doar-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats-premium {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stats-premium .stat-number {
        font-size: 2.5rem;
    }

    .benefits-grid,
    .impact-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-vs {
        order: -1;
        margin: 1rem 0;
    }

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

    .reason-item:hover {
        transform: translateY(-5px);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons,
    .cta-buttons-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .urgency-stats {
        grid-template-columns: 1fr;
    }

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

    .timeline-items {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-progress {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .timeline-progress::after {
        width: 100%;
        height: 33.33%;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

    .cta-message {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .urgent-alert {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .porque-doar-hero {
        min-height: 90vh;
        padding: 5rem 0 3rem;
    }

    .porque-doar-hero .hero-title {
        font-size: 2rem;
    }

    .porque-doar-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .benefit-card,
    .impact-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .hero-stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .floating-action {
        bottom: 1rem;
        right: 1rem;
    }

    .urgency-btn,
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animações do Animate.css customizadas */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

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

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

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

/* Estilos para elementos dinâmicos */
.donation-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    animation: slideInRight 0.5s ease;
    max-width: 300px;
}

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

.stats-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    z-index: 1000;
    max-width: 300px;
    font-size: 0.875rem;
    animation: fadeIn 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* ========================================= */
/* BENEFÍCIOS PREMIUM - ESTILOS SUPERIORES */
/* ========================================= */

.benefits-section-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #991b1b 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.benefits-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Timeline de Benefícios */
.benefits-timeline {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
}

.timeline-progress-benefits {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress-benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transition: width 0.5s ease;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-step.active .step-marker {
    transform: scale(1.2);
    background: linear-gradient(135deg, #10b981, #3b82f6);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.step-marker {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Grid de Benefícios Premium */
.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 4rem auto;
}

.benefit-card-premium {
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.benefit-card-premium:hover .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card-front {
    background: rgba(255, 255, 255, 0.1);
}

.benefit-card-back {
    background: rgba(16, 185, 129, 0.15);
    transform: rotateY(180deg);
    border-color: rgba(16, 185, 129, 0.4);
}

.benefit-icon-premium {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.benefit-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card-front p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.benefit-card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.benefit-card-back ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.benefit-card-back li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.benefit-card-back i {
    color: #10b981;
    font-size: 0.8rem;
}

.impact-stats {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.impact-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Calculadora de Impacto */
.impact-calculator {
    max-width: 800px;
    margin: 4rem auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calculator-controls {
    margin-bottom: 2.5rem;
}

.input-group {
    text-align: center;
}

.input-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-group input[type="range"] {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 10px;
    height: 8px;
}

#amountValue {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fbbf24;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.result-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Estatísticas em Tempo Real */
.live-stats {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.live-stats h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fbbf24, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.live-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.live-stat-icon {
    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;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.live-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.live-stat-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.live-stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #10b981;
}

/* CTA Final */
.benefits-cta {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons-benefits {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-benefit-primary {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-benefit-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.btn-benefit-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

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

/* Animações específicas */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-grid-premium {
        grid-template-columns: 1fr;
    }

    .benefit-card-premium {
        height: 300px;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-progress-benefits {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .timeline-progress-benefits::after {
        width: 100%;
        height: 25%;
    }

    .calculator-results {
        grid-template-columns: 1fr;
    }

    .cta-buttons-benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .impact-calculator {
        padding: 2rem 1.5rem;
    }

    .benefit-card-back ul {
        text-align: center;
    }

    .benefit-card-back li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .benefits-section-premium {
        padding: 4rem 0;
    }

    .benefit-card-premium {
        height: 280px;
    }

    .benefit-card-front,
    .benefit-card-back {
        padding: 2rem 1.5rem;
    }

    .benefit-icon-premium {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .calculator-header h3 {
        font-size: 1.5rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }
}