/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #1e40af;
    margin: 0 auto;
}

.logo img {
    width: 60px;
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1e40af;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight {
    color: #fdba12;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #fdba12;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #f0a500;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1e40af;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Sections */
.white-section {
    background: white;
    padding: 80px 0;
}

.gray-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.mb-10 {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Projeto cards */
.projeto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.projeto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.projeto-content {
    padding: 2rem;
}

.projeto-content h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.projeto-stats {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: bold;
    color: #1e40af;
}

/* Donation options */
.donation-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.donation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    transition: transform 0.3s;
}

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

.donation-card.featured {
    border: 3px solid #1e40af;
    transform: scale(1.05);
}

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

.donation-card h3 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.custom-donation {
    text-align: center;
}

.custom-donation-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.custom-donation-form input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    width: 200px;
    text-align: center;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

.faq-plus::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
}

details[open] .faq-plus::before {
    content: '−';
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

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

.footer-mission h3 {
    color: #fdba12;
    margin-bottom: 1rem;
}

.footer-info {
    margin-top: 2rem;
    text-align: center;
    color: #ccc;
}

.horario-funcionamento {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.horario-funcionamento h4 {
    color: #fdba12;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item .dia {
    font-weight: 500;
    color: #fff;
}

.horario-item .horario {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contato {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contato h4 {
    color: #fdba12;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contato-item:last-child {
    border-bottom: none;
}

.contato-tipo {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contato-valor {
    color: #fdba12;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contato-valor:hover {
    color: #fff;
    text-decoration: underline;
}

.telefones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-legal {
    margin-top: 1.5rem;
}

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

.pix-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1e40af;
}

.pix-header h3 {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-pix-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-pix-modal:hover {
    background: #f0f0f0;
    color: #1e40af;
}

.pix-amount {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border-radius: 15px;
    color: white;
}

.amount-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.amount-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fdba12;
}

.pix-key-container {
    margin-bottom: 2rem;
}

.pix-key-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pix-key-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #1e40af;
    border-radius: 10px;
    padding: 1rem;
    gap: 1rem;
}

.pix-key {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    word-break: break-all;
}

.copy-pix-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-pix-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.pix-receiver-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #fdba12;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pix-receiver-info strong {
    color: #333;
}

.pix-receiver-info em {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

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

.pix-instructions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pix-instructions h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pix-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
}

.pix-instructions li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.5;
}

.pix-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.pix-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
    position: relative;
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification.warning {
    border-left: 4px solid #ffc107;
}

.notification.info {
    border-left: 4px solid #17a2b8;
}

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

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

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

.notification-message {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f0f0f0;
    color: #333;
}

.notification-progress {
    height: 3px;
    background: #1e40af;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.notification.removing {
    animation: slideOutRight 0.4s ease-in forwards;
}

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

/* Responsividade do modal PIX */
@media (max-width: 768px) {
    .pix-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .pix-key-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-pix-btn {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .amount-value {
        font-size: 2rem;
    }
}

/* Imagem da História */
.historia-imagem {
    margin: 2rem 0;
    text-align: center;
}

.historia-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.historia-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-in;
}

.loading-content {
    text-align: center;
    color: white;
    background: rgba(227, 6, 19, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #fdba12;
}

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

.loading-content p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: white;
}

.loading-subtitle {
    font-size: 1rem !important;
    color: #fdba12 !important;
    font-weight: 400 !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Imagem da Seção Sobre */
.sobre-imagem img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Lista de Impactos - Otimizada para Performance */
.impacts {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

/* Espaçamento para Doação Customizada */
.custom-donation {
    margin-bottom: 2rem;
}

.impact {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.impact:last-child {
    border-bottom: none;
}

.impact:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
    font-size: 1.2rem;
}

.impact:hover {
    background-color: #f8f9fa;
    padding-left: 2.5rem;
}

.impact strong {
    color: #1e40af;
    font-weight: 600;
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    pointer-events: none;
}

.notification {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #fdba12;
    max-width: 400px;
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    animation: slideIn 0.4s ease forwards;
    position: relative;
    overflow: hidden;
}

.notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left-color: #fdba12;
}

.notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-left-color: #fdba12;
}

.notification.warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    border-left-color: #1e40af;
}

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

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #fdba12;
    width: 100%;
    animation: progress 5s linear forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
}

.notification.removing {
    animation: slideOut 0.4s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .donation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-donation-form {
        flex-direction: column;
        align-items: center;
    }
}

/* Seção Impacto da Doação */
.impact-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.impact-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.impact-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #1e40af;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.15);
}

.impact-value {
    background: #fdba12;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.impact-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

/* Seção PIX */
.pix-section {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.pix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fdba12, #f0a500, #fdba12);
}

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.pix-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fdba12;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pix-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pix-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.pix-powered {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.pix-steps h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #fdba12;
    color: #333;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.pix-key-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.pix-key-field {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.pix-key-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    word-break: break-all;
}

.pix-receiver {
    color: #333;
    margin-bottom: 20px;
    font-size: 1rem;
}

.pix-receiver strong {
    color: #1e40af;
}

.pix-copy-btn {
    background: #fdba12;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 186, 18, 0.3);
}

.pix-copy-btn:hover {
    background: #f0a500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 186, 18, 0.4);
}

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

.pix-message {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive para as novas seções */
@media (max-width: 768px) {
    .impact-section,
    .pix-section {
        padding: 25px;
        margin: 25px 0;
    }
    
    .impact-title {
        font-size: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .impact-value {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .pix-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pix-header h3 {
        font-size: 1.5rem;
    }
    
    .pix-steps {
        padding: 20px;
    }
    
    .pix-key-container {
        padding: 20px;
    }
    
    .pix-copy-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
} 