/* Tema Dia das Crianças - Página Principal */

.theme-criancas {
    --criancas-laranja: #ef6c00;
    --criancas-laranja-claro: #ffb74d;
    --criancas-amarelo: #ffca28;
    --criancas-amarelo-claro: #ffe082;
    --criancas-creme: #fff8ec;
}

.theme-criancas .header {
    background: linear-gradient(180deg, #fff8ec 0%, #ffe9c7 100%);
    border-bottom: 2px solid #ffb74d;
}

.theme-criancas .main-nav a:hover,
.theme-criancas .main-nav a.active {
    color: #ef6c00;
}

.theme-criancas .hero.hero-criancas {
    background: #ffe9c7;
    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-criancas .hero.hero-criancas .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(230, 81, 0, 0.4) 0%,
        rgba(239, 108, 0, 0.26) 40%,
        rgba(191, 54, 12, 0.42) 100%
    );
    z-index: 1;
}

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

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

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

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

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

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

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

.hero-criancas-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fb8c00, #ffca28);
    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(251, 140, 0, 0.45);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-criancas-texto {
    font-size: 1.25rem !important;
    color: #fff8ec !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    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-criancas .hero.hero-criancas {
        min-height: min(62vh, 480px);
    }
}

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

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

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

.theme-criancas .section-noticias {
    background: linear-gradient(180deg, #ffe9c7 0%, #fff8ec 100%);
}

.theme-criancas .section-noticias h2 {
    color: #ef6c00;
}

.theme-criancas .noticia-destaque.noticia-criancas {
    border-left-color: #ef6c00;
    background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
}

.theme-criancas .noticia-badge-criancas {
    background: linear-gradient(135deg, #fb8c00, #ffca28);
}

.theme-criancas .link-noticia:hover {
    color: #ef6c00;
}

.noticias-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.noticias-tema-decor {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffb74d;
    box-shadow: 0 2px 10px rgba(239, 108, 0, 0.22);
}

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

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

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

.noticia-card-imagem {
    margin: -32px -32px 20px -32px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe9c7 0%, #fff8ec 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-criancas .noticias-placeholder-criancas {
    border: 2px solid #ffb74d;
    background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
}

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

.theme-criancas .section-reforco {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff5e6 50%, rgba(255, 233, 199, 0.45) 100%),
                url('../images/pattern.png') center/cover;
}

.theme-criancas .section-reforco h2 {
    color: #ef6c00;
}

.theme-criancas .section-galeria h2 {
    color: #ef6c00;
}

.theme-criancas .footer {
    background: linear-gradient(180deg, #bf360c 0%, #1a2744 100%);
}
