/* DESABILITA MODO LEITURA - FORÇA TOTAL */
html, body {
    -webkit-reading-mode: none !important;
    reading-mode: none !important;
    data-reading-mode: disabled !important;
}

html *, body * {
    -webkit-reading-mode: none !important;
    reading-mode: none !important;
}

/* Remove TODOS os banners de modo leitura */
[class*="reader"],
[id*="reader"],
[class*="reading"],
[id*="reading"],
[class*="read-mode"],
[id*="read-mode"],
[class*="immersive"],
[id*="immersive"],
[class*="read-aloud"],
[id*="read-aloud"],
[aria-label*="reader"],
[aria-label*="reading"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -9999 !important;
}

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Otimizações de Performance para Imagens */
img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    /* Otimizações de performance */
    will-change: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Transição suave para carregamento */
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efeito de carregamento para imagens */
img:not(.loaded) {
    opacity: 0.8;
    filter: blur(1px);
}

img.loaded {
    opacity: 1;
    filter: blur(0);
}

/* Skeleton loading para imagens dos carrosséis */
.transformation-images img:not(.loaded),
.testimonial-image img:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Preload de imagens críticas */
.banner-image,
.header-logo-img {
    priority: high;
    will-change: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Otimização específica para logo e banner */
.header-logo-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.banner-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* Remove animação quando imagem carrega */
.header-logo-img[src],
.banner-image[src] {
    animation: none;
    background: none;
}

html, body {
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Desabilitar detecção automática de telefones no iOS */
a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Desabilitar detecção automática de telefones no iOS */
.location-details p {
    color: var(--gray-text) !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
}

/* Desabilitar completamente a detecção de telefones */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permitir seleção de texto no footer */
.footer-section p,
.footer-section a {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    color: var(--white) !important;
}

:root {
    /* Cores baseadas na logo e referências */
    --primary-orange: #F26C9D;
    --primary-green: #4CAF50;
    --dark-green: #2E7D32;
    --light-orange: #FFB74D;
    --cream: #FFF8E1;
    --white: #FFFFFF;
    --dark-text: #2C2C2C;
    --gray-text: #666666;
    --light-gray: #F5F5F5;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
      --accentA:#b3e5fc;   /* azul da paleta */
  --accentB:#ffeff4;   /* rosa da paleta */
  --bg:#0e1221;        /* fundo escuro elegante */
  --surface:#ffffff;   /* cartão da logo */
  --radius:16px;
    --pink:#F26C9D;     /* cor do header */
  --white:#ffffff;    /* círculo da logo */
  --blue:#b3e5fc;     /* detalhe opcional */
  --rose:#ffeff4;     /* detalhe opcional */
    
    /* Tipografia */
    --font-family: 'Poppins', sans-serif;
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --body-size: 1rem;
    --small-size: 0.875rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header mais baixo */
.site-header{
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  box-shadow: 0 8px 24px rgba(53,122,189,.25);
  margin-bottom: 0;                  /* removido espaço entre header e banner */
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho sutil no header */
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.site-header__accent{ height:1px; }  /* linha mais fininha */

.site-header__in{
  max-width:1100px; margin:auto;
  min-height:12px;                   /* altura mínima */
  padding:1px 12px;                  /* padding mínimo */
  display:flex; align-items:center; justify-content:center; gap:12px;
  position: relative;
  z-index: 1;
}

/* Logo sem círculo */
.brand-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.brand-logo img{
  width: 100px;
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.15));
  pointer-events: none;
}

/* Responsivo */
@media (min-width:768px){
  .site-header__in{ 
    min-height:20px; 
    padding:1px 20px;
  }
  .brand-logo img{ width: 110px; }
  
  .banner-image {
    min-height: 350px;
  }
}
@media (min-width:1024px){
  .site-header__in{ 
    min-height:22px; 
    padding:1px 25px;
  }
  .brand-logo img{ width: 120px; }
  
  .banner-image {
    min-height: 400px;
  }
}

/* Otimizações específicas para mobile */
@media (max-width: 767px) {
  .site-header__in{ 
    min-height:25px; 
    padding:1px 10px;
  }
  .brand-logo img{ 
    width: 90px; 
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.2));
  }
  
  .banner-image {
    min-height: 250px;
  }
}
/* Banner Principal */
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
}

.banner-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: translateZ(0);
}

.banner-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transform: translateZ(0);
    will-change: transform;
}

/* Seções principais */
.main-content {
    background: linear-gradient(135deg, #F5F0E8 0%, #FDF8F0 100%);
    position: relative;
    z-index: 1;
}

section {
    padding: 25px 0 20px;
}

.section-title {
    font-size: var(--h2-size);
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    border-radius: 2px;
}

/* Seção do Vídeo */
.video-section {
    background: #E3F2FD;
    padding: 25px 0 20px;
    position: relative;
    z-index: 1;
}

/* Video - Visual do esperanca-do-bem */
.video-title {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.video-title h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.2);
    letter-spacing: 1px;
}

.video-title p {
    font-size: 18px;
    font-weight: 600;
    color: #4A90E2;
    margin: 0;
    text-shadow: 0 1px 5px rgba(74, 144, 226, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .video-section {
        padding: 15px 0;
    }
    
    .video-title {
        padding: 0 20px;
        margin-bottom: 15px;
    }
    
    .video-title h2 {
        font-size: 26px;
    }
    
    .video-title p {
        font-size: 16px;
    }
    
    .video-wrapper {
        touch-action: manipulation;
        border-radius: 0;
        margin: 0 -20px;
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
    }
    
    .hero-video {
        -webkit-playsinline: true;
        playsinline: true;
    }
}

.crisis-section {
    background: linear-gradient(to bottom, #fff5f8 0%, #fde4ec 50%, #f8fafc 100%);
    padding: 35px 0;
    position: relative;
}

.crisis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ec4899, transparent);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.25);
}

.crisis-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.18);
    text-align: center;
    border: 1px solid rgba(236, 72, 153, 0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.crisis-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), transparent 55%);
    pointer-events: none;
}

.crisis-intro {
    font-size: 1.15rem;
    color: #1e3a8a;
    font-weight: 600;
}

.crisis-highlight {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 18px;
    padding: 20px 25px;
    color: #442343;
    font-size: 1.05rem;
    line-height: 1.6;
}

.crisis-testimony {
    color: var(--gray-text);
    font-size: 1rem;
    font-weight: 500;
}

.crisis-quote {
    font-size: 1.4rem;
    color: #ec4899;
    font-weight: 700;
    font-style: italic;
}

.crisis-card .transformation-cta-btn {
    margin-top: 10px;
    padding: 20px 48px;
}

@media (max-width: 768px) {
    .crisis-card {
        padding: 30px 20px;
        gap: 16px;
    }

    .crisis-intro {
        font-size: 1.05rem;
    }

    .crisis-highlight {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .crisis-quote {
        font-size: 1.25rem;
    }

    .crisis-card .transformation-cta-btn {
        width: 100%;
    }
}

/* Botão CTA após o vídeo */
.video-cta-container {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.video-cta-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: var(--h4-size);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 13px;
}

.video-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.video-cta-btn:active {
    transform: translateY(-1px);
}

/* Seção Meta de Doação */
.donation-goal-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #F3FAFF 50%, #B3E5FC 100%);
    padding: 25px 0 20px;
    text-align: center;
    position: relative;
    margin-top: 0;
}

/* Linha separadora no topo da seção */
.donation-goal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

/* Mensagens de doação */
.donation-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.donation-message {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.donation-message.show {
    transform: translateX(0);
    opacity: 1;
}

.donation-message.hide {
    transform: translateX(100%);
    opacity: 0;
}

.goal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.goal-header {
    margin-bottom: 30px;
    margin-top: 20px;
}

.goal-title {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.goal-subtitle {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.4;
}

.goal-subtitle strong {
    font-weight: 700;
    color: var(--dark-text);
}

.goal-progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    gap: 30px;
}

.goal-stats {
    flex: 1;
    text-align: left;
}

.goal-amount {
    margin-bottom: 15px;
}

.amount-raised {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #F26C9D;
    line-height: 1;
}

.amount-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 5px;
}

.goal-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.goal-target {
    font-size: 0.9rem;
    color: #4CAF50;
    text-decoration: underline;
}

.donations-count {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.circular-progress-small {
    position: relative;
    flex-shrink: 0;
}

.progress-ring-small {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.5s ease-in-out;
    stroke-linecap: round;
}

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

.progress-percentage-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
}


/* Carrossel Quem Somos */
.about-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 32px var(--shadow);
}

.about-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-slide.active {
    display: block;
    opacity: 1;
}

.about-slide-content {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    min-height: 300px;
}

.about-slide-image {
    flex: 1;
    min-height: 300px;
}

.about-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slide-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-slide-text h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-slide-text p {
    font-size: var(--body-size);
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.about-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.about-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-btn:hover {
    background: var(--dark-orange);
    transform: scale(1.1);
}

.about-indicators {
    display: flex;
    gap: 10px;
}

.about-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
    width: 14px;
    height: 14px;
}

.about-complementary-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-complementary-text p {
    font-size: var(--body-size);
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-complementary-text p:last-child {
    margin-bottom: 0;
}

/* Mensagem motivacional após controles */
.about-message {
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
    padding: 0 20px 20px;
}

.about-message p {
    font-size: 1.1rem;
    color: #325199;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* Seção Impacto - Texto introdutório */
.impact-intro {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.impact-intro p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.impact-intro .highlight-number,
.urgent-message .highlight-number {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.2em;
}

.video-wrapper {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

/* Seção Quem Somos */
.about-section {
    background: linear-gradient(to bottom, #B3E5FC 0%, #F3FAFF 50%, #f8fafc 100%);
    padding: 25px 0 20px;
    margin-bottom: 0;
}

.about-content {
    text-align: center;
    margin-bottom: 40px;
}

.about-content p {
    font-size: var(--body-size);
    margin-bottom: 20px;
    color: var(--gray-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F0 100%);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 139, 61, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-orange);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-item:hover .stat-icon {
    color: var(--primary-green);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Estilo para o recebedor PIX */
.pix-recipient {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

/* Seção Salve o Abrigo */
.save-shelter-section {
    background: #f8fafc;
    text-align: center;
    padding: 25px 0 20px;
    position: relative;
}

/* Linha separadora no topo da seção Salve o Abrigo */
.save-shelter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.save-message {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.save-story {
    background: linear-gradient(135deg, rgba(179, 229, 252, 0.3) 0%, rgba(250, 242, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.12);
    position: relative;
    overflow: hidden;
}

.save-story::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(242, 108, 157, 0.18) 0%, transparent 70%);
}

.save-story-label {
    display: inline-block;
    background: #1e3a8a;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.save-story-text {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.8;
    margin: 0;
}

.save-spotlight {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.save-spotlight-card {
    flex: 1 1 240px;
    max-width: 260px;
    background: var(--white);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 12px 22px rgba(74, 144, 226, 0.12);
    border: 1px solid rgba(74, 144, 226, 0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

.save-spotlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    text-transform: uppercase;
}

.save-spotlight-text {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.save-story-footnote {
    border-radius: 18px;
    padding: 18px 22px;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    background: linear-gradient(135deg, rgba(179, 229, 252, 0.35) 0%, rgba(242, 108, 157, 0.12) 100%);
    border: 1px solid rgba(74, 144, 226, 0.25);
}

.save-story-footnote p {
    margin: 0;
}

@media (max-width: 768px) {
    .save-message {
        gap: 20px;
    }

    .save-story {
        padding: 20px;
    }

    .save-spotlight {
        gap: 16px;
    }

    .save-spotlight-card {
        flex: 1 1 160px;
        max-width: none;
    }

    .save-spotlight-text {
        font-size: 0.9rem;
    }
}

/* Seção Impacto da Doação - Seção separada */
.impact-donation-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #B3E5FC 100%);
    text-align: center;
    padding: 25px 0 20px;
    position: relative;
}

/* Linha separadora no topo da seção de impacto */
.impact-donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

/* Estilo específico para a nova seção de impacto */
.impact-donation-section .impact-section {
    background: transparent;
    padding: 20px;
}

.impact-donation-section .impact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.banner2-container {
    margin-bottom: 30px;
}

.banner2-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px var(--shadow);
}

.urgent-message h3 {
    color: #1e3a8a;
    font-size: var(--h3-size);
    margin-bottom: 15px;
    font-weight: 600;
}

.urgent-message p {
    font-size: var(--body-size);
    color: var(--gray-text);
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary-green) !important;
    font-weight: 600;
    font-size: 1.1rem !important;
}

/* Seção Impacto */
.impact-section {
    margin-top: 0;
    padding: 30px;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.save-shelter-section .impact-section {
    margin-top: 40px;
    padding: 30px;
    background: #B4E5FB;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 229, 251, 0.6);
}

.impact-section h3 {
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 30px;
    font-size: var(--h3-size);
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.impact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.impact-value {
    background: #325199;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 85px;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(50, 81, 153, 0.3);
}

.impact-description {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.impact-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #325199;
    font-weight: 600;
    line-height: 1.6;
}


@media (min-width: 768px) {
    .save-shelter-section .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .impact-donation-section .impact-grid {
        max-width: 700px;
    }
    
    .save-shelter-section .impact-item {
        padding: 20px;
    }
    
    .impact-description {
        font-size: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .save-shelter-section .impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .impact-donation-section .impact-grid {
        max-width: 750px;
    }
    
    .save-shelter-section .impact-item {
        padding: 25px;
    }
    
    .impact-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .impact-item {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .impact-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .impact-value {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 75px;
    }
    
    .impact-donation-section .impact-grid {
        gap: 12px;
    }
}

/* Seção Doação PIX */
.donation-section {
   background: linear-gradient(to bottom, #1E3A8A 0%, #B3E5FC 100%);
    color: var(--white);
    overflow: visible !important;
    position: relative !important;
    padding: 25px 0 20px;
}

.donation-section .section-title {
    color: var(--white);
}

.donation-section .section-title::after {
    background: var(--white);
}

.pix-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    position: relative !important;
}

.pix-logo {
    text-align: center;
    margin-bottom: 20px;
}

.pix-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.pix-instructions {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.pix-instructions h3 {
    margin-bottom: 15px;
    color: var(--cream);
}

.pix-instructions ol {
    padding-left: 20px;
}

.pix-instructions li {
    margin-bottom: 8px;
    color: var(--cream);
}

.pix-key-container {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pix-key {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    word-break: break-all;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: var(--body-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 139, 61, 0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 139, 61, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 1.2rem;
}

.pix-image {
    text-align: center !important;
    margin: 30px 0 !important;
    width: 100% !important;
    overflow: visible !important;
    position: relative !important;
    display: block !important;
}

.pix-qr {
    max-width: 300px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center !important;
    /* Garantir que a imagem seja exibida corretamente */
    min-width: 0 !important;
    min-height: 0 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.donation-values {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.donation-values h3 {
    margin-bottom: 20px;
    color: var(--cream);
    text-align: center;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.value {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--small-size);
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
}

.description {
    color: var(--cream);
    font-size: var(--small-size);
    line-height: 1.4;
}

.donation-footer {
    text-align: center;
    font-style: italic;
    color: #000;
    font-size: var(--small-size);
}

/* Seção Histórias de Transformação */
.transformation-section {
    background: #f8fafc;
    padding: 25px 0 20px;
}

.transformation-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: var(--body-size);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.transformation-card {
    background: #B4E5FB;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.transformation-images {
    margin-bottom: 25px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-label {
    background: rgba(255, 139, 61, 0.9);
    color: var(--white);
}

.after-label {
    background: rgba(76, 175, 80, 0.9);
    color: var(--white);
}

.transformation-content h3 {
    color: #1e3a8a;
    font-size: var(--h3-size);
    margin-bottom: 15px;
    font-weight: 600;
}

.transformation-content p {
    color: #325199;
    line-height: 1.6;
    font-size: var(--body-size);
}

.transformation-message {
    text-align: center;
    padding: 20px 0;
}

.transformation-message p {
    color: var(--gray-text);
    font-size: var(--body-size);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsividade para transformações */
@media (min-width: 768px) {
    .transformation-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
    }
    
    .transformation-card {
        padding: 40px;
    }
    
    .before-after {
        gap: 20px;
    }
}

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

/* ===== NOVA SEÇÃO DE TRANSFORMAÇÕES (ANTES NO ABRIGO E DEPOIS NO NOVO LAR) ===== */
.new-transformation-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #F3FAFF 100%);
    padding: 25px 0 20px;
    position: relative;
}

/* Linha separadora no topo */
.new-transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.new-transformation-subtitle {
    text-align: center;
    color: #325199;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrossel */
.new-transformation-carousel {
    position: relative;
    max-width: 450px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 20px;
    min-height: 250px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.new-transformation-carousel:active {
    cursor: grabbing;
}

.new-transformation-item {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.new-transformation-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.new-transformation-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.new-transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.new-transformation-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.new-transformation-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Controles do carrossel */
.new-transformation-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.new-transformation-btn {
    background: #4A90E2;
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.new-transformation-btn:hover {
    background: #357ABD;
    transform: scale(1.1);
}

.new-transformation-indicators {
    display: flex;
    gap: 10px;
}

.new-transformation-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-transformation-indicator.active {
    background: #4A90E2;
    transform: scale(1.3);
    width: 14px;
    height: 14px;
}

.new-transformation-message {
    text-align: center;
    margin-top: 30px;
}

.new-transformation-message p {
    color: #325199;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Responsivo */
@media (max-width: 768px) {
    .new-transformation-carousel {
        max-width: 90%;
        min-height: 300px;
    }
    
    .new-transformation-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .new-transformation-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .new-transformation-carousel {
        max-width: 95%;
        min-height: 250px;
    }
    
    .new-transformation-message p {
        font-size: 1rem;
    }
}

/* Seção Depoimentos */
.testimonials-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #F3FAFF 50%, #B3E5FC 100%);
    padding: 25px 0 20px;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-green) 100%);
}

.testimonials-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: var(--body-size);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 20px;
    cursor: grab;
    user-select: none;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    will-change: transform, opacity;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}



.testimonial-card {
    background: var(--primary-orange);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    height: auto;
   
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-image:hover img {
    transform: scale(1.05);
}

.testimonial-content h4 {
    color: var(--white);
    font-size: var(--h3-size);
    margin-bottom: 8px;
    font-weight: 600;
}

.testimonial-content p {
    color: white;
    font-size: var(--body-size);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: nowrap;
}

.testimonial-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 139, 61, 0.3);
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: var(--dark-orange);
    transform: scale(1.1);
}

.testimonial-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 12px;
    min-height: 12px;
}

.testimonial-indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
    width: 14px;
    height: 14px;
}

/* Responsividade para depoimentos */
@media (max-width: 768px) {
    /* Responsividade para seção de meta de doação */
    .goal-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .goal-subtitle {
        font-size: 0.9rem;
    }
    
    .goal-progress-container {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
        max-width: 100%;
    }
    
    .goal-stats {
        text-align: left;
        flex: 1;
    }
    
    .circular-progress-small {
        flex-shrink: 0;
        transform: scale(0.8);
    }
    
    .amount-raised {
        font-size: 1.6rem;
    }
    
    .progress-percentage-small {
        font-size: 1.2rem;
    }
    
    /* Responsividade para carrossel Quem Somos */
    .about-slide-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .about-slide-image {
        min-height: 200px;
    }
    
    .about-slide-text {
        padding: 30px 20px;
    }
    
    .about-slide-text h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .about-slide-text p {
        font-size: 0.95rem;
    }
    
    .about-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .about-indicator {
        width: 10px;
        height: 10px;
    }
    
    .about-indicator.active {
        width: 12px;
        height: 12px;
    }
    
    /* Responsividade para botões de depoimentos */
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-indicator {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-indicator.active {
        width: 12px;
        height: 12px;
    }
    
    /* Responsividade para texto introdutório do impacto */
    .impact-intro p {
        font-size: 1rem;
    }
    
    .impact-intro .highlight-number {
        font-size: 1.1em;
    }
    
    .testimonial-card {
        padding: 25px;

    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;

    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* ===== NOVA SEÇÃO DE DEPOIMENTOS (ESTILO STORIES) ===== */
.new-testimonials-section {
    background: linear-gradient(to bottom, #B3E5FC 0%, #F3FAFF 100%);
    padding: 25px 0 20px;
    position: relative;
}

/* Linha separadora no topo */
.new-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.new-testimonials-subtitle {
    text-align: center;
    color: #325199;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrossel estilo Stories */
.new-testimonials-carousel {
    position: relative;
    max-width: 380px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 25px;
    min-height: 520px;
    cursor: grab;
    user-select: none;
}

.new-testimonials-carousel:active {
    cursor: grabbing;
}

.new-testimonial-item {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.new-testimonial-item.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.new-testimonial-card {
    background: linear-gradient(135deg, #F26C9D 0%, #e85a8f 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(242, 108, 157, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.new-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(242, 108, 157, 0.5);
}

.new-testimonial-image {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.new-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-testimonial-content {
    padding: 25px;
    background: linear-gradient(135deg, #F26C9D 0%, #e85a8f 100%);
    color: var(--white);
    text-align: center;
}

.new-testimonial-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.new-testimonial-content .pet-name {
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.new-testimonial-content .pet-name strong {
    font-weight: 700;
    color: var(--white);
}

.new-testimonial-content .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
}

/* Controles do carrossel */
.new-testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0 10px;
}

.new-testimonials-btn {
    background: #F26C9D;
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(242, 108, 157, 0.4);
}

.new-testimonials-btn:hover {
    background: #e85a8f;
    transform: scale(1.1);
}

.new-testimonials-indicators {
    display: flex;
    gap: 10px;
}

.new-testimonials-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-testimonials-indicator.active {
    background: #F26C9D;
    transform: scale(1.3);
    width: 14px;
    height: 14px;
}

.new-testimonials-message {
    text-align: center;
    margin-top: 15px;
}

.new-testimonials-message p {
    color: #325199;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    .new-testimonials-carousel {
        max-width: 100%;
        min-height: 480px;
    }
    
    .new-testimonial-image {
        height: 280px;
    }
    
    .new-testimonials-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .new-testimonials-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .new-testimonials-carousel {
        min-height: 450px;
    }
    
    .new-testimonial-image {
        height: 260px;
    }
    
    .new-testimonial-content {
        padding: 18px;
    }
    
    .new-testimonial-content h4 {
        font-size: 1.2rem;
    }
    
    .new-testimonials-message p {
        font-size: 1rem;
    }
}

/* Seção Localização */
.location-section {
    background: linear-gradient(to bottom, #B3E5FC 0%, #F3FAFF 50%, #f8fafc 100%);
}

.location-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: var(--body-size);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.location-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F0 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-details h3 {
    color: var(--dark-text);
    font-size: var(--h4-size);
    margin-bottom: 10px;
    font-weight: 600;
}

.location-details p {
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 5px;
}

.location-details small {
    color: var(--primary-green);
    font-style: italic;
    font-size: 0.8rem;
}

.navigation-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    width: fit-content;
    min-width: 200px;
    max-width: 300px;
    box-sizing: border-box;
}

.nav-btn.google-maps {
    background: #4285F4;
    color: var(--white);
}

.nav-btn.google-maps:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}



.nav-icon {
    width: 20px;
    height: 20px;
}

.map-container {
    display: grid;
    gap: 25px;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px var(--shadow);
}

.map-info h4 {
    color: #1e3a8a;
    margin-bottom: 5px;
    font-size: 1rem;
}

.map-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

.visit-info {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
}

.visit-info h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: var(--h4-size);
}

.visit-info ul {
    list-style: none;
    padding: 0;
}

.visit-info li {
    color: var(--gray-text);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.visit-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Responsividade para localização */
@media (min-width: 768px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }
    

    
    .map-wrapper iframe {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .location-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-wrapper iframe {
        height: 500px;
    }
    
    .location-content {
        gap: 60px;
    }
}

/* Call to Action */
.cta-section {
    background: #B3E5FC;
    color: var(--white);
    text-align: center;
    padding: 30px 0 25px;
}

.cta-section h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: var(--body-size);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
   color: var(--gray-text);
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer{
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--white);
  padding: 36px 0 20px;
  position: relative;
  box-shadow: 0 -8px 24px rgba(15, 52, 96, 0.3) inset;
}

/* brilho suave no topo do footer */
.footer::before{
  content:"";
  position:absolute; left:0; right:0; top:0; height:10px;
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,0));
  pointer-events:none;
}

.footer-content{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  margin-bottom:28px;
}

/* logo sem círculo no footer */
.footer-brand{
  text-align:center;
}
.brand-logo.footer-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  cursor: default;
}
.brand-logo.footer-logo img{
  width: 100px; 
  height: auto; 
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.10));
  pointer-events: none;
}

.footer-brand h3{
  font-size:1.25rem;
  margin:8px 0 2px;
  color:#ffffff;
}
.footer-tagline{
  opacity:.9; margin:0;
}

/* grid das colunas de info */
.footer-info{
  display:grid;
  grid-template-columns: 1fr;
  gap:20px;
}

.footer-section h4{
  color:#fff;
  margin-bottom:12px;
  font-size:1.05rem;
  font-weight:700;
}

.footer-section p{ margin:6px 0; }

.footer-link{
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition: all .2s ease;
}
.footer-link:hover{
  border-bottom-color: rgba(255,255,255,.8);
}

/* Social (com imagens, sem emojis) */
.social-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.social-link{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none; color:#fff;
  background: rgba(255,255,255,.12);
  transition: transform .15s ease, background .2s ease;
}
.social-link:hover{ background: rgba(255,255,255,.18); transform: translateY(-1px); }
.social-link img{
  width:22px; height:22px; display:block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}

/* base do footer */
.footer-bottom{
  text-align:center;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.35);
}
.footer-bottom p{
  margin:6px 0; font-size:.9rem; color:#fff;
}

/* ===== Responsivo ===== */
@media (min-width:768px){
  .footer-content{
    grid-template-columns: 1fr 2fr;
    align-items:start;
  }
  .footer-info{
    grid-template-columns: repeat(3, 1fr);
    gap:28px;
  }
  .social-links{ flex-direction:row; flex-wrap:wrap; }
}

@media (min-width:1024px){
  .brand-logo.footer-logo img{ width: 120px; }
}
/* Responsividade para mobile */
@media (max-width: 767px) {
    .testimonial-item {
        height: 300px;
        padding: 25px;
    }
    
    .testimonials-carousel {
        height: 300px;
    }
}

/* Responsividade para tablets */
@media (min-width: 768px) {
    .header-logo-img {
        width: 150px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links {
        flex-direction: row;
        gap: 15px;
    }
    
    .testimonial-item {
        padding: 40px;
        height: 350px;
    }
    
    .testimonials-carousel {
        height: 350px;
    }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
    .header-logo-img {
        width: 180px;
    }
    
    .main-header {
        padding: 20px 0;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        text-align: left;
    }
    
    .footer-logo {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-item {
        align-items: center;
    }
    
    .testimonials-carousel {
        max-width: 700px;
    }
    
    .testimonial-item {
        padding: 50px;
        height: 450px;
    }
    
    .testimonials-carousel {
        height: 450px;
    }
}

/* Animações suaves */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Efeitos de hover para elementos interativos */
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}

/* Feedback visual para cópia do PIX */
.copy-success {
    background: var(--primary-green) !important;
    transform: scale(1.05);
}

/* Removido para evitar duplicação do checkmark */

/* Otimizações para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estados de foco para navegação por teclado */
button:focus,
.footer-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}



/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-text {
    display: none;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--dark-text);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: var(--dark-text);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

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

/* Responsividade do WhatsApp */
@media (min-width: 768px) {
    .whatsapp-btn {
        padding: 12px 18px;
    }
    
    .whatsapp-text {
        display: inline;
    }
    
    .whatsapp-btn {
        border-radius: 30px;
    }
}

/* Melhorias para telas pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        width: 60px;
    }
    
    .logo-container {
        top: 15px;
        left: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
    
    .pix-key {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .copy-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== CARROSSEL DE TRANSFORMAÇÕES ===== */

.transformation-carousel {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.transformation-carousel:active {
    cursor: grabbing;
}

.transformation-item {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    will-change: transform, opacity;
}

.transformation-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.transformation-item.prev {
    display: block;
    opacity: 0;
    transform: translateX(-100%);
    position: absolute;
}

.transformation-item.next {
    display: block;
    opacity: 0;
    transform: translateX(100%);
    position: absolute;
}

.transformation-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: nowrap;
    width: 100%;
}

.transformation-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 139, 61, 0.3);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.transformation-btn:hover {
    background: var(--dark-orange);
    transform: scale(1.1);
}

.transformation-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.transformation-indicators {
    display: flex;
    gap: 10px;
}

.transformation-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 12px;
    min-height: 12px;
}

.transformation-indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
    width: 14px;
    height: 14px;
}

.transformation-cta-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin-top: 10px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.transformation-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Animação de pulso para os botões */
.pulse-animation {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
}

.pulse-animation:hover {
    animation-play-state: paused;
}



/* ===== REORGANIZAÇÃO DA SEÇÃO DE LOCALIZAÇÃO ===== */

.location-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-info {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.map-container {
    order: 2;
    width: 100%;
}

.location-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.navigation-buttons {
    margin-top: 20px;
}

/* ===== RESPONSIVIDADE PARA O CARROSSEL ===== */

@media (max-width: 768px) {
    .transformation-controls {
        gap: 15px;
    }
    
    .transformation-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .transformation-indicator {
        width: 10px;
        height: 10px;
    }
    
    .transformation-indicator.active {
        width: 12px;
        height: 12px;
    }
    
    .carousel-controls {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .indicator.active {
        width: 14px;
        height: 14px;
    }
    
    .location-content {
        gap: 20px;
    }
    
    .location-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .transformation-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .transformation-controls {
        gap: 10px;
    }
    
    .transformation-indicator {
        width: 8px;
        height: 8px;
    }
    
    .transformation-indicator.active {
        width: 10px;
        height: 10px;
    }
    
    /* Responsividade para botões de depoimentos em telas pequenas */
    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .testimonial-indicator {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-indicator.active {
        width: 10px;
        height: 10px;
    }
    
    /* Responsividade para indicadores de Quem Somos em telas pequenas */
    .about-indicator {
        width: 8px;
        height: 8px;
    }
    
    .about-indicator.active {
        width: 10px;
        height: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-controls {
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 12px;
        height: 12px;
    }
    
    /* Ajustes para imagem PIX em telas pequenas */
    .pix-qr {
        max-width: 250px !important;
    }
    
    .pix-container {
        padding: 20px !important;
    }
    
    /* Ajustes para botão Transformar Mais Vidas em telas pequenas */
    .transformation-cta-btn {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pix-qr {
        max-width: 200px !important;
    }
    
    .pix-container {
        padding: 15px !important;
    }
    
    .pix-image {
        margin: 20px 0 !important;
    }
    
    /* Garantir que o logo do footer fique centralizado em mobile */
    .footer-logo {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ===== Destaque na Mídia ===== */
.media-impact{
  background: linear-gradient(to bottom, #B3E5FC 0%, #F3FAFF 50%, #f8fafc 100%);
  padding: 28px 0;
}
.media-impact__in{
  max-width: 880px;      /* deixa enxuto no desktop */
  margin: 0 auto;
  padding: 0 16px;
}
.media-impact__title{
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: clamp(20px, 3.8vw, 28px);
  color: #1e3a8a;
  margin: 0 0 16px;
}
.media-impact .accent{ color:#1e3a8a; }
.media-impact__lead{
  text-align: center;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 18px;
}
.news-card{
  background:#fff;
  border: 1px solid rgba(17,24,39,.06);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(2,6,23,.08);
  margin: 12px auto 18px;
}
.news-card img{
  display:block;
  width:100%;
  height:auto;
}
.media-impact__cta{
  text-align:center;
  font-size: 15px;
  line-height: 1.7;
color: var(--gray-text);
}
.media-impact__cta .emph{
  margin-top: 6px;
  font-weight: 800;
  color:#1e3a8a;              /* um pouco mais vibrante para a última linha */
}

/* pequenos ajustes em telas maiores */
@media (min-width: 880px){
  .media-impact{ padding: 40px 0; }
  .media-impact__lead{ font-size: 16px; }
}
:root{
  --icon-color:#fff;               /* cor dos ícones no rosa */
}

.si{
  width:22px; height:22px; display:inline-block; flex:0 0 22px;
  background-color: var(--icon-color);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}

/* URLs online dos logos */
.si-fb{ -webkit-mask-image: url('../images/facebook.svg'); mask-image: url('../images/facebook.svg'); }
.si-ig{ -webkit-mask-image: url('../images/instagram.svg'); mask-image: url('../images/instagram.svg'); }
.si-tk{ -webkit-mask-image: url('../images/tiktok.svg'); mask-image: url('../images/tiktok.svg'); }

/* Estilo dos links sociais (mantém seu layout) */
.social-links{ display:flex; flex-direction:column; gap:10px; }
.social-link{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:12px; text-decoration:none; color:#fff;
  background: rgba(255,255,255,.12);
  transition: transform .15s ease, background .2s ease;
}
.social-link:hover{ background: rgba(255,255,255,.18); transform: translateY(-1px); }

/* Responsivo */
@media (min-width: 768px){
  .social-links{ flex-direction:row; flex-wrap:wrap; }
}
.footer-link span{ display:block; line-height:1.15; }
.footer-link{
  display:block;
  margin:6px 0;
}

/* ===== DONATION MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.donation-modal .modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 380px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    position: relative;
    min-height: 300px;
}

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

.modal-header {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: bold;
}

.close {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
    position: absolute;
    right: 20px;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 20px;
    background: #f5f5f5;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.donation-option {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
    text-align: center;
}

.donation-option:hover {
    border-color: #ec4899;
    background: #fef7f7;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(236, 72, 153, 0.15);
}

.donation-option.selected {
    border-color: #ec4899;
    background: #fef7f7;
    box-shadow: 0 3px 10px rgba(236, 72, 153, 0.2);
}

.option-value {
    font-size: 1rem;
    font-weight: bold;
    color: #1e3a8a;
}

.custom-amount-section {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 15px;
    margin-top: 20px;
    background: #f8fafc;
}

.custom-amount-section .pix-label {
    text-align: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
}

#customAmount {
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    background: white;
    width: 100%;
    margin-bottom: 12px;
    box-sizing: border-box;
    font-weight: 500;
    color: #1f2937;
}

#customAmount:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

#customAmount::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.continue-button {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continue-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* ===== MODAL DE DOAÇÃO - ETAPA 2 ===== */
.donation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.donation-modal.show {
    display: flex !important;
}

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

.donation-step {
    display: none;
    width: 100%;
}

#donationStep1 {
    display: block;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.donation-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 12px;
    font-size: 17px;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.donation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.5s ease;
}

.donation-btn:hover {
    border-color: #ec4899;
    background: linear-gradient(135deg, #fef7f7, #ffffff);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.donation-btn:hover::before {
    left: 100%;
}

.donation-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.donation-btn.selected {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    border-color: #ec4899;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.custom-donation {
    text-align: center;
    margin-bottom: 20px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: none !important;
}

/* Garantir que custom-donation NUNCA tenha borda */
.custom-donation:focus,
.custom-donation:focus-within,
.custom-donation:has(input:focus),
.custom-donation:has(.input-container:focus-within) {
    border: none !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.custom-donation p {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-donation .heart {
    font-size: 18px;
    animation: heartbeat 2s infinite;
}

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

.input-container {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
}

.input-container:focus-within {
    border-color: #ec4899;
    background: white;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.currency-symbol {
    color: #6b7280;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 12px;
    border-right: 1px solid #e5e7eb;
    border: none !important;
    outline: none !important;
    display: flex;
    align-items: center;
    line-height: 24px;
}

.custom-donation input {
    flex: 1;
    padding: 12px 16px;
    border: none !important;
    background: transparent !important;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-align: left;
    outline: none !important;
    box-shadow: none !important;
    line-height: 24px;
    margin: 0;
    vertical-align: baseline;
}

.custom-donation input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.custom-donation input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.modal-footer {
    padding: 0 20px 20px;
    background: white;
}

.donate-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.donate-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Estilos para etapa 2 - Formulário de dados */
.selected-amount-display {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.selected-amount-display .amount-value {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input[type="text"]:disabled {
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.input-with-checkbox {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ec4899;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

.back-btn {
    width: 100%;
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.back-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

/* Loading no Modal - DESIGN CORRIGIDO */
.donation-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    z-index: 1000;
    margin: 0 !important;
    padding: 0 !important;
}

/* Quando o loading está ativo, o modal-content fica transparente */
.modal-content:has(.donation-loading[style*="display: flex"]) {
    background: transparent !important;
}


.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px auto;
    display: block !important;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    filter: none !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    text-align: center;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 5;
    padding: 0 !important;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid white;
    border-right: 6px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px auto;
    display: block !important;
    position: relative;
    z-index: 20;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
}

.loading-message {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Eliminar qualquer linha branca - EXCETO SPINNER */
.donation-loading *:not(.loading-spinner),
.donation-loading::before,
.donation-loading::after {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Garantir que o spinner mantenha suas propriedades */
.loading-spinner {
    border: 6px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 6px solid white !important;
    border-right: 6px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.loading-box {
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

/* Responsividade do Loading */
@media (max-width: 768px) {
    .loading-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto 35px auto;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
        border-width: 5px;
        margin-bottom: 25px;
    }
    
    .loading-message {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        width: 90px;
        height: 90px;
        margin: 0 auto 30px auto;
    }
    
    .loading-spinner {
        width: 45px;
        height: 45px;
        border-width: 5px;
        margin-bottom: 20px;
    }
    
    .loading-message {
        display: none !important;
    }
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsividade do Modal de Doação */
@media (max-width: 480px) {
    .donation-modal .modal-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .donation-modal .modal-header {
        padding: 15px;
    }
    
    .donation-modal .modal-header h2 {
        font-size: 18px;
    }
    
    .donation-grid {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .donation-btn {
        padding: 14px 10px;
        font-size: 16px;
    }
    
    .custom-donation {
        padding: 14px;
        margin-bottom: 16px;
    }
    
    .custom-donation p {
        font-size: 13px;
    }
    
    .donate-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .modal-footer {
        padding: 0 16px 16px;
    }
    
    .selected-amount-display {
        padding: 10px 14px;
    }
    
    .selected-amount-display .amount-value {
        font-size: 18px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 10px 14px;
        font-size: 15px;
    }
}

/* ===== PIX SECTION NO MODAL ===== */
.pix-section {
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.pix-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 10px;
    text-align: center;
}

.pix-key-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pix-key-display:hover {
    border-color: #4CAF50;
    background: #f0fdf4;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.pix-email {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 500;
    flex: 1;
}

.pix-copy-icon {
    font-size: 1.1rem;
    color: #4CAF50;
    margin-left: 10px;
}

/* ===== FIXED MOBILE BUTTON ===== */
.fixed-mobile-button {
    display: none !important; /* Oculto por padrão em desktop */
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 500px;
    margin: 0 auto;
    background: var(--primary-green);
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    animation: gentleBounce 3s ease-in-out infinite;
}

.fixed-mobile-button:hover {
    background: #059669;
    animation-play-state: paused;
    transform: translateY(-2px);
    box-shadow: 0 -6px 25px rgba(16, 185, 129, 0.4);
}

.fixed-mobile-button:active {
    animation-play-state: paused;
    transform: translateY(0);
}

/* ===== WHATSAPP BUTTON ADJUSTMENT ===== */
.whatsapp-float {
    bottom: 80px !important; /* Descer o botão do WhatsApp para não sobrepor o botão fixo */
}

/* ===== FOOTER PADDING ===== */
footer {
    padding-bottom: 100px !important; /* Espaço para o botão fixo de largura total */
}

/* ===== RESPONSIVE MODAL ===== */
@media (max-width: 768px) {
    .fixed-mobile-button {
        display: block !important; /* Força exibição em mobile */
        padding: 18px 20px;
        font-size: 17px;
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: none;
        border-radius: 12px;
    }
    
    .donation-modal .modal-content {
        margin: 10px;
        border-radius: 15px;
        max-width: 95%;
    }
    
    .donation-modal .modal-header {
        padding: 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .donation-modal .modal-header h2 {
        font-size: 18px;
    }
    
    .donation-options {
        padding: 15px;
        gap: 10px;
    }
    
    .donation-amount-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .custom-amount {
        padding: 0 15px 15px;
    }
    
    .donate-button {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
        padding: 15px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        bottom: 80px !important; /* Descer o botão do WhatsApp no mobile */
    }
    
    footer {
        padding-bottom: 100px !important; /* Espaço para o botão fixo */
    }
}

@media (max-width: 480px) {
    .donation-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .donation-amount-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .fixed-mobile-button {
        display: block !important; /* Força exibição em mobile pequeno */
        padding: 16px 20px;
        font-size: 16px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        max-width: none;
        border-radius: 10px;
    }
    
    .whatsapp-float {
        bottom: 80px !important;
    }
    
    footer {
        padding-bottom: 100px !important;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Animações para o loading */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

}

}

/* Mobile First - Responsivo */
@media (max-width: 768px) {
    }
    
    }
}

}

}

}

}

@media (max-width: 768px) {
    }
    
    }
    
    }
    
    }
}

}

}

/* Esconde TODOS os controles padrão do vídeo */
}

}

}

}

}

}

}

}

}

}

}

/* Para outros navegadores */
}

    pointer-events: auto;
}

}

/* ===== NOVA SEÇÃO PIX DONATION ===== */
.pix-donation-container {
    max-width: 650px;
    margin: 30px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes highlightCard {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
}

.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.amount-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.amount-btn:hover {
    border-color: #1E3A8A;
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.amount-btn.selected {
    background: #1E3A8A;
    border-color: #1E3A8A;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.amount-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
}


.donate-button-container {
    text-align: center;
    margin-top: 30px;
}

.donate-now-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
    width: 100%;
    max-width: 400px;
}

.donate-now-btn:hover:not(:disabled) {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.donate-now-btn:active:not(:disabled) {
    transform: translateY(0);
}

.donate-now-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #4CAF50;
}

.pix-qr-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.qr-code-wrapper h3 {
    color: #333;
    margin-bottom: 20px;
}

.qr-code-image-container {
    margin: 20px 0;
}

.pix-qr-code {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: white;
}

.pix-instructions-text {
    margin: 20px 0;
    color: #666;
}

.pix-instructions-text p {
    margin: 8px 0;
}

.close-qr-btn {
    background: #ddd;
    color: #333;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

.close-qr-btn:hover {
    background: #bbb;
}

.pix-loading {
    text-align: center;
    padding: 40px;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.pix-error {
    background: #ff4444;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.pix-error button {
    background: white;
    color: #ff4444;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pix-donation-container {
        padding: 25px 20px;
        margin: 20px auto;
    }
    
    .donation-amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .amount-btn {
        padding: 18px 10px;
        font-size: 16px;
    }
    
    .amount-value {
        font-size: 18px;
    }
    
    .donate-now-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .pix-qr-code {
        max-width: 250px;
    }
}
