/* 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: #bfdbfe;
    /* 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: #bfdbfe;
    /* 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, #3b82f6 0%, #1d4ed8 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: #2563eb;
    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: #2563eb;
    border-radius: 2px;
}

/* Seção do Vídeo */
.video-section {
    background: #E3F2FD;
    padding: 25px 0 20px;
    position: relative;
    z-index: 1;
}


/* Seção Informações da Organização */
.organization-info-section {
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

/* Estilos do avatar e byline (copiados do oliveira) */
.hrt-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ddd;
}

.hrt-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    border-radius: 50%;
}

.hrt-avatar-stack {
    display: flex;
    align-items: center;
}

.hrt-avatar-stack-item {
    margin-left: -10px;
}

.hrt-avatar-stack-item:first-child {
    margin-left: 0;
}

.hrt-avatar--large {
    height: 2.5rem;
    width: 2.5rem;
}

.hrt-align-center {
    align-items: center;
}

.hrt-disp-flex {
    display: flex;
}

.hrt-list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hrt-mr-2 {
    margin-right: 0.5rem;
}

.m-campaign-byline {
    margin: 5px 0 10px;
}

.m-campaign-byline-description {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.p-campaign-byline {
    margin: 5px 0 10px;
}

/* Variáveis CSS para org-card */
:root {
    --org-card-bg: #f8fafc;
    --org-card-border: #e5e7eb;
    --org-ink: #0f172a;
    --org-muted: #475569;
    --org-brand: #643c85;
    --org-ok: #16a34a;
    --org-radius: 16px;
    --org-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
}

.org-card {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #ffffff 0%, var(--org-card-bg) 100%);
    border: 1px solid var(--org-card-border);
    border-radius: var(--org-radius);
    padding: 14px 16px;
    box-shadow: var(--org-shadow);
    margin: 14px 0 8px;
}

.org-card__left {
    display: grid;
    gap: 10px;
}

.org-card__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.org-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--org-brand);
    box-shadow: inset 0 0 0 1px rgba(43, 108, 176, 0.15);
}

.org-card__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.org-card__text strong {
    color: var(--org-ink);
    font-weight: 700;
    font-size: 0.92rem;
}

.org-card__text span {
    color: var(--org-muted);
    font-size: 0.9rem;
}

.org-card__cnpj {
    padding: 0;
    margin: 2px 0 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: var(--org-brand);
    font-weight: 800;
    text-align: left;
}

.org-card__cnpj:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.org-card__right {
    display: flex;
    align-items: center;
}

.org-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #065f46;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    padding: 6px 10px;
    border-radius: 999px;
}

@media (max-width: 520px) {
    .org-card {
        padding: 12px;
    }

    .org-card__badge {
        display: none;
    }
}

/* Modal CNPJ */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    pointer-events: none;
}

.modal[aria-hidden="false"],
.modal.show {
    display: block !important;
    pointer-events: auto;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.modal__dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 96vw);
    max-height: 90vh;
    margin: 6vh auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.modal__header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #f8fafc;
}

.modal__header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.modal__close {
    position: relative;
    right: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #f1f5f9;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.modal__close:hover {
    background: #e2e8f0;
    color: #1f2937;
}

.modal__footer {
    padding: 12px 14px;
    border-top: 1px solid #eee;
    border-bottom: none;
}

.modal__body {
    padding: 10px;
    overflow: auto;
}

.modal__body img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.modal__btn {
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 700;
}

/* Seção Doação e Impacto */
.doacao-impacto {
    --di-azul-escuro: #2563eb;
    --di-azul: #643c85;
    --di-azul-claro: #EAF3FF;
    --di-azul-clarissimo: #F6FAFF;
    --di-texto: #1F2937;
    --di-muted: #64748B;
    --di-vermelho: #EF4444;
    --di-verde: #16A34A;
    --di-radius: 16px;
    --di-shadow: 0 8px 22px rgba(30, 58, 138, 0.08);
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    max-width: 100%;
    padding: 10px 0 !important;
}

.doacao-impacto * {
    box-sizing: border-box;
}

.doacao-impacto__wrap {
    padding: 22px 16px;
}

.doacao-impacto__header {
    text-align: center;
    margin: 0 0 8px 0;
}

.doacao-impacto__etapa {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--di-azul-clarissimo);
    color: var(--di-azul-escuro);
    font-weight: 800;
    font-size: 0.9rem;
}

.doacao-impacto__header h2 {
    margin: 8px 0 4px 0;
    color: var(--di-azul-escuro);
    font-weight: 900;
    font-size: 1.35rem;
    line-height: 1.2;
}

.doacao-impacto__header h2 em {
    font-style: normal;
    color: var(--di-muted);
    font-weight: 700;
}

.doacao-impacto__sub {
    margin: 0;
    color: var(--di-muted);
    font-size: 0.95rem;
}

.doacao-impacto__lista {
    list-style: none;
    margin: 14px 0 10px 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.doacao-impacto__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--di-azul-clarissimo);
    border: 1px solid #E2ECFF;
    border-left: 4px solid var(--di-vermelho);
    border-radius: var(--di-radius);
    padding: 10px 12px;
}

.doacao-impacto__item p {
    margin: 0;
    color: var(--di-texto);
    line-height: 1.35;
}

.doacao-impacto__item strong {
    color: #B91C1C;
    font-weight: 800;
}

.doacao-impacto__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    flex: 0 0 34px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.doacao-impacto__ico--neg {
    color: var(--di-vermelho);
}

.doacao-impacto__ico--pos {
    color: var(--di-verde);
}

.doacao-impacto__pos {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EAFBF0;
    border: 1px solid #CFF6DC;
    border-left: 4px solid var(--di-verde);
    border-radius: var(--di-radius);
    padding: 12px 12px;
}

.doacao-impacto__pos p {
    margin: 0;
    color: #14532D;
    font-weight: 600;
}

.doacao-impacto__pos strong {
    color: var(--di-verde);
}

/* Desktop: duas colunas, mantendo mobile perfeito */
@media (min-width: 860px) {
    .doacao-impacto__lista {
        grid-template-columns: 1fr 1fr;
    }

    .doacao-impacto__wrap {
        padding: 24px 20px;
    }

    .doacao-impacto__header h2 {
        font-size: 1.55rem;
    }
}

.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: #2563eb;
    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: #4CAF50;
    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);
}



/* Linha separadora no topo da seção */


/* Mensagens de doação */
.donation-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.donation-message {
    background: #4CAF50;
    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: #2563eb;
    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: 1.7rem;
    font-weight: 700;
    color: #000000;
    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;
    text-align: center;
    margin-top: 10px;
}

.goal-target {
    font-size: 0.9rem;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
}

.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;
}

.goal-header-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.expenses-details {
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.expense-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
}

.expense-label {
    color: var(--gray-text);
    font-weight: 500;
}

.expense-value {
    color: var(--dark-text);
    font-weight: 600;
}

.expenses-details-btn {
    width: 100%;
    max-width: 400px;
    margin: 15px auto 0;
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.expenses-details-btn:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.expenses-details-btn:active {
    transform: translateY(0);
}

/* Modal de Detalhes das Despesas */
.expenses-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.expenses-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expenses-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    margin: 20px;
    padding: 0;
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.expenses-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 18px 20px;
    border-bottom: 2px solid #F26C9D;
    background: linear-gradient(135deg, #fff0f5 0%, #ffffff 100%);
    position: relative;
    border-radius: 15px 15px 0 0;
}

.expenses-modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark-text);
    font-weight: 700;
    flex: 1;
}

.expenses-modal-header .close-btn {
    background: #F26C9D;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(242, 108, 157, 0.3);
}

.expenses-modal-header .close-btn:hover {
    background: #e55a8a;
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(242, 108, 157, 0.5);
}

.expenses-modal-header .close-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.expenses-modal-body {
    padding: 18px 20px;
    background: #ffffff;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
}

.expenses-intro {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.expenses-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.expense-detail-item {
    padding: 14px 16px;
    background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #F26C9D;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: default;
    user-select: none;
}

.expense-detail-item:hover {
    background: linear-gradient(135deg, #fff0f5 0%, #fefefe 100%);
    box-shadow: 0 4px 8px rgba(242, 108, 157, 0.15);
    border-left-color: #e55a8a;
}

.expense-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    width: 100%;
}

.expense-detail-icon {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expense-detail-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    min-width: 0;
}

.expense-detail-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4CAF50;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 110px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.2px;
}

.expense-detail-description {
    margin: 0;
    padding-left: 36px;
    color: var(--gray-text);
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
}

.expenses-total {
    padding: 14px 16px;
    background: #4CAF50;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expenses-total:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.expenses-total strong {
    color: white;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.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: #2563eb;
    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: #2563eb;
    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, #bfdbfe 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;
}



.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: #2563eb;
    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: #2563eb;
    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%, #bfdbfe 100%);
    text-align: center;
    padding: 35px 0 20px;
    position: relative;
}

/* Card Meta de Arrecadação */
.goal-card-wrapper {
    max-width: 580px;
    margin: 0 auto 35px auto;
    padding: 0 15px;
}

.goal-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 28px 28px 24px 28px;
    text-align: left;
}

.goal-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.goal-progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-progress-circle svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.goal-progress-circle circle.bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.goal-progress-circle circle.meter {
    fill: none;
    stroke: #44ab52;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 226.19;
    stroke-dashoffset: 210.36;
    transition: stroke-dashoffset 1s ease-in-out;
}

.goal-percentage {
    position: absolute;
    font-size: 17px;
    font-weight: 700;
    color: #44ab52;
    font-family: inherit;
}

.goal-raised-info {
    display: flex;
    flex-direction: column;
}

.goal-raised-amount {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.goal-raised-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 400;
}

.goal-breakdown {
    padding: 20px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goal-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.goal-breakdown-item .item-name {
    color: #6b7280;
    font-weight: 400;
}

.goal-breakdown-item .item-value {
    color: #111827;
    font-weight: 700;
}

.goal-meta-total {
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.5px;
}

.goal-cta-btn {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 14px 20px;
    background: #44ab52;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(68, 171, 82, 0.25);
    text-align: center;
}

.goal-cta-btn:hover {
    background: #389644;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(68, 171, 82, 0.35);
}

@media (max-width: 480px) {
    .goal-card {
        padding: 20px 18px 18px 18px;
        border-radius: 16px;
    }
    
    .goal-card-header {
        gap: 16px;
    }

    .goal-raised-amount {
        font-size: 24px;
    }

    .goal-progress-circle,
    .goal-progress-circle svg {
        width: 70px;
        height: 70px;
    }

    .goal-percentage {
        font-size: 15px;
    }

    .goal-breakdown-item {
        font-size: 14px;
    }
}

/* 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, #3b82f6, 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;
}

/* Seção Banner História */
.historia-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.historia-banner-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.historia-banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

.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: #2563eb;
    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, #2563eb 0%, #bfdbfe 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: #4CAF50;
    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: #2563eb;
    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, #3b82f6, 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: #3b82f6;
    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: #1d4ed8;
    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: #3b82f6;
    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%, #bfdbfe 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, #bfdbfe 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, #3b82f6, 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, #bfdbfe 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: #2563eb;
    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: #bfdbfe;
    color: var(--white);
    text-align: center;
    padding: 30px 0 25px;
}

.cta-section h2 {
    color: #2563eb;
    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: #4CAF50;
    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-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
}

.whatsapp-float {
    display: flex;
    text-decoration: none;
}

.whatsapp-float-container {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover .whatsapp-float-container {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.whatsapp-float-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #ff3b30;
    border: 2px solid #fff;
    border-radius: 50%;
}

.whatsapp-float-label {
    background: var(--dark-text, #1f2937);
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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: #4CAF50;
    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, #bfdbfe 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: #2563eb;
    margin: 0 0 16px;
}

.media-impact .accent {
    color: #2563eb;
}

.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: #2563eb;
    /* 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('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/facebook.svg');
    mask-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/facebook.svg');
}

.si-ig {
    -webkit-mask-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg');
    mask-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg');
}

.si-tk {
    -webkit-mask-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/tiktok.svg');
    mask-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/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: 92%;
    max-width: 380px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    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;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: #d81b60;
    color: white;
    padding: 20px 48px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.modal-header h2, .modal-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-align: center;
    width: 100%;
    text-shadow: none;
    line-height: 1.3;
}

.close-btn, .close, .modal-header .close-btn {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    padding: 0;
    margin: 0;
}

.close-btn:hover, .close:hover, .modal-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

.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: #2563eb;
}

.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;
}

    color: #9ca3af;
    font-weight: 400;
}

.continue-button {
    width: 100%;
    background: #4CAF50;
    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: #4CAF50;
    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;
    }
}

/* Sistema de Abas */
.donation-tabs {
    display: none !important;
    margin-top: 0;
}

.donation-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.donation-tab:hover {
    background: rgba(236, 72, 153, 0.05);
    color: #ec4899;
    font-weight: 600;
    color: #ec4899;
}

.recurring-note {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.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: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 12px;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.donation-btn:hover {
    border-color: #d81b60;
    color: #d81b60;
    background: #fff0f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216, 27, 96, 0.12);
}

.donation-btn.selected {
    background: #fff0f5;
    color: #d81b60;
    border-color: #d81b60;
    box-shadow: 0 0 0 2px rgba(216, 27, 96, 0.2);
}

.custom-donation {
    text-align: center;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 18px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0 !important;
}

.custom-donation p {
    color: #475569;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Ocultar setas (spinners) nos inputs de número */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none !important; 
    margin: 0 !important; 
}

input[type=number] {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 8px 12px;
    transition: all 0.2s ease;
    gap: 8px;
}

.input-container:focus-within {
    border-color: #d81b60;
    background: #f8fafc !important;
    box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

.currency-symbol {
    color: #334155;
    font-weight: 800;
    font-size: 15px;
    padding: 0;
    margin: 0;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
    user-select: none;
}

.custom-donation input, #customAmount {
    flex: 1;
    width: 100%;
    padding: 2px 4px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    background-color: transparent !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    text-align: left !important;
    margin: 0 !important;
}

.custom-donation input:focus, #customAmount:focus {
    background: transparent !important;
    background-color: transparent !important;
}

.custom-donation input::placeholder, #customAmount::placeholder {
    color: #94a3b8 !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    text-align: left !important;
}

.modal-footer {
    padding: 10px 0 0 0;
    background: transparent;
}

.donate-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 15px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.donate-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* Estilos para etapa 2 - Formulário de dados */
.selected-amount-display {
    background: #d81b60;
    color: white;
    padding: 14px 20px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.2);
}

.selected-amount-display .amount-value {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: white;
    text-shadow: none;
}

.checkbox-label-turbine {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid #cbd5e1;
    transition: all 0.2s ease;
    margin: 0 0 12px 0;
}

.checkbox-label-turbine:hover {
    background: #f8fafc;
    border-color: #d81b60;
}

.checkbox-label-turbine input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #d81b60;
    flex-shrink: 0;
}

.turbine-title {
    font-weight: 700;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.heart-icon {
    width: 16px;
    height: 16px;
    fill: #d81b60;
    flex-shrink: 0;
    display: inline-block;
}

.turbine-description {
    margin: 6px 0 0 28px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

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

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

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d81b60;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

.back-btn {
    width: 100%;
    background: #ffffff;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.back-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.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;
}
    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: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(76, 175, 80, 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: #4CAF50;
    animation-play-state: paused;
    transform: translateY(-2px);
    box-shadow: 0 -6px 25px rgba(76, 175, 80, 0.4);
}

.fixed-mobile-button:active {
    animation-play-state: paused;
    transform: translateY(0);
}

/* ===== WHATSAPP BUTTON ADJUSTMENT ===== */
.whatsapp-float-wrapper {
    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-wrapper {
        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-wrapper {
        bottom: 80px !important;
        right: 15px;
    }

    .whatsapp-float-label {
        display: none;
    }

    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);
    }
}

/* Seção Perguntas Frequentes */
.faq-doacoes {
    --faq-primary: #3b82f6;
    --faq-primary-claro: #E3F2FD;
    --faq-texto: #1f2937;
    --faq-cinza: #64748B;
    --faq-radius: 14px;
    --faq-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: 880px;
    padding: 0 !important;
}

.faq-doacoes .container {
    padding: 28px 16px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--faq-shadow);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-container .section-title {
    margin-bottom: 30px;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--faq-radius);
    overflow: hidden;
    background: var(--faq-primary-claro);
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: var(--faq-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--faq-texto);
    padding: 14px 16px;
    text-align: left;
}

.faq-question:hover {
    color: var(--faq-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--faq-primary);
    fill: none;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    color: var(--faq-cinza);
    font-size: 0.95rem;
    line-height: 1.5;
    background: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 5000px !important;
    padding: 10px 16px 16px 16px;
    overflow: visible;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 1.6rem;
    }
}

/* Modal de Confirmação de Telefone */
.phone-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.phone-confirmation-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.phone-confirmation-header {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    padding: 30px 25px 20px;
    text-align: center;
    color: white;
}

.phone-confirmation-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-confirmation-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.phone-confirmation-body {
    padding: 25px;
    text-align: center;
}

.phone-confirmation-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 15px 0;
}

.phone-confirmation-subtitle {
    font-weight: 600;
    color: #ec4899 !important;
    margin-top: 20px !important;
    font-size: 14px !important;
}

.phone-confirmation-footer {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-confirmation-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-confirmation-btn-primary {
    background: #4CAF50;
    color: white;
}

.phone-confirmation-btn-primary:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 202, 103, 0.4);
}

.phone-confirmation-btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
}

.phone-confirmation-btn-secondary:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .phone-confirmation-content {
        max-width: 100%;
        border-radius: 15px;
    }

    .phone-confirmation-header {
        padding: 25px 20px 15px;
    }

    .phone-confirmation-icon {
        width: 56px;
        height: 56px;
    }

    .phone-confirmation-header h3 {
        font-size: 20px;
    }

    .phone-confirmation-body {
        padding: 20px;
    }

    .phone-confirmation-body p {
        font-size: 15px;
    }

    .phone-confirmation-footer {
        padding: 0 20px 20px;
    }

    .phone-confirmation-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Seção Comunidade WhatsApp */
.whatsapp-community-section {
    text-align: center;
    background: #E3F2FD;
    padding: 40px 0;
    width: 100%;
    position: relative;
}

.whatsapp-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
}

.whatsapp-community-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.whatsapp-card {
    background: #ffffff;
    border: 1px solid rgba(16, 36, 60, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 16px 28px rgba(16, 36, 60, 0.12);
    margin-top: 20px;
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 25px;
}

.whatsapp-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.whatsapp-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
}

.whatsapp-image {
    margin: 25px 0;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.whatsapp-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(16, 36, 60, 0.1);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: #4CAF50;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(76, 175, 80, 0.4);
    background: #4CAF50;
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .whatsapp-community-section {
        padding: 30px 0;
    }

    .whatsapp-card {
        margin: 0 15px;
        padding: 25px 18px;
    }

    .whatsapp-header h3 {
        font-size: 1.3rem;
    }

    .whatsapp-image {
        margin: 15px 0;
    }

    .whatsapp-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    .whatsapp-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

.exit-popup {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;

    padding: 20px;

    box-sizing: border-box;

}



.exit-popup.show {

    display: flex !important;

}



.exit-popup[style*="display: block"],

.exit-popup.show {

    opacity: 1;

    visibility: visible;

}



.exit-popup-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(5px);

}



.exit-popup-content {

    position: relative;

    background: white;

    border-radius: 20px;

    padding: 40px 35px;

    max-width: 480px;

    width: 100%;

    max-height: 90vh;

    overflow-y: auto;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    text-align: center;

    margin: 0;

    align-self: center;

    transform: scale(0.9) translateZ(0);

    opacity: 0;

    transition: transform 0.3s ease, opacity 0.3s ease;

    will-change: transform, opacity;

}



.exit-popup.show .exit-popup-content {

    transform: scale(1) translateZ(0);

    opacity: 1;

}



.exit-popup:not(.show) .exit-popup-content {

    transform: scale(0.9) translateZ(0);

    opacity: 0;

}



.exit-popup-icon {

    width: 60px;

    height: 60px;

    background: linear-gradient(135deg, #F26C9D 0%, #e91e63 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    box-shadow: 0 4px 15px rgba(242, 108, 157, 0.3);

}



.exit-popup-icon svg {

    width: 32px;

    height: 32px;

    color: white;

    stroke-width: 3;

}



.exit-popup-title {

    font-size: 1.5rem;

    font-weight: 700;

    color: #333;

    margin: 0 0 15px 0;

    line-height: 1.3;

    font-family: 'Poppins', sans-serif;

}



.exit-popup-text {

    font-size: 0.95rem;

    color: #666;

    line-height: 1.6;

    margin: 0 0 15px 0;

}



.exit-popup-discount {

    font-size: 0.9rem;

    color: #F26C9D;

    font-weight: 600;

    margin: 0 0 25px 0;

}



.exit-popup-btn {

    background: linear-gradient(135deg, #F26C9D 0%, #e91e63 100%);

    color: white;

    border: none;

    padding: 16px 32px;

    border-radius: 12px;

    font-size: 1.05rem;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;

    width: 100%;

    box-shadow: 0 4px 15px rgba(242, 108, 157, 0.3);

    font-family: 'Poppins', sans-serif;

}



.exit-popup-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(242, 108, 157, 0.4);

}



.exit-popup-btn:active {

    transform: translateY(0);

}



.exit-popup-close {

    position: absolute;

    top: 15px;

    right: 15px;

    background: transparent;

    border: none;

    font-size: 24px;

    color: #999;

    cursor: pointer;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transition: all 0.2s ease;

    line-height: 1;

}



.exit-popup-close:hover {

    background: #f5f5f5;

    color: #333;

}



@media (max-width: 768px) {

    .exit-popup-content {

        padding: 30px 25px;

        max-width: 90%;

    }



    .exit-popup-title {

        font-size: 1.3rem;

    }



    .exit-popup-text {

        font-size: 0.9rem;

    }



    .exit-popup-btn {

        padding: 14px 28px;

        font-size: 1rem;

    }



    .exit-popup-icon {

        width: 50px;

        height: 50px;

        margin-bottom: 15px;

    }



    .exit-popup-icon svg {

        width: 26px;

        height: 26px;

    }

}







.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.exit-popup.show {
    display: flex !important;
}

.exit-popup[style*="display: block"],
.exit-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0;
    align-self: center;
    transform: scale(0.9) translateZ(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.exit-popup.show .exit-popup-content {
    transform: scale(1) translateZ(0);
    opacity: 1;
}

.exit-popup:not(.show) .exit-popup-content {
    transform: scale(0.9) translateZ(0);
    opacity: 0;
}

.exit-popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F26C9D 0%, #e91e63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(242, 108, 157, 0.3);
}

.exit-popup-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 3;
}

.exit-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.exit-popup-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.exit-popup-discount {
    font-size: 0.9rem;
    color: #F26C9D;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.exit-popup-btn {
    background: linear-gradient(135deg, #F26C9D 0%, #e91e63 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(242, 108, 157, 0.3);
    font-family: 'Poppins', sans-serif;
}

.exit-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 108, 157, 0.4);
}

.exit-popup-btn:active {
    transform: translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.exit-popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 30px 25px;
        max-width: 90%;
    }

    .exit-popup-title {
        font-size: 1.3rem;
    }

    .exit-popup-text {
        font-size: 0.9rem;
    }

    .exit-popup-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .exit-popup-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .exit-popup-icon svg {
        width: 26px;
        height: 26px;
    }
}



/* ======= NOVA ESTILIZA��O DO FOOTER ======= */
.footer {
    background: #0e1221;
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 180px;
}

.footer-section h4 {
    color: #F26C9D;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F26C9D;
    border-radius: 2px;
}

.footer-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #F26C9D;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #F26C9D;
    color: #ffffff;
    border-color: #F26C9D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 108, 157, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        justify-content: center;
        text-align: center;
        gap: 40px;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-link:hover {
        transform: translateY(-2px);
    }
}

/* Fazendo o logo do footer ficar redondo */
.footer-logo img, .brand-logo.footer-logo img {
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Card de Doação Fixo na Página (Ajudar via PIX) */
.fixed-donation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    max-width: 380px;
    margin: 0 auto 28px auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-align: center;
}

.fixed-donation-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 16px 20px;
    color: #ffffff;
}

.fixed-donation-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.3px;
    text-shadow: none;
}

.fixed-donation-body {
    padding: 20px 18px;
    background: #f8fafc;
}

.fixed-donation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.fixed-donation-grid .donation-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px 8px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    outline: none !important;
}

.fixed-donation-grid .donation-btn:hover,
.fixed-donation-grid .donation-btn:focus,
.fixed-donation-grid .donation-btn:focus-visible,
.fixed-donation-grid .donation-btn.selected {
    border-color: #2563eb !important;
    background: #eff6ff !important;
    color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25) !important;
    outline: none !important;
}

.fixed-custom-box {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.fixed-custom-box:focus-within {
    border-color: #2563eb !important;
}

.fixed-custom-box label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    display: block;
    margin-bottom: 8px;
}

.fixed-custom-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 8px 12px;
    transition: all 0.2s ease;
}

.fixed-custom-input-wrapper:focus-within {
    border-color: #2563eb !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2) !important;
}

.fixed-custom-input-wrapper .currency-symbol {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-right: 6px;
}

.fixed-custom-input-wrapper input {
    border: none !important;
    background: transparent !important;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    outline: none !important;
    box-shadow: none !important;
}

.fixed-donation-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    animation: shakeFixedError 0.3s ease-in-out;
}

@keyframes shakeFixedError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.fixed-donate-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
    font-weight: 800;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fixed-donate-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}
