/*
Theme Name: Pinguinho Futura Theme
Theme URI: https://escolapinguinhodegente.com/
Author: ChatGPT
Description: Tema infantil inspirado no modelo do Colégio Futura. Cores vibrantes (azul, amarelo e branco), estrutura responsiva e páginas internas personalizadas para apresentar a Escola Pinguinho de Gente e Educar. Contém seções para missão, visão, valores, atividades, estrutura, galeria e localização, além de um cabeçalho com logotipo centralizado e barra de contato superior.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: educational, school, responsive, blue, yellow
*/

/* Importação de Fontes */
@font-face {
    font-family: 'Dinneu';
    src: url('fonts/dinneuzeitgroteskltw01-_812426.latin.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Belinda';
    src: url('fonts/Belinda-W00-Regular.woff2') format('woff2'),
         url('fonts/Belinda-W00-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/*
 * Variáveis de cores para facilitar a manutenção do tema.
 */
:root {
    --primary-color: #3A54B4; /* Azul Royal (Source: color_18) */
    --secondary-color: rgb(251, 255, 3);
    --dark-color: #131C3C; /* Azul Escuro (Source: color_20) */
    --light-color: #F4F7F6;
    --white-color: #ffffff;
    --gray-color: #c6c6c6;
}

/* Reset básico */
/* body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

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

a:hover, a:focus {
    color: var(--secondary-color);
}

/* Barra de contato no topo */
/* Container genérico */
.container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Barra de contato no topo */
.top-bar {
    background-color: var(--primary-color); /* Preto ou azul muito escuro */
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    padding: 1rem;
}

.top-bar .container {
    align-items: center;
    text-align: center;
}

/* Banner da Logo */
.logo-banner {
    background-color: var(--secondary-color);
    padding: 6rem;
    text-align: center;
}

.section-image {
    display: flex;
    justify-content: space-around;
    height: auto;
    width: 100%;
    margin: 2rem 0;
}
.section-image img{
    width: 100%;
}

.logo-banner img {
    height: auto;
    width: 75%;
    margin: 0 auto;
}

/* Cabeçalho principal */
/* Cabeçalho principal */
/* Menu Principal (Barra Branca) */
header.site-header {
    background-color: var(--gray-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem;
}

.site-navigation {
    display: flex;
    justify-content: center;
}



/* Hero Video */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video base */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* extra height para acomodar o parallax */
    object-fit: cover;
    transform: translateY(0px);
    transition: transform 0.2s linear;
}

/* ANIMAÇÃO WIX FADE + ZOOM */
.reveal-bg video {
    opacity: 0;
    filter: blur(15px);
    transform: scale(1.2);
    transition: opacity 1.2s ease-out, transform 1.4s ease-out, filter 1.2s ease-out;
}

/* QUANDO APARECE */
.reveal-bg.visible video {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6); /* Azul escuro com transparência */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
}

.hero-overlay h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Seções genéricas */
.section {
    padding: 60px 20px;
}

.section-light {
    background-color: var(--light-color);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.column {
    flex: 1 1 280px;
    max-width: 400px;
}

/* Ícones das atividades */
.activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.activities .activity {
    background: var(--white-color);
    border: 2px solid var(--gray-color);
    border-radius: 8px;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.activities .activity:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.activities .activity i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.activities .activity h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.activities .activity p {
    font-size: 0.9rem;
}

/* Galeria de imagens */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Tabs para a página Estrutura */
.tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--gray-color);
    margin-bottom: 20px;
}

.tabs button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.tabs button.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

/* Rodapé */
/* Rodapé */
footer.site-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 5% 20px;
    font-size: 0.95rem;
}

footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

footer .footer-col {
    flex: 1 1 200px;
}

footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
/* SECTION COLUNAS */

.futura-dupla-coluna {
    display: flex;
    align-items: center;
    justify-content: space-between; /* muda para space-between */
    background: var(--secondary-color);
    gap: 40px;
}

.futura-dupla-coluna .col-texto {
    text-align: center; /* mantém centralizado */
    max-width: 500px;
    margin: 0 auto; /* garante que fique centralizado */
}

.futura-dupla-coluna h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.futura-dupla-coluna h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Belinda";
}

.futura-dupla-coluna p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.futura-dupla-coluna .btn-secondary {
    display: block;
    border: 2px solid #000;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: .3s;
}

.futura-dupla-coluna .btn-secondary:hover {
    background: var(--dark-color);
    color: var(--white-color)
}

.futura-dupla-coluna .col-imagem {
    line-height: 0;
}
.futura-dupla-coluna .col-imagem img {
    width: 100%;
    height: auto;
}

/* Responsivo */
@media (max-width: 900px) {
    .futura-dupla-coluna {
        flex-direction: column;
        text-align: center;
    }
    .futura-dupla-coluna .col-imagem img {
        width: 100%;
    }
    .logo-banner {
        padding: 3rem;
    }
    .site-navigation {
        padding: 1.5rem;
    }
    .icon-instagram {
        margin-left: 0;
    }
    .container {
        width: auto;
    }
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .hero-overlay p {
        font-size: 1rem;
    }
}

.menu-nav-icons a{
    color: #000000 !important;
}

.menu-nav-icons > .fa-whatsapp:hover {
    color: green !important;
}
