/* 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: #FF8B3D;
    --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);

    /* 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 Principal */
.main-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    text-align: center;
}

.header-logo-img {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* 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;
    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: 30px 0;
}

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

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

/* Seção do Vídeo */
.video-section {
    background: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

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

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

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

.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(135deg, #E8E0D0 0%, #E0D8C8 100%);
}

.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 especial para TikTok "em breve" */
.tiktok-soon {
    opacity: 0.7;
    font-style: italic;
}

/* 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: var(--white);
    text-align: center;
}

.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: var(--primary-orange);
    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: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 139, 61, 0.15), rgba(76, 175, 80, 0.15));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 139, 61, 0.3);
}

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

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 139, 61, 0.2);
}

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

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

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

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

/* Seção Doação PIX */
.donation-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    overflow: visible !important;
    position: relative !important;
}

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

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

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

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

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

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

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

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

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

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

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

.copy-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    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: var(--cream);
    font-size: var(--small-size);
}

/* Seção Histórias de Transformação */
.transformation-section {
    background: linear-gradient(135deg, #F0EBE0 0%, #E8E0D0 100%);
    padding: 40px 0;
}

.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: var(--light-gray);
    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: var(--primary-orange);
    font-size: var(--h3-size);
    margin-bottom: 15px;
    font-weight: 600;
}

.transformation-content p {
    color: var(--gray-text);
    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;
}

.transformation-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: var(--body-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

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

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

/* Seção Depoimentos */
.testimonials-section {
    background: transparent;
    padding: 30px 0;
    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(--light-gray);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 350px;
    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(--primary-orange);
    font-size: var(--h3-size);
    margin-bottom: 8px;
    font-weight: 600;
}

.testimonial-content p {
    color: var(--gray-text);
    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-green);
    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(76, 175, 80, 0.3);
    flex-shrink: 0;
    min-width: 50px;
    min-height: 50px;
}

.testimonial-btn:hover {
    background: var(--dark-green);
    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: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 12px;
    min-height: 12px;
}

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

/* Responsividade para depoimentos */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
        min-height: 320px;
    }

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

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

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

/* Seção Localização */
.location-section {
    background: linear-gradient(135deg, #E8E0D0 0%, #E0D8C8 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: var(--primary-orange);
    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: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: var(--white);
    text-align: center;
    padding: 40px 0;
}

.cta-section h2 {
    color: var(--white);
    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(--cream);
}

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

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

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-logo {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-logo h3 {
    color: var(--primary-orange);
    font-size: var(--h3-size);
    margin-bottom: 10px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.footer-section p,
.footer-link,
.social-link {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.footer-link:hover,
.social-link:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: var(--white);
    font-size: var(--small-size);
    margin-bottom: 5px;
}

/* Responsividade para mobile */
@media (max-width: 767px) {
    .testimonial-item {
        height: 300px;
        padding: 25px;
    }

    .testimonials-carousel {
        height: 300px;
    }
}

/* Responsividade para tablets */
@media (min-width: 768px) {
    .header-logo-img {
        width: 150px;
    }

    .main-header {
        padding: 15px 0;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

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

    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links {
        flex-direction: row;
        gap: 15px;
    }

    .testimonial-item {
        padding: 40px;
        height: 350px;
    }

    .testimonials-carousel {
        height: 350px;
    }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
    .header-logo-img {
        width: 180px;
    }

    .main-header {
        padding: 20px 0;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 2fr;
        text-align: left;
    }

    .footer-logo {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-item {
        align-items: center;
    }

    .testimonials-carousel {
        max-width: 700px;
    }

    .testimonial-item {
        padding: 50px;
        height: 450px;
    }

    .testimonials-carousel {
        height: 450px;
    }
}

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

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

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

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

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

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

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

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



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

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

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

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

.whatsapp-text {
    display: none;
}

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

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

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

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

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

    .whatsapp-text {
        display: inline;
    }

    .whatsapp-btn {
        border-radius: 30px;
    }
}

/* Melhorias para telas pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        width: 60px;
    }

    .logo-container {
        top: 15px;
        left: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
    }

    .pix-key {
        font-size: 0.9rem;
        padding: 10px;
    }

    .copy-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

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

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

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

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

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

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

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

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

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

.transformation-btn:hover {
    background: var(--dark-green);
    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: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 12px;
    min-height: 12px;
}

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

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

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



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

    .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: 1rem;
    }

    .transformation-controls {
        gap: 10px;
    }

    .transformation-indicator {
        width: 8px;
        height: 8px;
    }

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

/* ===== SEÇÃO CTA DE DOAÇÃO ===== */
.donation-section {
    background: linear-gradient(135deg, #F0EBE0 0%, #E8E0D0 100%);
    padding: 40px 0;
}

.donation-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.donation-cta-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F0 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.donation-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.donation-cta-content h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.donation-cta-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.donate-now-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.35);
    letter-spacing: 0.5px;
}

.donate-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.5);
}

.donate-now-btn:active {
    transform: translateY(-1px);
}

.donation-security {
    margin-top: 15px;
    color: var(--gray-text);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== POPUP DE DOAÇÃO - OVERLAY ===== */
.donation-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
}

.donation-popup-overlay.active {
    display: flex;
}

/* ===== POPUP CONTAINER ===== */
.donation-popup {
    background: #FFFFFF;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
    animation: popupSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.donation-popup::-webkit-scrollbar {
    width: 6px;
}

.donation-popup::-webkit-scrollbar-track {
    background: transparent;
}

.donation-popup::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* ===== BOTÃO FECHAR ===== */
.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
}

.popup-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transform: rotate(90deg);
}

/* ===== POPUP HEADER ===== */
.popup-header {
    text-align: center;
    padding: 30px 25px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.popup-logo {
    width: 60px;
    height: auto;
    margin: 0 auto 10px;
    border-radius: 50%;
}

.popup-header h2 {
    color: var(--dark-text);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.popup-subtitle {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== POPUP CONTENT ===== */
.popup-content {
    padding: 25px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.section-label:first-child {
    margin-top: 0;
}

.value-helper-text {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-bottom: 10px;
    margin-top: -5px;
}

/* ===== INPUT DE VALOR ===== */
.value-input-container {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 4px;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.value-input-container:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.value-input-container.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.currency-prefix {
    padding: 12px 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    user-select: none;
}

.donation-value-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px 12px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.donation-value-field::placeholder {
    color: #ccc;
    font-weight: 400;
}

.donation-value-field.error {
    color: #ef4444;
}

/* ===== MENSAGENS DE ERRO/LIMITE ===== */
.donation-error-message,
.donation-max-message {
    font-size: 0.82rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: none;
    align-items: center;
    gap: 6px;
    animation: fadeInShake 0.3s ease;
}

.donation-error-message {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.donation-max-message {
    color: #d97706;
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.donation-error-message.show,
.donation-max-message.show {
    display: flex;
}

@keyframes fadeInShake {
    0% {
        opacity: 0;
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(3px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== BOTÕES DE VALOR PRÉ-DEFINIDO ===== */
.preset-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.preset-btn {
    background: #f5f5f5;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 10px 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.preset-btn:hover {
    border-color: var(--primary-green);
    background: rgba(76, 175, 80, 0.05);
}

.preset-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.3);
}

/* ===== MÉTODO DE PAGAMENTO ===== */
.payment-method-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    border: 2px solid var(--primary-green);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 5px;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    flex-shrink: 0;
}

.radio-circle.active {
    border-color: var(--primary-green);
}

.radio-circle.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-green);
}

.pix-badge {
    margin-left: auto;
    background: rgba(76, 175, 80, 0.12);
    color: var(--dark-green);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== TOGGLE ANÔNIMO ===== */
.anonymous-toggle {
    margin-bottom: 10px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.toggle-container input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-container input:checked+.toggle-slider {
    background: var(--primary-green);
}

.toggle-container input:checked+.toggle-slider::after {
    left: 22px;
}

.toggle-label {
    font-size: 0.9rem;
    color: var(--dark-text);
}

/* ===== CAMPOS DO CLIENTE ===== */
.client-fields {
    transition: all 0.3s ease;
    max-height: 80px;
    overflow: hidden;
}

.client-fields.hidden {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.field-group {
    margin-bottom: 10px;
}

.client-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.client-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.client-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ===== TURBINE SUA DOAÇÃO ===== */
.turbine-subtitle {
    color: var(--gray-text);
    font-size: 0.82rem;
    margin-top: -5px;
    margin-bottom: 12px;
}

.turbine-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.turbine-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: #f8f8f8;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.turbine-item:hover {
    border-color: var(--primary-green);
    background: rgba(76, 175, 80, 0.03);
}

.turbine-item.selected {
    border-color: var(--primary-green);
    background: rgba(76, 175, 80, 0.08);
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.2);
}

.turbine-icon {
    font-size: 1.5rem;
}

.turbine-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.2;
}

.turbine-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* ===== RESUMO DA DOAÇÃO ===== */
.donation-summary {
    background: #f9fafb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid #e8e8e8;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    color: var(--gray-text);
    font-size: 0.88rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-text);
}

.summary-row.total span:last-child {
    color: var(--primary-green);
    font-size: 1.15rem;
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

/* ===== BOTÃO CONTRIBUIR ===== */
.contribute-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.contribute-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.contribute-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.terms-notice {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 12px;
    margin-bottom: 15px;
}

.terms-notice strong {
    color: #666;
    cursor: pointer;
    text-decoration: underline;
}

/* ===== AVISO DE SEGURANÇA DOS BANCOS ===== */
.bank-security-notice {
    margin-top: 15px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border: 1px solid #a5b4fc;
    border-radius: 14px;
    padding: 15px;
    text-align: left;
    margin-bottom: 15px;
}

.notice-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content strong {
    font-size: 0.85rem;
}

.notice-content p {
    margin: 5px 0 0 0;
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.5;
}

.notice-accordion {
    margin-top: 12px;
}

.accordion-toggle {
    width: 100%;
    background: white;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.88rem;
    color: #4338ca;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.accordion-toggle:hover {
    background: #f5f7ff;
}

.accordion-toggle.active {
    border-radius: 8px 8px 0 0;
}

.accordion-arrow {
    transition: transform 0.3s;
    font-size: 0.75rem;
}

.accordion-toggle.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background: white;
    border: 1px solid #c7d2fe;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 15px;
    animation: slideDownAccordion 0.3s ease;
}

@keyframes slideDownAccordion {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.accordion-content.active {
    display: block;
}

.bank-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.bank-tab {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.bank-tab:hover {
    background: #f3f4f6;
}

.bank-tab.active {
    background: #4338ca;
    color: white;
}

.bank-info {
    display: none;
}

.bank-info.active {
    display: block;
}

.bank-alert-example {
    background: #fafafa;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e5e7eb;
}

.bank-alert-example img {
    max-width: 100% !important;
    height: auto !important;
}

.bank-alert-example p {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.tip-text {
    font-size: 0.78rem !important;
    color: var(--primary-green) !important;
    font-weight: 500;
    margin-top: 10px !important;
}

/* ===== SELO DE SEGURANÇA ===== */
.security-seal {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 14px 16px;
}

.seal-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seal-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seal-text strong {
    font-size: 0.78rem;
    color: var(--dark-green);
    letter-spacing: 0.5px;
}

.seal-text span {
    font-size: 0.75rem;
    color: #4ade80;
}

/* ===== TELA DE RESULTADO PIX ===== */
.pix-result-screen {
    display: none;
    padding: 30px 25px;
    text-align: center;
}

.pix-result-screen.active {
    display: block;
}

.pix-qr-container {
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.pix-qr-image {
    width: 220px;
    height: 220px;
    border-radius: 8px;
}

.pix-code-container {
    margin: 15px 0;
}

.pix-code-label {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 8px;
}

.pix-code-value {
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--dark-text);
    word-break: break-all;
    line-height: 1.4;
    border: 1px solid #e0e0e0;
}

.copy-pix-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

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

.pix-success-message {
    color: var(--primary-green);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pix-success-message.show {
    opacity: 1;
}

.pix-timer {
    margin-top: 15px;
    padding: 10px;
    background: #fff8e1;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #f59e0b;
}

.pix-timer strong {
    color: #d97706;
    font-size: 1.1rem;
}

/* ===== RESPONSIVIDADE DO POPUP ===== */
@media (max-width: 520px) {
    .donation-popup-overlay {
        padding: 10px;
    }

    .donation-popup {
        max-height: 95vh;
        border-radius: 18px;
    }

    .popup-content {
        padding: 20px 18px;
    }

    .preset-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .turbine-options {
        gap: 6px;
    }

    .turbine-item {
        padding: 10px 6px;
    }

    .turbine-name {
        font-size: 0.68rem;
    }

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

    .donation-value-field {
        font-size: 1.1rem;
    }

    .pix-qr-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 380px) {
    .popup-header {
        padding: 25px 15px 15px;
    }

    .popup-content {
        padding: 15px;
    }

    .donation-cta-content {
        padding: 30px 20px;
    }

    .donate-now-btn {
        padding: 15px 35px;
        font-size: 1.05rem;
    }
}

/* ===== LOADING SPINNER PARA BOTÃO ===== */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinLoader 0.8s linear infinite;
}

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