/* Tema Páscoa - Página Principal */

.theme-pascoa {
    --pascoa-verde: #7cb342;
    --pascoa-verde-claro: #aed581;
    --pascoa-amarelo: #fff59d;
    --pascoa-rosa: #f48fb1;
    --pascoa-lavanda: #ce93d8;
    --pascoa-azul-claro: #81d4fa;
    --pascoa-branco: #fffde7;
}

/* Header com toque de Páscoa */
.theme-pascoa .header {
    background: linear-gradient(180deg, #fffde7 0%, #f1f8e9 100%);
    border-bottom: 2px solid #aed581;
}

.theme-pascoa .main-nav a:hover,
.theme-pascoa .main-nav a.active {
    color: #7cb342;
}

/* Hero Páscoa — três coelhos em destaque */
.theme-pascoa .hero.hero-pascoa {
    background: #e8f5e9;
    padding: 24px 20px;
    min-height: min(56vh, 520px);
    overflow: hidden;
}

.hero-bunnies {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    z-index: 0;
    padding: 0 4px;
}

.hero-bunny-col {
    overflow: hidden;
    min-height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero-bunny-col img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
}

.theme-pascoa .hero.hero-pascoa .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(51, 105, 30, 0.4) 100%
    );
    z-index: 1;
}

.theme-pascoa .hero.hero-pascoa .hero-content {
    z-index: 2;
    padding: 24px 28px 28px;
    max-width: 880px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.theme-pascoa .hero.hero-pascoa .hero-logo {
    margin-bottom: 10px;
}

.theme-pascoa .hero.hero-pascoa .hero-logo img {
    height: clamp(72px, 12vw, 110px);
}

.theme-pascoa .hero.hero-pascoa h1 {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.theme-pascoa .hero.hero-pascoa .hero-subtitle {
    margin-bottom: 12px;
    font-size: 1.4rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.theme-pascoa .hero.hero-pascoa .hero-pascoa-texto {
    margin-bottom: 14px !important;
    font-size: 1.25rem !important;
}

.theme-pascoa .hero.hero-pascoa .hero-decoration {
    margin-top: 12px;
    max-width: min(85%, 380px);
    opacity: 0.95;
}

.hero-pascoa-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7cb342, #8bc34a);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 22px;
    border-radius: 30px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.5);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-pascoa-texto {
    font-size: 1.25rem !important;
    color: #fffde7 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

@media (max-width: 900px) {
    .hero-bunnies {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }

    .hero-bunny-col img {
        min-height: 0;
        height: 95px;
        max-height: 95px;
        object-position: center center;
    }

    .theme-pascoa .hero.hero-pascoa {
        min-height: min(62vh, 480px);
    }
}

@media (max-width: 600px) {
    .hero-bunny-col img {
        height: 82px;
        max-height: 82px;
    }

    .theme-pascoa .hero.hero-pascoa {
        min-height: min(58vh, 440px);
    }

    .theme-pascoa .hero.hero-pascoa .hero-content {
        padding: 14px 16px 16px;
    }
}

/* Seção Notícias - tema Páscoa */
.theme-pascoa .section-noticias {
    background: linear-gradient(180deg, #f1f8e9 0%, #fffde7 100%);
}

.theme-pascoa .section-noticias h2 {
    color: #558b2f;
}

.theme-pascoa .noticia-destaque.noticia-pascoa {
    border-left-color: #7cb342;
    background: linear-gradient(135deg, #fff 0%, #f1f8e9 100%);
}

.theme-pascoa .noticia-badge-pascoa {
    background: linear-gradient(135deg, #7cb342, #9ccc65);
}

.theme-pascoa .link-noticia:hover {
    color: #558b2f;
}

/* Header da seção notícias com coelhos */
.noticias-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.noticias-coelho-decor {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #aed581;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.theme-pascoa .noticias-header h2 {
    margin: 0;
}

@media (max-width: 600px) {
    .noticias-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .noticias-coelho-decor {
        width: 40px;
    }
}

/* Imagem nos cards de notícia */
.noticia-card-imagem {
    margin: -32px -32px 20px -32px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f8e9 0%, #fffde7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.noticia-card-imagem img {
    width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: contain;
}

.theme-pascoa .noticias-placeholder-pascoa {
    border: 2px solid #aed581;
    background: linear-gradient(135deg, #fff 0%, #f1f8e9 100%);
}

.theme-pascoa .noticias-placeholder-pascoa h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #558b2f;
    margin-bottom: 12px;
}

/* Seção Reforço - detalhes Páscoa */
.theme-pascoa .section-reforco {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #fffde7 50%, rgba(241,248,233,0.5) 100%),
                url('../images/pattern.png') center/cover;
}

.theme-pascoa .section-reforco h2 {
    color: #558b2f;
}

/* Seção Galeria - título Páscoa */
.theme-pascoa .section-galeria h2 {
    color: #558b2f;
}

/* Footer - toque de Páscoa */
.theme-pascoa .footer {
    background: linear-gradient(180deg, #33691e 0%, #1a2744 100%);
}
