:root {
    /* Cores principais */
    --primary-color: #940404; /* Vermelho principal */
    --secondary-color: #cc2129; /* Vermelho secundário */
    --tertiary-color: #fccc5c; /* Amarelo */
    --dark-accent: #4c0c04; /* Marrom escuro */
    --primary-rgb: 148, 4, 4;
    
    /* Cores de texto */
    --text-color: #000000; /* Texto principal */
    --text-secondary: #4a4a4c; /* Texto secundário */
    --text-light: #ffffff; /* Texto claro */
    
    /* Cores de fundo */
    --background-main: #f9f9f9; /* Fundo principal - agora um cinza claro mais moderno */
    --background-light: #ffffff; /* Fundo branco */
    --background-card: #ffffff; /* Fundo dos cartões */
    
    /* Estilos gerais */
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* --- Layout helpers: manter footer no final da tela --- */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

/* Hero e cards simples e modernos (manter paleta atual) */
.home-hero {
    background: linear-gradient(180deg, rgba(148,4,4,0.03), rgba(255,255,255,0));
    padding: 48px 0;
}

.home-hero .hero-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.home-hero h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin:0 0 6px 0;
}

.hero-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    margin:0 0 6px 0;
}

.hero-lead {
    color: var(--text-secondary);
    margin:0;
}

.hero-actions {
    display:flex;
    gap:10px;
}

.btn-primary {
    display:inline-block;
    background:var(--primary-color);
    color:var(--text-light);
    padding:10px 16px;
    border-radius: 28px;
    font-weight:700;
}

.btn-primary:hover { opacity:0.95 }

.btn-outline {
    display:inline-block;
    background:var(--background-light);
    color:var(--primary-color);
    padding:10px 14px;
    border-radius: 12px;
    border:1px solid #eee;
}

.cards-grid {
    display:flex;
    gap:20px;
    margin-top:18px;
    align-items:stretch;
}

.service-card {
    background: var(--background-light);
    border-radius: 12px;
    padding:18px;
    box-shadow: var(--box-shadow);
    flex:1;
    border:1px solid #eee;
}

.service-card h3 { color:var(--primary-color); margin:0 0 10px 0 }
.service-list { list-style:none; padding:0; margin:0 0 10px 0; color:var(--text-secondary) }
.service-list li { padding:6px 0 }
.service-address li { margin: 0 }
.service-address { margin-top: 12px; display: flex; gap: 12px; align-items: center; color: var(--text-secondary); font-size: 0.98rem; justify-content: space-between }
.service-address .service-desc { flex: 1 1 auto; min-width: 0; color: var(--text-secondary); font-size: 0.98rem; line-height: 1.3 }
.service-address i { color: var(--primary-color); flex-shrink: 0; width: 20px; text-align: center }
.service-address a { color:var(--primary-color); font-weight:600 }

/* Padroniza o link 'Ver no mapa' nos cards */
.map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* reduz espaço entre ícone e texto */
    font-size: 0.9rem;
    padding: 6px 8px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-rgb), 0.10);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: background 0.18s ease, transform 0.12s ease, color 0.12s ease;
    text-align: center;
    line-height: 1;
    width: 120px; /* largura fixa para manter consistência */
    flex: 0 0 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.map-link i { font-size: 0.98rem; color: var(--primary-color); margin: 0 }
.map-link .map-text { display: inline-block; vertical-align: middle }
.map-link:hover { background: var(--primary-color); color: var(--text-light); transform: translateY(-1px) }
.map-link:hover i { color: var(--text-light) }

/* Garantir que o link do mapa não apareça sublinhado */
.map-link,
.map-link:visited,
.map-link:active,
.map-link:hover {
    text-decoration: none !important;
}

/* Separação sutil entre dois blocos de endereço no mesmo card */
.service-address + .service-address {
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 10px;
    margin-top: 10px;
}

/* Estilo mais visual para listas detalhadas (ex.: Quinta) */
.service-list--detailed {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 12px 0;
}
.service-list--detailed li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-secondary);
}
.service-list--detailed li:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 1px 3px rgba(148,4,4,0.08);
}

.muted-note { color:var(--text-secondary); margin-top:12px }

@media (max-width: 768px) {
    .home-hero .hero-inner { flex-direction:column; align-items:flex-start }
    .cards-grid { flex-direction:column }
    .hero-actions { width:100%; display:flex; gap:8px }
    .btn-primary, .btn-outline { flex:1; text-align:center }
}

/* --- Tipografia refinada --- */
/* Geral */
h2 {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--primary-color);
}

h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Ajustes específicos para as seções da página inicial */
.home-hero h2 { font-size: 1.9rem; }
.home-hero .hero-sub { font-size: 1rem; opacity: 0.95 }
.home-hero .hero-lead { font-size: 0.98rem }

.service-card h3 { font-size: 1.15rem }

/* Espaçamento entre seções para melhor leitura */
section { padding-top: 28px; padding-bottom: 28px }

/* Reduzir peso visual dos links de mapa, mantendo destaque */
.service-address a { text-decoration: underline; color: var(--primary-color); font-weight:600 }

@media (min-width: 992px) {
    h2 { font-size: 1.8rem }
    h3 { font-size: 1.15rem }
}

@media (max-width: 480px) {
    h2 { font-size: 1.4rem }
    .home-hero h2 { font-size: 1.6rem }
    p { font-size: 0.98rem }
}

/* Corrige contraste do rodapé (garante texto claro sobre fundo escuro) */
footer, footer a, footer .contact-info a, footer .more-links a, footer .footer-logo-text h2, footer .footer-logo-text p, footer .copyright p {
    color: var(--text-light) !important;
}

/* Garantir ícones sociais com cor clara por padrão */
.social-icons a {
    color: var(--text-light) !important;
}

.more-links a {
    border-bottom-color: rgba(255,255,255,0.6) !important;
}

/* Pequeno ajuste para links no footer para melhor legibilidade */
footer a:hover {
    color: var(--tertiary-color) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-main);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 0;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: auto;
    min-width: 0;
    flex: 1;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    background-color: var(--text-light);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.2;
    font-weight: 700;
    white-space: normal;
    width: auto;
    max-width: none;
}

nav {
    flex-shrink: 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 600;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--text-light);
    display: inline-block;
}

nav ul li a:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Estado ativo da página (ex.: `aria-current="page"` ou classe `active`) */
nav ul li a[aria-current="page"],
nav ul li a.active {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Melhor foco para navegação por teclado */
nav ul li a:focus-visible {
    outline: 2px dashed rgba(255,255,255,0.6);
    outline-offset: 4px;
}

#carrd-link {
    color: var(--text-light);
    font-weight: 700;
}

#carrd-link:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    padding: 30px 0;
    text-align: center;
    background-color: var(--background-main);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

/* Opções de Contribuição */
.donation-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Card de Contribuição */
.donation-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    width: 200px;
    text-align: center;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #eee;
    overflow: visible;
}

.donation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.donation-card:hover::before {
    transform: scaleX(1);
}

.donation-card .icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    transition: transform 0.3s;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-card:hover .icon {
    transform: scale(1.1);
}

.donation-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.donation-card.recommended {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    transform: scale(1.05);
}

.donation-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
}

.donation-card.recommended .icon {
    color: var(--text-light);
}

.donation-card.recommended::before {
    background-color: var(--tertiary-color);
}

.donation-card.whatsapp-card::before {
    background-color: var(--secondary-color);
}

.donation-card.new-temple-card {
    border: 2px solid var(--tertiary-color);
    position: relative;
    overflow: visible;
    background-color: var(--background-light);
}

.donation-card.new-temple-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--border-radius) + 4px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.donation-card.new-temple-card .icon {
    color: var(--secondary-color);
}

.donation-card.new-temple-card h3 {
    color: inherit;
}

.donation-card.new-temple-card::before {
    background-color: var(--tertiary-color);
}

.card-info {
    font-size: 0.8rem;
    margin-top: 10px;
    color: var(--text-secondary);
}

.new-temple-card .card-info {
    color: var(--text-secondary);
    font-weight: 700;
}

.badge-wrapper {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
}

.badge {
    background-color: var(--tertiary-color);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(252, 204, 92, 0.3);
    white-space: nowrap;
}

/* Ícone SVG do PIX */
.pix-svg {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.pix-img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.donation-card.recommended .pix-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.pix-icon {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #33BBFF, #cc2129, #940404);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.donation-card.recommended .pix-icon {
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.donation-card.recommended .pix-svg {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* PIX Section - Novo design com abas */
.pix-section {
    padding: 60px 0;
    background-color: var(--background-light);
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pix-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.pix-tabs {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--background-main);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid #eee;
}

.tab-header {
    background-color: #f6f6f6;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.tab-instruction {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
    background-color: var(--background-light);
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-button i {
    font-size: 1.2rem;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    background-color: rgba(148, 4, 4, 0.05);
}

.tab-button.active i {
    color: var(--primary-color);
}

.tab-button.active:after {
    transform: scaleX(1);
}

.tab-button:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.tab-content {
    padding: 0;
}

.tab-panel {
    display: none;
    padding: 0;
}

.tab-panel.active {
    display: block;
}

.pix-panel-content {
    display: flex;
    padding: 30px;
    gap: 40px;
    align-items: center;
}

.pix-details {
    flex: 1;
    min-width: 280px;
}

.pix-details h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pix-option {
    margin-bottom: 20px;
}

.pix-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pix-value {
    position: relative;
}

.email, .pix-telefone, .cnpj {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.email:after, .pix-telefone:after, .pix-copia-cola:after, .cnpj:after {
    content: '\f0c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.email:hover, .pix-telefone:hover, .pix-copia-cola:hover, .cnpj:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.email:hover:after, .pix-telefone:hover:after, .pix-copia-cola:hover:after, .cnpj:hover:after {
    opacity: 1;
    color: var(--primary-color);
}

.pix-copia-cola {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-family: monospace;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
}

.pix-copia-cola-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    width: calc(100% - 30px);
}

.copy-instruction {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
    text-align: right;
    font-style: italic;
}

.qr-code-container {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.qr-code-container img {
    width: 180px;
    border: 6px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.qr-code-container p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pix-info-note {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 850px;
    margin: 20px auto 0;
    padding: 15px 20px;
    background-color: rgba(148, 4, 4, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.pix-info-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pix-info-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .pix-panel-content {
        padding: 25px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pix-panel-content {
        flex-direction: column-reverse;
        padding: 20px;
    }
    
    .pix-details {
        width: 100%;
    }
    
    .tab-button {
        font-size: 1rem;
        padding: 12px 10px;
    }
    
    .pix-info-note {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .pix-info-note i {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .pix-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .pix-tabs {
        border-radius: 10px;
    }
    
    .tab-button {
        font-size: 0.9rem;
        padding: 10px 5px;
    }
    
    .pix-panel-content {
        padding: 15px;
    }
    
    .pix-details h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .qr-code-container img {
        width: 150px;
        border-width: 4px;
    }
    
    .email, .pix-telefone, .pix-copia-cola, .cnpj {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    
    .pix-label {
        font-size: 0.9rem;
    }
    
    .pix-option {
        margin-bottom: 15px;
    }
    
    .copy-instruction {
        font-size: 0.75rem;
    }
}

/* Bank Transfer Section */
.bank-transfer {
    padding: 60px 0;
    background-color: var(--background-main);
    text-align: center;
    position: relative;
}

.bank-transfer h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.bank-transfer p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.church-name, .church-cnpj {
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.church-name {
    font-size: 1.0rem;
    color: var(--primary-color);
}

.banks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bank-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 15px;
    width: 300px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.bank-card img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;
    max-width: 80%;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

/* Específico para corrigir o tamanho dos SVGs */
.bank-card:first-child img {
    height: 60px;
}

.bank-card:nth-child(2) img {
    height: 60px;
}

.bank-info p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--primary-color);
}

.bank-purpose {
    font-weight: bold;
    color: var(--text-secondary) !important;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Novo design para a seção do novo templo */
.new-temple-section {
    padding: 60px 0;
    background-color: var(--background-light);
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('img/logo.png');
    background-position: center;
    background-size: 400px;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 15px;
}

.new-temple-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.new-temple-section h2 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.new-temple-section h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.new-temple-section > .container > p {
    font-size: 1.1rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.new-temple-container {
    max-width: 1100px;
    margin: 0 auto;
}

.new-temple-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: var(--background-main);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid #eee;
    overflow: hidden;
    min-height: 100%;
    position: relative;
}

.new-temple-info {
    width: 50%;
    padding: 40px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.new-temple-action {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(252, 204, 92, 0.1);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.temple-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(148, 4, 4, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.temple-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.new-temple-info h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

.highlight-text {
    color: var(--secondary-color);
    position: relative;
}

.new-temple-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.temple-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    width: 100%;
}

.temple-benefits li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.temple-benefits li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.1rem;
}

.temple-call-to-action {
    font-weight: 600;
    font-size: 1.1rem !important;
    color: var(--text-color) !important;
    margin-top: auto;
}

.temple-bible-verse {
    font-style: italic;
    font-size: 1rem;
    padding: 15px;
    background-color: rgba(252, 204, 92, 0.1);
    border-left: 3px solid var(--tertiary-color);
    border-radius: 4px;
    margin: 15px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.temple-mission {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 15px 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.temple-personal-impact {
    font-size: 1rem;
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 4px;
    margin: 15px 0 10px;
    font-style: italic;
}

.action-wrapper {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 20px;
}

.new-temple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tertiary-color);
    color: var(--dark-accent);
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(252, 204, 92, 0.3);
    width: 100%;
    margin-bottom: 10px;
    border: none;
    text-align: center;
}

.new-temple-btn i {
    color: var(--dark-accent);
    font-size: 1.4rem;
    margin-right: 12px;
    text-align: center;
}

.new-temple-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 33, 41, 0.4);
}

.new-temple-btn:hover i {
    color: var(--text-light);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(252, 204, 92, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 20px rgba(252, 204, 92, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 15px rgba(252, 204, 92, 0.3);
    }
}

.new-temple-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
}

.view-divider {
    margin-top: auto;
    margin-bottom: 15px;
    padding-top: 30px;
}

.view-divider span {
    background-color: rgba(252, 204, 92, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.alternative-options {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: auto;
}

.alt-option-btn {
    flex: 1;
    padding: 12px 0;
    border: 1px solid #e0e0e0;
    background-color: var(--background-light);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.alt-option-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.pix-mini-icon {
    height: 18px;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.alt-option-btn:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos para o botão de visualizar igreja */
.view-temple-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: var(--box-shadow);
    width: 100%;
    cursor: pointer;
    border: none;
    margin-bottom: 5px;
}

.view-temple-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.view-temple-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 33, 41, 0.2);
}

/* Estilos para o modal */
.temple-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.temple-modal-content {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    max-width: 850px;
    width: 95%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.temple-modal-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.temple-modal-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-style: italic;
    color: var(--text-secondary);
}

.slide-counter {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    opacity: 0.7;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .new-temple-content {
        flex-direction: column;
    }
    
    .new-temple-info {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 30px;
        order: 2; /* Mover o texto para depois dos botões */
    }
    
    .new-temple-action {
        width: 100%;
        position: relative;
        padding: 30px;
        order: 1; /* Mover os botões para antes do texto */
    }
    
    .action-wrapper {
        max-width: 500px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 25px 0 15px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 450px;
    flex: 1;
}

.footer-logo img {
    height: 55px;
    background-color: var(--text-light);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.footer-logo-text h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 5px;
    white-space: normal;
}

.footer-logo-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--tertiary-color);
    color: var(--text-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 204, 92, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.contact-info a {
    display: flex;
    align-items: center;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-info a i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

.contact-info a:hover {
    color: var(--tertiary-color);
}

.contact-info a .fab.fa-whatsapp {
    color: #25D366;
}

/* Estilo específico para o ícone do WhatsApp na área social */
.social-icons a .fa-whatsapp {
    color: var(--text-light);
}

.social-icons a:hover .fa-whatsapp {
    color: var(--text-secondary);
}

/* Garantir que outros ícones sociais assumam cor clara e escureçam no hover, igual ao WhatsApp */
.social-icons a .fa-facebook-f,
.social-icons a .fa-instagram,
.social-icons a .fa-youtube {
    color: var(--text-light);
    transition: color 0.25s ease;
}

.social-icons a:hover .fa-facebook-f,
.social-icons a:hover .fa-instagram,
.social-icons a:hover .fa-youtube {
    color: var(--text-secondary);
}

.more-links {
    text-align: right;
}

.more-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px dotted var(--text-light);
}

.more-links a:hover {
    border-bottom: 1px solid var(--text-light);
}

.copyright {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.1rem;
    }
    
    header .container {
        flex-direction: column;
        align-items: center;
    }
    
    nav {
        width: 100%;
        margin-top: 10px;
    }
    
    nav ul {
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        padding: 5px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .donation-card {
        width: calc(50% - 20px);
        min-width: 150px;
    }
    
    .banks {
        gap: 20px;
    }
    
    .bank-card {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
        width: 100%;
    }
    
    .contact-info, .social-wrapper {
        align-items: center;
    }
    
    .contact-info a {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .more-links {
        text-align: center;
    }
    
    .qr-codes-container {
        max-width: 100%;
    }
    
    .church-info-content {
        flex-direction: column;
        align-items: center;
    }
    
    .pix-keys {
        width: 100%;
        order: 2;
    }
    
    .qr-code {
        width: 100%;
        max-width: 180px;
        order: 1;
        margin-bottom: 15px;
    }
    
    .qr-code img {
        width: 150px;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .temple-modal-content {
        padding: 15px;
    }
    
    .slide-indicators {
        margin-top: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .temple-slides {
        touch-action: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .slide-counter {
        font-size: 0.8rem;
    }
    
    .image-controls {
        margin-top: 12px;
        padding-bottom: 5px;
    }
    
    .control-btn {
        margin-bottom: 5px;
    }
    
    /* Melhorar controles em modo de toque */
    .slider-nav {
        opacity: 0.7;
        border: none;
    }
    
    .slider-nav:active {
        opacity: 1;
        transform: scale(0.95);
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1rem;
    }
    
    .logo img {
        height: 50px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero h2 {
        font-size: 1.7rem;
    }
    
    .donation-card {
        width: 100%;
        max-width: 280px;
        padding: 20px;
    }

    /* reduzir largura do botão em telas muito estreitas para caber melhor
       e permitir quebra de linha para 'Ver no\nmapa' */
    .map-link {
        width: 100px;
        flex: 0 0 100px;
        white-space: normal; /* permite que o texto quebre em duas linhas */
        padding: 6px 6px;
        word-break: break-word;
        text-align: center;
    }
    .map-link .map-text { display: block; line-height: 1.05 }
    
    .pix-section h2, .bank-transfer h2, .new-temple-section h2 {
        font-size: 1.8rem;
    }
    
    .donation-card .icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 0.99rem;
    }
    
    .logo img {
        height: 40px;
        margin-right: 8px;
    }
    
    .pix-content {
        gap: 20px;
    }
    
    .church-info, .qr-code {
        width: 100%;
    }
    
    .email, .cnpj, .pix-telefone, .pix-copia-cola {
        font-size: 0.95rem;
        padding: 8px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .email::after, .cnpj::after, .pix-telefone::after, .pix-copia-cola::after {
        font-size: 0.9rem;
        margin-left: 5px;
    }
    
    .pix-note {
        font-size: 0.95rem;
    }
    
    .church-info {
        padding: 15px;
    }
    
    footer {
        padding: 25px 0 10px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-logo-text h2 {
        font-size: 1rem;
    }
    
    .contact-info a {
        font-size: 0.9rem;
    }
    
    .qr-codes-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code {
        width: 100%;
        max-width: 220px;
        margin: 10px 0;
    }
    
    .qr-code img {
        width: 140px;
    }
    
    .qr-instruction-central p:first-child {
        font-size: 1.1rem;
    }
    
    .qr-instructions {
        font-size: 0.85rem !important;
    }
    
    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .temple-modal-content {
        padding: 10px;
    }
    
    .control-btn {
        width: 32px;
        height: 32px;
    }
    
    .control-btn i {
        font-size: 0.9rem;
    }
    
    .image-controls {
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .email, .cnpj, .pix-telefone, .pix-copia-cola {
        font-size: 0.85rem;
        padding: 8px 8px;
    }
    
    .email::after, .cnpj::after, .pix-telefone::after, .pix-copia-cola::after {
        font-size: 0.8rem;
        margin-left: 4px;
    }
    
    .pix-content, .church-info {
        padding: 10px;
    }
}

/* Classe para esconder o header */
.header-hidden {
    transform: translateY(-100%);
}

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

.pix-note {
    font-size: 1rem;
    margin-top: 25px;
    font-weight: bold;
    color: var(--primary-color);
}

.pix-copia-cola {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px dashed var(--secondary-color);
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    font-family: monospace;
    font-size: 0.85rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.pix-copia-cola-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    width: calc(100% - 30px); /* Espaço para o ícone */
}

.pix-copia-cola::after {
    content: '\f0c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.7;
    flex-shrink: 0;
    margin-left: 10px;
}

.pix-copia-cola:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.pix-copia-cola:hover::after {
    opacity: 1;
}

/* Estilos para o slideshow do modal */
.temple-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.temple-slides {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
    animation: fadeEffect 0.5s ease;
    transform: translateX(0);
    opacity: 1;
}

.slide.active.slide-from-right {
    animation: slideInRight 0.3s ease forwards;
}

.slide.active.slide-from-left {
    animation: slideInLeft 0.3s ease forwards;
}

.slide.active img {
    transition: transform 0.3s ease;
    cursor: grab;
    touch-action: none;
}

.slide.active img.zoomed {
    cursor: move;
}

@keyframes fadeEffect {
    from {opacity: 0.7;}
    to {opacity: 1;}
}

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

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

.slide img {
    width: 100%;
    display: block;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.slider-nav:hover {
    background-color: white;
    color: var(--secondary-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.action-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.action-divider::before,
.action-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.action-divider span {
    padding: 0 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.view-divider {
    margin-top: 30px;
    margin-bottom: 20px;
}

.view-divider span {
    background-color: rgba(252, 204, 92, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Controles de imagem */
.image-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.control-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--primary-color);
}

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

.control-btn i {
    font-size: 1rem;
}

@media (hover: none) and (pointer: coarse) {
    /* Estilos específicos para dispositivos com toque */
    .slide img {
        touch-action: none;
    }
    
    .control-btn:active {
        transform: scale(0.95);
        background-color: var(--primary-color);
        color: white;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
}

/* Mensagem de cópia */
.copy-message {
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -20px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}

/* Responsive Styles */
@media (min-width: 768px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    nav {
        margin-left: 20px;
    }
    
    nav ul {
        margin: 0;
    }
    
    .logo h1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo h1 br {
        display: none;
    }
}

@media (min-width: 1200px) {
    .donation-options {
        justify-content: center;
    }
    
    .donation-card {
        width: calc(20% - 20px);
        min-width: 180px;
        max-width: 200px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .donation-options {
        justify-content: center;
    }
    
    .donation-card {
        width: calc(25% - 20px);
        min-width: 180px;
        max-width: 200px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .donation-card {
        width: calc(33.333% - 20px);
        min-width: 170px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .donation-card {
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .donation-card:active {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        background-color: rgba(var(--primary-rgb), 0.1);
    }
    
    .tab-button:active {
        transform: scale(0.97);
        background-color: var(--highlight-color);
        color: white;
    }
    
    .new-temple-btn:active, 
    .alt-option-btn:active, 
    .view-temple-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.4);
    }
    
    .slider-nav:active,
    .control-btn:active {
        transform: scale(0.9);
        opacity: 0.8;
    }
    
    .pix-value:active,
    .tab-button:active {
        opacity: 0.8;
    }
    
    /* Adiciona feedback visual para elementos clicáveis */
    .pix-copia-cola:active,
    .cnpj:active,
    .pix-telefone:active {
        background-color: rgba(var(--primary-rgb), 0.2);
        transform: scale(0.98);
    }
    
    /* Efeitos sutis sem necessidade de clique - apenas o recomendado */
    .donation-card.recommended {
        animation: recommended-float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
        box-shadow: 0 8px 25px rgba(148, 4, 4, 0.25);
        position: relative;
        z-index: 5;
    }
    
    @keyframes recommended-float {
        0%, 100% {
            transform: translateY(0) scale(1.05);
        }
        50% {
            transform: translateY(-5px) scale(1.05);
        }
    }
    
    @keyframes glow {
        0%, 100% {
            box-shadow: 0 8px 25px rgba(148, 4, 4, 0.25);
        }
        50% {
            box-shadow: 0 12px 30px rgba(148, 4, 4, 0.4);
        }
    }
    
    .donation-card.recommended .badge {
        position: relative;
        overflow: hidden;
    }
    
    .donation-card.recommended .badge::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: badge-shine 2s infinite;
    }
    
    @keyframes badge-shine {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }
} 