/* ========================================
   COLÉGIO MUNDIAL
   WEBSITE
======================================== */


/* ========================================
   CORES
======================================== */

:root {

    --azul: #0057A8;

    --azul-escuro: #003B73;

    --amarelo: #F9C400;

    --branco: #FFFFFF;

    --cinza-claro: #F5F7FA;

    --cinza: #64748B;

    --texto: #1E293B;

}


/* ========================================
   RESET
======================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: Arial, Helvetica, sans-serif;

    color: var(--texto);

    background: var(--branco);

    line-height: 1.6;

}


/* ========================================
   CONTAINER
======================================== */

.container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding-left: 40px;

    padding-right: 40px;

}


/* ========================================
   HEADER
======================================== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 82px;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #E5E7EB;

    z-index: 1000;

}


/* ========================================
   HEADER CONTAINER
======================================== */

.header-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* ========================================
   LOGO
======================================== */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: var(--azul);

    flex-shrink: 0;

}


.logo-placeholder {

    width: 48px;

    height: 48px;

    background: var(--azul);

    color: var(--amarelo);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    font-weight: 800;

    border-radius: 8px;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.logo-text span {

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

}


.logo-text strong {

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 0.5px;

}


/* ========================================
   MENU
======================================== */

.main-nav {

    display: flex;

    align-items: center;

    gap: 25px;

}


.main-nav a {

    position: relative;

    color: var(--texto);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    padding: 8px 0;

    transition: color 0.3s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    background: var(--amarelo);

    transition: width 0.3s ease;

}


.main-nav a:hover {

    color: var(--azul);

}


.main-nav a:hover::after {

    width: 100%;

}


/* ========================================
   BOTÕES DO HEADER
======================================== */

.header-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.btn-portal {

    color: var(--azul);

    border: 1px solid var(--azul);

    background: transparent;

}


.btn-portal:hover {

    background: var(--azul);

    color: var(--branco);

}


.btn-matricula {

    background: var(--amarelo);

    color: var(--azul-escuro);

    border: 1px solid var(--amarelo);

}


.btn-matricula:hover {

    background: var(--azul);

    border-color: var(--azul);

    color: var(--branco);

}


/* ========================================
   MENU MOBILE
======================================== */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 25px;

    height: 3px;

    background: var(--azul);

    margin: 5px auto;

    border-radius: 2px;

}



.hero-placeholder {

    min-height: 100vh;

    padding-top: 82px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background:

        linear-gradient(

            rgba(0, 59, 115, 0.85),

            rgba(0, 87, 168, 0.85)

        );

    color: var(--branco);

}


.hero-placeholder h1 {

    font-size: clamp(40px, 6vw, 80px);

    font-weight: 800;

    margin-bottom: 15px;

}


.hero-placeholder p {

    font-size: 22px;

    color: var(--amarelo);

    font-weight: 600;

}

/* ========================================
   HERO PRINCIPAL
======================================== */

.hero {

    position: relative;

    min-height: 100vh;

    padding-top: 82px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(

            110deg,

            var(--azul-escuro) 0%,

            var(--azul) 55%,

            #0874C9 100%

        );

}


/* ========================================
   OVERLAY
======================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(

            circle at 80% 30%,

            rgba(249, 196, 0, 0.15),

            transparent 30%

        );

    pointer-events: none;

}


/* ========================================
   CONTAINER HERO
======================================== */

.hero-container {

    position: relative;

    z-index: 2;

}


/* ========================================
   CONTEÚDO
======================================== */

.hero-content {

    max-width: 720px;

    color: var(--branco);

}


.hero-label {

    display: inline-block;

    margin-bottom: 20px;

    padding-left: 15px;

    border-left: 4px solid var(--amarelo);

    color: var(--amarelo);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;

}


.hero h1 {

    margin-bottom: 25px;

    font-size: clamp(48px, 7vw, 86px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2px;

}


.hero h1 span {

    color: var(--amarelo);

}


.hero p {

    max-width: 600px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 20px;

    line-height: 1.7;

}


/* ========================================
   BOTÕES DO HERO
======================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}


.hero-btn {

    min-height: 52px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition:

        transform 0.3s ease,

        background 0.3s ease,

        color 0.3s ease;

}


.hero-btn:hover {

    transform: translateY(-3px);

}


.hero-btn-primary {

    background: var(--amarelo);

    color: var(--azul-escuro);

}


.hero-btn-primary:hover {

    background: var(--branco);

}


.hero-btn-secondary {

    border: 2px solid rgba(255, 255, 255, 0.7);

    color: var(--branco);

    background: transparent;

}


.hero-btn-secondary:hover {

    background: var(--branco);

    color: var(--azul);

}


/* ========================================
   HERO — ACABAMENTO
========================================= */

.hero-content {

    animation:
        heroContent 0.9s ease forwards;

}


@keyframes heroContent {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.hero-image img {

    animation:
        heroImage 1.2s ease forwards;

}


@keyframes heroImage {

    from {

        opacity: 0;

        transform: scale(1.05);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}

/* ========================================
   INDICADOR DE SCROLL
======================================== */

.hero-scroll {

    position: absolute;

    z-index: 3;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.scroll-line {

    width: 1px;

    height: 45px;

    background: var(--amarelo);

}


/* ========================================
   ANIMAÇÃO DO HERO
======================================== */

.hero-content {

    animation: heroFadeIn 1s ease forwards;

}


@keyframes heroFadeIn {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 1150px) {

    .main-nav {

        gap: 15px;

    }

    .main-nav a {

        font-size: 13px;

    }

    .header-buttons {

        gap: 5px;

    }

        .hero {

        min-height: 100svh;

        padding-top: 70px;

    }


    .hero h1 {

        font-size: clamp(42px, 13vw, 60px);

        letter-spacing: -1px;

    }


    .hero p {

        font-size: 17px;

        line-height: 1.6;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-btn {

        width: 100%;

    }


    .hero-scroll {

        display: none;

    }

}


@media (max-width: 950px) {

    .main-nav,

    .header-buttons {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

}


@media (max-width: 600px) {

    .container {

        padding-left: 20px;

        padding-right: 20px;

    }

    .site-header {

        height: 70px;

    }

    .logo-placeholder {

        width: 42px;

        height: 42px;

    }

    .logo-text strong {

        font-size: 17px;

    }

    .hero-placeholder {

        padding-top: 70px;

    }

}

/* ========================================
   PORQUÊ ESCOLHER O COLÉGIO MUNDIAL
======================================== */

.why-us {

    padding: 120px 0;

    background: var(--branco);

}


/* ========================================
   CABEÇALHO DA SEÇÃO
======================================== */

.section-heading {

    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;

}


.section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--azul);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    margin-bottom: 20px;

    color: var(--azul-escuro);

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.section-heading h2 span {

    color: var(--azul);

}


.section-heading p {

    color: var(--cinza);

    font-size: 17px;

    line-height: 1.8;

}


/* ========================================
   GRID
======================================== */

.features-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


/* ========================================
   CARD
======================================== */

.feature-card {

    position: relative;

    min-height: 390px;

    padding: 35px 30px;

    background: var(--branco);

    border: 1px solid #E5E7EB;

    border-radius: 10px;

    overflow: hidden;

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        border-color 0.3s ease;

}


.feature-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--amarelo);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;

}


.feature-card:hover {

    transform: translateY(-8px);

    border-color: transparent;

    box-shadow: 0 20px 50px rgba(0, 59, 115, 0.12);

}


.feature-card:hover::before {

    transform: scaleX(1);

}


/* ========================================
   NÚMERO
======================================== */

.feature-number {

    position: absolute;

    top: 20px;

    right: 25px;

    color: #E8EEF5;

    font-size: 50px;

    font-weight: 800;

    line-height: 1;

}


/* ========================================
   ÍCONE
======================================== */

.feature-icon {

    width: 65px;

    height: 65px;

    margin-bottom: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #FFF8D6;

    border-radius: 12px;

    font-size: 30px;

}


/* ========================================
   TÍTULO
======================================== */

.feature-card h3 {

    margin-bottom: 15px;

    color: var(--azul-escuro);

    font-size: 21px;

    line-height: 1.3;

}


/* ========================================
   TEXTO
======================================== */

.feature-card p {

    margin-bottom: 25px;

    color: var(--cinza);

    font-size: 14px;

    line-height: 1.7;

}


/* ========================================
   LINK
======================================== */

.feature-card a {

    color: var(--azul);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: color 0.3s ease;

}


.feature-card a:hover {

    color: var(--azul-escuro);

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 1100px) {

    .features-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .why-us {

        padding: 80px 0;

    }


    .section-heading {

        margin-bottom: 45px;

    }


    .section-heading h2 {

        font-size: 36px;

    }


    .section-heading p {

        font-size: 15px;

    }


    .features-grid {

        grid-template-columns: 1fr;

    }


    .feature-card {

        min-height: auto;

    }

}

/* ========================================
   NÍVEIS DE ENSINO
======================================== */

.education-levels {

    padding: 120px 0;

    background: var(--cinza-claro);

}


/* ========================================
   CABEÇALHO
======================================== */

.education-heading {

    margin-bottom: 60px;

}


.education-heading h2 span {

    display: inline;

}


/* ========================================
   GRID
======================================== */

.education-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}


/* ========================================
   CARD
======================================== */

.education-card {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    border-radius: 12px;

    color: var(--branco);

    isolation: isolate;

    transition:

        transform 0.4s ease,

        box-shadow 0.4s ease;

}


/* ========================================
   FUNDOS TEMPORÁRIOS
======================================== */

.education-infantil {

    background:

        linear-gradient(

            145deg,

            #0057A8,

            #003B73

        );

}


.education-primario {

    background:

        linear-gradient(

            145deg,

            #0874C9,

            #0057A8

        );

}


.education-secundario {

    background:

        linear-gradient(

            145deg,

            #003B73,

            #00294F

        );

}


/* ========================================
   DECORAÇÃO
======================================== */

.education-card::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    right: -80px;

    top: -80px;

    border: 1px solid rgba(249, 196, 0, 0.35);

    border-radius: 50%;

    z-index: -1;

}


.education-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to top,

            rgba(0, 0, 0, 0.7),

            rgba(0, 0, 0, 0.05)

        );

    z-index: -1;

}


/* ========================================
   CONTEÚDO
======================================== */

.education-card-content {

    width: 100%;

    padding: 40px 35px;

}


.education-number {

    position: absolute;

    top: 25px;

    right: 30px;

    color: rgba(255, 255, 255, 0.15);

    font-size: 70px;

    font-weight: 800;

    line-height: 1;

}


.education-tag {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--amarelo);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.education-card h3 {

    margin-bottom: 18px;

    font-size: 34px;

    line-height: 1.05;

    font-weight: 800;

}


.education-card p {

    max-width: 400px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 14px;

    line-height: 1.7;

}


.education-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--branco);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


.education-card a span {

    color: var(--amarelo);

    font-size: 20px;

    transition: transform 0.3s ease;

}


.education-card a:hover span {

    transform: translateX(6px);

}


/* ========================================
   HOVER
======================================== */

.education-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 25px 60px rgba(0, 59, 115, 0.25);

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 900px) {

    .education-grid {

        grid-template-columns: 1fr;

    }


    .education-card {

        min-height: 430px;

    }

}


@media (max-width: 600px) {

    .education-levels {

        padding: 80px 0;

    }


    .education-card-content {

        padding: 30px;

    }


    .education-card h3 {

        font-size: 30px;

    }

}

/* ========================================
   SOBRE O COLÉGIO MUNDIAL
======================================== */

.about-school {

    padding: 130px 0;

    background: var(--branco);

}


/* ========================================
   GRID
======================================== */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

}


/* ========================================
   ÁREA VISUAL
======================================== */

.about-visual {

    position: relative;

    min-height: 560px;

}


.about-image-main {

    position: absolute;

    top: 0;

    left: 0;

    width: 85%;

    height: 500px;

    overflow: hidden;

    border-radius: 12px;

}


.image-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:

        linear-gradient(

            145deg,

            var(--azul),

            var(--azul-escuro)

        );

    color: var(--branco);

    font-size: 32px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 2px;

}


.about-accent {

    position: absolute;

    right: 0;

    bottom: 20px;

    width: 55%;

    height: 230px;

    background: var(--amarelo);

    border-radius: 10px;

    z-index: -1;

}


/* ========================================
   BADGE
======================================== */

.about-badge {

    position: absolute;

    right: 5%;

    top: 100px;

    width: 145px;

    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 50%;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}


.about-badge strong {

    font-size: 42px;

    line-height: 1;

}


.about-badge span {

    margin-top: 6px;

    text-align: center;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    line-height: 1.3;

}


/* ========================================
   CONTEÚDO
======================================== */

.about-content {

    max-width: 650px;

}


.about-content h2 {

    margin-bottom: 25px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -1.5px;

}


.about-content h2 span {

    color: var(--azul);

}


.about-content p {

    margin-bottom: 20px;

    color: var(--cinza);

    font-size: 16px;

    line-height: 1.8;

}


.about-content .about-intro {

    color: var(--texto);

    font-size: 18px;

    font-weight: 500;

}


/* ========================================
   ESTATÍSTICAS
======================================== */

.school-stats {

    display: flex;

    gap: 35px;

    margin: 35px 0;

    padding: 30px 0;

    border-top: 1px solid #E5E7EB;

    border-bottom: 1px solid #E5E7EB;

}


.stat {

    display: flex;

    flex-direction: column;

}


.stat strong {

    color: var(--azul);

    font-size: 34px;

    font-weight: 800;

    line-height: 1;

}


.stat span {

    margin-top: 8px;

    color: var(--cinza);

    font-size: 12px;

    line-height: 1.4;

}


/* ========================================
   BOTÃO
======================================== */

.about-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 22px;

    background: var(--azul);

    color: var(--branco);

    text-decoration: none;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.about-button span {

    color: var(--amarelo);

    font-size: 20px;

}


.about-button:hover {

    background: var(--azul-escuro);

    transform: translateY(-3px);

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 950px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-visual {

        max-width: 650px;

        width: 100%;

        margin: 0 auto;

    }

}


@media (max-width: 600px) {

    .about-school {

        padding: 80px 0;

    }


    .about-visual {

        min-height: 420px;

    }


    .about-image-main {

        width: 88%;

        height: 370px;

    }


    .about-accent {

        height: 170px;

    }


    .about-badge {

        width: 115px;

        height: 115px;

        top: 70px;

        right: 0;

    }


    .about-badge strong {

        font-size: 32px;

    }


    .school-stats {

        gap: 20px;

        justify-content: space-between;

    }


    .stat strong {

        font-size: 27px;

    }

}

/* ========================================
   VIDA ESCOLAR
======================================== */

.school-life {

    padding: 120px 0;

    background: var(--cinza-claro);

}


/* ========================================
   CABEÇALHO
======================================== */

.school-life-heading {

    margin-bottom: 60px;

}


.school-life-heading h2 span {

    color: var(--azul);

}


/* ========================================
   GRID
======================================== */

.activities-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 260px;

    gap: 18px;

}


/* ========================================
   CARD
======================================== */

.activity-card {

    position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    min-height: 260px;

    padding: 30px;

    border-radius: 10px;

    color: var(--branco);

    isolation: isolate;

    transition:

        transform 0.4s ease,

        box-shadow 0.4s ease;

}


/* CARD GRANDE */

.activity-large {

    grid-column: span 2;

    grid-row: span 2;

}


/* ========================================
   FUNDOS
======================================== */

.activity-sport {

    background:

        linear-gradient(

            135deg,

            #0057A8,

            #003B73

        );

}


.activity-culture {

    background:

        linear-gradient(

            135deg,

            #0874C9,

            #0057A8

        );

}


.activity-technology {

    background:

        linear-gradient(

            135deg,

            #003B73,

            #00294F

        );

}


.activity-clubs {

    background:

        linear-gradient(

            135deg,

            #F0B900,

            #D99400

        );

}


.activity-projects {

    background:

        linear-gradient(

            135deg,

            #0057A8,

            #006EC7

        );

}


.activity-events {

    background:

        linear-gradient(

            135deg,

            #003B73,

            #0057A8

        );

}


/* ========================================
   OVERLAY
======================================== */

.activity-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to top,

            rgba(0, 0, 0, 0.75),

            rgba(0, 0, 0, 0.05)

        );

    z-index: -1;

}


/* ========================================
   CONTEÚDO
======================================== */

.activity-content {

    position: relative;

    z-index: 2;

}


.activity-icon {

    display: block;

    margin-bottom: 12px;

    font-size: 30px;

}


.activity-category {

    display: block;

    margin-bottom: 8px;

    color: var(--amarelo);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.activity-card h3 {

    margin-bottom: 10px;

    font-size: 27px;

    font-weight: 800;

}


.activity-card p {

    max-width: 420px;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    line-height: 1.6;

}


.activity-card a {

    color: var(--branco);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

}


.activity-card a:hover {

    color: var(--amarelo);

}


/* ========================================
   HOVER
======================================== */

.activity-card:hover {

    transform: translateY(-7px);

    box-shadow:

        0 20px 45px rgba(0, 59, 115, 0.2);

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 950px) {

    .activities-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .activity-large {

        grid-column: span 2;

    }

}


@media (max-width: 600px) {

    .school-life {

        padding: 80px 0;

    }


    .activities-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: auto;

    }


    .activity-large {

        grid-column: span 1;

        grid-row: span 1;

    }


    .activity-card {

        min-height: 300px;

    }

}

/* ========================================
   NOTÍCIAS
======================================== */

.news-section {

    padding: 120px 0;

    background: var(--branco);

}


/* ========================================
   CABEÇALHO
======================================== */

.news-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;

}


.news-header h2 {

    margin-top: 8px;

    color: var(--azul-escuro);

    font-size: clamp(36px, 5vw, 55px);

    line-height: 1.1;

}


.news-header h2 span {

    color: var(--azul);

}


.view-all {

    padding-bottom: 8px;

    color: var(--azul);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


.view-all:hover {

    color: var(--azul-escuro);

}


/* ========================================
   GRID
======================================== */

.news-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


/* ========================================
   CARD
======================================== */

.news-card {

    overflow: hidden;

    background: var(--branco);

    border: 1px solid #E5E7EB;

    border-radius: 10px;

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease;

}


.news-card:hover {

    transform: translateY(-7px);

    box-shadow:

        0 20px 45px rgba(0, 59, 115, 0.12);

}


/* ========================================
   IMAGEM TEMPORÁRIA
======================================== */

.news-image {

    position: relative;

    height: 250px;

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    padding: 20px;

}


.news-image-1 {

    background:

        linear-gradient(

            135deg,

            var(--azul),

            var(--azul-escuro)

        );

}


.news-image-2 {

    background:

        linear-gradient(

            135deg,

            #0874C9,

            var(--azul)

        );

}


.news-image-3 {

    background:

        linear-gradient(

            135deg,

            var(--azul-escuro),

            #00294F

        );

}


.news-category {

    padding: 7px 11px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 4px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* ========================================
   CONTEÚDO
======================================== */

.news-content {

    padding: 28px;

}


.news-date {

    display: block;

    margin-bottom: 10px;

    color: var(--azul);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.news-content h3 {

    margin-bottom: 12px;

    color: var(--azul-escuro);

    font-size: 20px;

    line-height: 1.35;

}


.news-content p {

    margin-bottom: 20px;

    color: var(--cinza);

    font-size: 13px;

    line-height: 1.7;

}


.news-content a {

    color: var(--azul);

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

}

/* ========================================
   EVENTOS
======================================== */

.events-section {

    padding: 110px 0;

    background: var(--azul-escuro);

    color: var(--branco);

}


/* ========================================
   GRID
======================================== */

.events-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: center;

}


/* ========================================
   INTRODUÇÃO
======================================== */

.events-intro h2 {

    margin: 10px 0 20px;

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1.05;

}


.events-intro h2 span {

    color: var(--amarelo);

}


.events-intro p {

    max-width: 430px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    line-height: 1.8;

}


.events-button {

    display: inline-flex;

    padding: 14px 20px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.events-button:hover {

    background: var(--branco);

}


/* ========================================
   LISTA
======================================== */

.events-list {

    display: flex;

    flex-direction: column;

}


.event-item {

    display: grid;

    grid-template-columns: 80px 1fr 35px;

    align-items: center;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

}


.event-item:first-child {

    border-top: 1px solid rgba(255, 255, 255, 0.15);

}


/* ========================================
   DATA
======================================== */

.event-date {

    width: 65px;

    height: 70px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 6px;

}


.event-date strong {

    font-size: 27px;

    line-height: 1;

}


.event-date span {

    margin-top: 4px;

    font-size: 10px;

    font-weight: 800;

}


/* ========================================
   INFORMAÇÕES
======================================== */

.event-info > span {

    color: var(--amarelo);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.event-info h3 {

    margin: 6px 0;

    font-size: 17px;

    line-height: 1.4;

}


.event-info p {

    color: rgba(255, 255, 255, 0.6);

    font-size: 12px;

}


/* ========================================
   SETA
======================================== */

.event-arrow {

    color: var(--amarelo);

    text-decoration: none;

    font-size: 24px;

    transition: transform 0.3s ease;

}


.event-item:hover .event-arrow {

    transform: translateX(5px);

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 900px) {

    .news-grid {

        grid-template-columns: 1fr 1fr;

    }


    .events-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }

}


@media (max-width: 600px) {

    .news-section,

    .events-section {

        padding: 80px 0;

    }


    .news-header {

        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 40px;

    }


    .news-grid {

        grid-template-columns: 1fr;

    }


    .news-image {

        height: 220px;

    }


    .event-item {

        grid-template-columns: 65px 1fr;

        gap: 15px;

    }


    .event-arrow {

        display: none;

    }

}

/* ========================================
   GALERIA
======================================== */

.gallery-section {

    padding: 120px 0;

    background: var(--branco);

}


/* ========================================
   CABEÇALHO
======================================== */

.gallery-header {

    display: grid;

    grid-template-columns: 1fr 0.6fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;

}


.gallery-header h2 {

    margin-top: 8px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

}


.gallery-header h2 span {

    color: var(--azul);

}


.gallery-header p {

    color: var(--cinza);

    font-size: 15px;

    line-height: 1.8;

}


/* ========================================
   GRID DA GALERIA
======================================== */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 230px;

    gap: 15px;

}


/* ========================================
   ITEM
======================================== */

.gallery-item {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 8px;

    text-decoration: none;

}


.gallery-item-large {

    grid-column: span 2;

    grid-row: span 2;

}


.gallery-item-wide {

    grid-column: span 2;

}


/* ========================================
   PLACEHOLDERS
======================================== */

.gallery-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: var(--azul-escuro);

    color: rgba(255,255,255,0.6);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 2px;

    transition: transform 0.5s ease;

}


.gallery-blue {

    background: var(--azul);

}


.gallery-yellow {

    background: #DFA900;

}


.gallery-dark {

    background: #00294F;

}


.gallery-blue-dark {

    background: #0057A8;

}


.gallery-light {

    background: #0874C9;

}


/* ========================================
   OVERLAY
======================================== */

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    background:

        linear-gradient(

            to top,

            rgba(0, 41, 79, 0.8),

            transparent 60%

        );

    opacity: 0;

    transition: opacity 0.3s ease;

}


.gallery-overlay span {

    color: var(--branco);

    font-size: 12px;

    font-weight: 800;

}


.gallery-item:hover .gallery-placeholder {

    transform: scale(1.06);

}


.gallery-item:hover .gallery-overlay {

    opacity: 1;

}


/* ========================================
   BOTÃO
======================================== */

.gallery-button-wrapper {

    display: flex;

    justify-content: center;

    margin-top: 45px;

}


.gallery-button {

    padding: 15px 25px;

    background: var(--azul);

    color: var(--branco);

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.gallery-button:hover {

    background: var(--azul-escuro);

    transform: translateY(-3px);

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 900px) {

    .gallery-header {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .gallery-item-large {

        grid-column: span 2;

    }

}


@media (max-width: 600px) {

    .gallery-section {

        padding: 80px 0;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

    }


    .gallery-item-large,

    .gallery-item-wide {

        grid-column: span 1;

    }

}

/* ========================================
   MATRÍCULAS / ADMISSÕES
========================================= */

.admissions-section {

    padding: 110px 0;

    background: var(--cinza-claro);

}


/* ========================================
   CAIXA PRINCIPAL
======================================== */

.admissions-box {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 80px;

    padding: 70px;

    overflow: hidden;

    background: var(--azul);

    border-radius: 14px;

    color: var(--branco);

}


.admissions-box::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    right: -180px;

    top: -220px;

    border: 1px solid rgba(249, 196, 0, 0.35);

    border-radius: 50%;

}


.admissions-box::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    left: -130px;

    bottom: -160px;

    background: rgba(249, 196, 0, 0.08);

    border-radius: 50%;

}


/* ========================================
   CONTEÚDO
======================================== */

.admissions-content {

    position: relative;

    z-index: 2;

}


.admissions-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--amarelo);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.admissions-content h2 {

    margin-bottom: 22px;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -1.5px;

}


.admissions-content h2 span {

    display: block;

    color: var(--amarelo);

}


.admissions-content > p {

    max-width: 600px;

    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.8;

}


/* ========================================
   BOTÕES
======================================== */

.admissions-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.admission-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.admission-primary {

    background: var(--amarelo);

    color: var(--azul-escuro);

}


.admission-primary:hover {

    background: var(--branco);

}


.admission-secondary {

    border: 1px solid rgba(255, 255, 255, 0.5);

    color: var(--branco);

}


.admission-secondary:hover {

    background: var(--branco);

    color: var(--azul-escuro);

}


/* ========================================
   PASSOS
======================================== */

.admissions-steps {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

}


.admission-step {

    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);

}


.admission-step:first-child {

    padding-top: 0;

}


.admission-step:last-child {

    border-bottom: none;

}


.step-number {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 50%;

    font-size: 13px;

    font-weight: 800;

}


.admission-step h3 {

    margin-bottom: 6px;

    font-size: 17px;

}


.admission-step p {

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.6;

}


/* ========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 900px) {

    .admissions-box {

        grid-template-columns: 1fr;

        gap: 55px;

        padding: 55px;

    }

}


@media (max-width: 600px) {

    .admissions-section {

        padding: 80px 0;

    }


    .admissions-box {

        padding: 40px 25px;

    }


    .admissions-content h2 {

        font-size: 40px;

    }


    .admissions-buttons {

        flex-direction: column;

    }


    .admission-btn {

        width: 100%;

    }

}

/* ========================================
   CONTACTOS
========================================= */

.contact-section {

    padding: 120px 0;

    background: var(--cinza-claro);

}


.contact-grid {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;

    align-items: start;

}


/* ========================================
   INFORMAÇÕES
========================================= */

.contact-info {

    padding-top: 10px;

}


.contact-info h2 {

    margin: 10px 0 20px;

    color: var(--azul-escuro);

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1.05;

}


.contact-info h2 span {

    color: var(--azul);

}


.contact-info > p {

    max-width: 500px;

    margin-bottom: 40px;

    color: var(--cinza);

    font-size: 15px;

    line-height: 1.8;

}


/* ========================================
   ITEM DE CONTACTO
========================================= */

.contact-item {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 24px;

}


.contact-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 8px;

    font-size: 19px;

}


.contact-item div:last-child {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.contact-item span {

    color: var(--azul);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-item strong {

    color: var(--azul-escuro);

    font-size: 14px;

    font-weight: 600;

}


/* ========================================
   REDES SOCIAIS
========================================= */

.social-links {

    display: flex;

    gap: 10px;

    margin-top: 35px;

}


.social-links a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--azul);

    color: var(--branco);

    border-radius: 50%;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.social-links a:hover {

    background: var(--amarelo);

    color: var(--azul-escuro);

    transform: translateY(-3px);

}


/* ========================================
   FORMULÁRIO
========================================= */

.contact-form-wrapper {

    padding: 45px;

    background: var(--branco);

    border-radius: 12px;

    box-shadow:

        0 15px 50px rgba(0, 59, 115, 0.08);

}


.contact-form-header {

    margin-bottom: 30px;

}


.contact-form-header > span {

    color: var(--azul);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-form-header h3 {

    margin-top: 8px;

    color: var(--azul-escuro);

    font-size: 27px;

}


/* ========================================
   FORM ROW
========================================= */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.form-group {

    display: flex;

    flex-direction: column;

    margin-bottom: 20px;

}


.form-group label {

    margin-bottom: 8px;

    color: var(--azul-escuro);

    font-size: 12px;

    font-weight: 700;

}


.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid #DDE3EA;

    border-radius: 5px;

    outline: none;

    background: var(--branco);

    color: var(--texto);

    font-family: inherit;

    font-size: 13px;

    transition:

        border-color 0.3s ease,

        box-shadow 0.3s ease;

}


.form-group textarea {

    resize: vertical;

    min-height: 130px;

}


.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    border-color: var(--azul);

    box-shadow:

        0 0 0 3px rgba(0, 87, 168, 0.08);

}


/* ========================================
   BOTÃO
========================================= */

.contact-submit {

    width: 100%;

    min-height: 52px;

    border: none;

    border-radius: 5px;

    background: var(--azul);

    color: var(--branco);

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.contact-submit:hover {

    background: var(--azul-escuro);

    transform: translateY(-2px);

}


/* ========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }

}


@media (max-width: 600px) {

    .contact-section {

        padding: 80px 0;

    }


    .contact-form-wrapper {

        padding: 30px 22px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

}

/* ========================================
   LOCALIZAÇÃO
========================================= */

.location-section {

    padding: 110px 0;

    background: var(--branco);

}


.location-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    align-items: stretch;

}


/* ========================================
   CONTEÚDO
========================================= */

.location-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.location-content h2 {

    margin: 10px 0 20px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.05;

}


.location-content h2 span {

    color: var(--azul);

}


.location-content > p {

    margin-bottom: 30px;

    color: var(--cinza);

    font-size: 15px;

    line-height: 1.8;

}


/* ========================================
   DETALHES
========================================= */

.location-details {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 30px;

}


.location-details div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.location-details strong {

    color: var(--azul);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.location-details span {

    color: var(--azul-escuro);

    font-size: 14px;

}


/* ========================================
   BOTÃO
========================================= */

.map-button {

    align-self: flex-start;

    padding: 14px 22px;

    background: var(--azul);

    color: var(--branco);

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.map-button:hover {

    background: var(--azul-escuro);

    transform: translateY(-2px);

}


/* ========================================
   MAPA
========================================= */

.map-container {

    min-height: 480px;

    overflow: hidden;

    border-radius: 10px;

    box-shadow:

        0 15px 45px rgba(0, 59, 115, 0.12);

}


.map-container iframe {

    width: 100%;

    height: 100%;

    min-height: 480px;

    display: block;

    border: 0;

}


/* ========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 850px) {

    .location-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .map-container,

    .map-container iframe {

        min-height: 400px;

    }

}


@media (max-width: 600px) {

    .location-section {

        padding: 80px 0;

    }

}

/* ========================================
   FOOTER
========================================= */

.site-footer {

    padding: 80px 0 25px;

    background: var(--azul-escuro);

    color: var(--branco);

}


/* ========================================
   FOOTER PRINCIPAL
========================================= */

.footer-main {

    display: grid;

    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;

    gap: 60px;

    padding-bottom: 60px;

}


/* ========================================
   LOGO
========================================= */

.footer-logo {

    display: flex;

    flex-direction: column;

    width: max-content;

    color: var(--branco);

    text-decoration: none;

    line-height: 0.9;

}


.footer-logo span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.footer-logo strong {

    margin-top: 4px;

    color: var(--amarelo);

    font-size: 28px;

    letter-spacing: 1px;

}


.footer-brand > p {

    max-width: 280px;

    margin: 20px 0 25px;

    color: rgba(255,255,255,0.6);

    font-size: 13px;

    line-height: 1.7;

}


/* ========================================
   REDES SOCIAIS
========================================= */

.footer-social {

    display: flex;

    gap: 9px;

}


.footer-social a {

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50%;

    color: var(--branco);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.footer-social a:hover {

    background: var(--amarelo);

    border-color: var(--amarelo);

    color: var(--azul-escuro);

}


/* ========================================
   COLUNAS
========================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.footer-column h3 {

    margin-bottom: 10px;

    color: var(--amarelo);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.footer-column a,

.footer-column span {

    color: rgba(255,255,255,0.65);

    text-decoration: none;

    font-size: 12px;

    line-height: 1.6;

    transition: color 0.3s ease;

}


.footer-column a:hover {

    color: var(--amarelo);

}


/* ========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.12);

}


.footer-bottom p {

    color: rgba(255,255,255,0.45);

    font-size: 11px;

}


.footer-bottom div {

    display: flex;

    gap: 25px;

}


.footer-bottom a {

    color: rgba(255,255,255,0.45);

    text-decoration: none;

    font-size: 11px;

}


.footer-bottom a:hover {

    color: var(--amarelo);

}


/* ========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 900px) {

    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 45px;

    }

}


@media (max-width: 600px) {

    .site-footer {

        padding-top: 60px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-bottom div {

        flex-direction: column;

        gap: 10px;

    }

}

/* ========================================
   HEADER MODERNO
========================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #E5E7EB;

    backdrop-filter: blur(12px);

    transition: all 0.3s ease;

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* ========================================
   LOGO
========================================= */

.site-logo {

    display: flex;

    flex-direction: column;

    flex-shrink: 0;

    color: var(--azul-escuro);

    text-decoration: none;

    line-height: 0.9;

}


.site-logo span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.site-logo strong {

    margin-top: 5px;

    color: var(--azul);

    font-size: 25px;

    letter-spacing: 1px;

}


/* ========================================
   MENU
========================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 25px;

}


.main-nav a {

    position: relative;

    padding: 10px 0;

    color: var(--azul-escuro);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: color 0.3s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 2px;

    width: 0;

    height: 2px;

    background: var(--amarelo);

    transition: width 0.3s ease;

}


.main-nav a:hover,

.main-nav a.active {

    color: var(--azul);

}


.main-nav a:hover::after,

.main-nav a.active::after {

    width: 100%;

}


/* ========================================
   BOTÃO MATRÍCULA
========================================= */

.header-admission {

    flex-shrink: 0;

    padding: 13px 20px;

    background: var(--azul);

    color: var(--branco);

    border-radius: 5px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.header-admission:hover {

    background: var(--azul-escuro);

    transform: translateY(-2px);

}


/* ========================================
   BOTÃO MOBILE
========================================= */

.mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    padding: 9px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.mobile-menu-button span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    background: var(--azul-escuro);

    transition: all 0.3s ease;

}


/* ========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .main-nav {

        gap: 15px;

    }


    .main-nav a {

        font-size: 11px;

    }


    .header-admission {

        padding: 11px 15px;

    }

}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .header-inner {

        min-height: 72px;

    }


    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 25px 25px;

        background: var(--branco);

        border-bottom: 1px solid #E5E7EB;

        box-shadow:

            0 15px 30px rgba(0, 0, 0, 0.08);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: all 0.3s ease;

    }


    .main-nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .main-nav a {

        padding: 14px 0;

        border-bottom: 1px solid #F0F0F0;

        font-size: 13px;

    }


    .main-nav a:last-child {

        border-bottom: 0;

    }


    .main-nav a::after {

        display: none;

    }


    .header-admission {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .mobile-menu-button.active span:nth-child(1) {

        transform:

            translateY(7px)

            rotate(45deg);

    }


    .mobile-menu-button.active span:nth-child(2) {

        opacity: 0;

    }


    .mobile-menu-button.active span:nth-child(3) {

        transform:

            translateY(-7px)

            rotate(-45deg);

    }

}

/* ========================================
   WHATSAPP
========================================= */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25D366;

    color: white;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:

        0 8px 25px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;

}


.whatsapp-button span {

    font-size: 21px;

    font-weight: 800;

}


.whatsapp-button:hover {

    transform: scale(1.08);

}


/* TOOLTIP */

.whatsapp-tooltip {

    position: absolute;

    right: 70px;

    white-space: nowrap;

    padding: 9px 13px;

    background: var(--azul-escuro);

    color: var(--branco);

    border-radius: 5px;

    font-size: 11px;

    opacity: 0;

    visibility: hidden;

    transform: translateX(10px);

    transition: all 0.3s ease;

}


.whatsapp-button:hover .whatsapp-tooltip {

    opacity: 1;

    visibility: visible;

    transform: translateX(0);

}


@media (max-width: 600px) {

    .whatsapp-button {

        right: 18px;

        bottom: 18px;

        width: 52px;

        height: 52px;

    }

}

/* ========================================
   VOLTAR AO TOPO
========================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 95px;

    z-index: 899;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #DDE3EA;

    background: var(--branco);

    color: var(--azul);

    border-radius: 50%;

    cursor: pointer;

    font-size: 20px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: all 0.3s ease;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--azul);

    color: var(--branco);

}


@media (max-width: 600px) {

    .back-to-top {

        right: 18px;

        bottom: 82px;

        width: 40px;

        height: 40px;

    }

}

/* ========================================
   NAVEGAÇÃO SUAVE
========================================= */

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}

/* ========================================
   ANIMAÇÕES DE ENTRADA
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ANIMAÇÃO DOS CARDS
========================================= */

.news-card,
.activity-card,
.gallery-item,
.event-item {

    will-change: transform;

}


/* atraso entre cards */

.news-card:nth-child(2) {
    transition-delay: 0.1s;
}

.news-card:nth-child(3) {
    transition-delay: 0.2s;
}


.activity-card:nth-child(2) {
    transition-delay: 0.05s;
}

.activity-card:nth-child(3) {
    transition-delay: 0.1s;
}

.activity-card:nth-child(4) {
    transition-delay: 0.15s;
}

.activity-card:nth-child(5) {
    transition-delay: 0.2s;
}

.activity-card:nth-child(6) {
    transition-delay: 0.25s;
}

/* ========================================
   BOTÕES
========================================= */

.hero-btn,
.about-button,
.events-button,
.gallery-button,
.admission-btn,
.map-button,
.header-admission {

    position: relative;

    overflow: hidden;

}


.hero-btn::before,
.about-button::before,
.events-button::before,
.gallery-button::before,
.admission-btn::before,
.map-button::before,
.header-admission::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,0.25),

            transparent

        );

    transform: skewX(-20deg);

    transition: left 0.6s ease;

}


.hero-btn:hover::before,
.about-button:hover::before,
.events-button:hover::before,
.gallery-button:hover::before,
.admission-btn:hover::before,
.map-button:hover::before,
.header-admission:hover::before {

    left: 140%;

}

/* ========================================
   AJUSTES MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, 1200px);
        margin-inline: auto;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .section-title {
        font-size: 36px;
    }

    .education-levels,
    .school-life,
    .news-section,
    .events-section,
    .gallery-section,
    .admissions-section,
    .contact-section,
    .location-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        width: 100%;
    }

    .map-container,
    .map-container iframe {
        width: 100%;
    }

}

/* ========================================
   HERO DAS PÁGINAS INTERNAS
========================================= */

.page-hero {

    padding: 150px 0 100px;

    background: var(--azul-escuro);

    color: var(--branco);

    position: relative;

    overflow: hidden;

}


.page-hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -100px;

    top: -100px;

    border-radius: 50%;

    background: var(--amarelo);

    opacity: 0.12;

}


.page-hero .section-label {

    color: var(--amarelo);

}


.page-hero h1 {

    max-width: 800px;

    margin: 20px 0;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1.05;

}


.page-hero h1 span {

    color: var(--amarelo);

    display: block;

}


.page-hero p {

    max-width: 650px;

    font-size: 17px;

    line-height: 1.8;

    opacity: 0.85;

}


@media (max-width: 600px) {

    .page-hero {

        padding: 110px 0 75px;

    }


    .page-hero h1 {

        font-size: 42px;

    }


    .page-hero p {

        font-size: 14px;

    }

}

/* ========================================
   PÁGINA DE ENSINO
========================================= */

.education-introduction {

    padding: 110px 0;

    background: var(--branco);

}


.education-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;

    align-items: start;

}


.education-intro-grid h2 {

    margin-top: 20px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

}


.education-intro-grid h2 span {

    display: block;

    color: var(--azul);

}


.education-intro-grid p {

    margin-bottom: 20px;

    color: #59636E;

    font-size: 16px;

    line-height: 1.8;

}


/* ========================================
   PROGRAMAS
========================================= */

.education-programs {

    padding: 110px 0;

    background: #F5F7FA;

}


.education-program-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 55px;

}


.education-program-card {

    position: relative;

    padding: 45px 35px;

    background: var(--branco);

    border: 1px solid #E3E7EB;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.education-program-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.09);

}


.education-program-card.featured {

    background: var(--azul);

    color: var(--branco);

    border-color: var(--azul);

}


.program-number {

    margin-bottom: 35px;

    font-size: 14px;

    font-weight: 800;

    color: var(--amarelo);

}


.education-tag {

    display: inline-block;

    margin-bottom: 15px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--azul);

}


.featured .education-tag {

    color: var(--amarelo);

}


.education-program-card h3 {

    margin-bottom: 20px;

    font-size: 31px;

    line-height: 1.1;

}


.education-program-card p {

    margin-bottom: 30px;

    color: #65707A;

    line-height: 1.75;

}


.featured p {

    color: rgba(255,255,255,0.78);

}


.program-features {

    display: flex;

    flex-direction: column;

    gap: 14px;

    padding-top: 25px;

    border-top: 1px solid #E5E8EB;

}


.featured .program-features {

    border-color:
        rgba(255,255,255,0.2);

}


.program-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

}


.program-features span {

    color: var(--amarelo);

    font-weight: 900;

}


/* ========================================
   METODOLOGIA
========================================= */

.education-methodology {

    padding: 120px 0;

    background: var(--branco);

}


.methodology-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: start;

}


.methodology-content h2 {

    margin: 20px 0;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

}


.methodology-content h2 span {

    display: block;

    color: var(--azul);

}


.methodology-content p {

    max-width: 600px;

    margin-bottom: 18px;

    color: #59636E;

    line-height: 1.8;

}


.methodology-list {

    display: flex;

    flex-direction: column;

}


.methodology-item {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid #E5E7EB;

}


.methodology-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    color: var(--azul-escuro);

    font-size: 12px;

    font-weight: 900;

}


.methodology-item h3 {

    margin-bottom: 8px;

    font-size: 18px;

}


.methodology-item p {

    color: #69747E;

    font-size: 14px;

    line-height: 1.6;

}


/* ========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 900px) {

    .education-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .education-program-grid {

        grid-template-columns: 1fr;

    }


    .methodology-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}


@media (max-width: 600px) {

    .education-introduction,
    .education-programs,
    .education-methodology {

        padding: 75px 0;

    }


    .education-program-card {

        padding: 35px 25px;

    }


    .methodology-item {

        grid-template-columns: 55px 1fr;

        gap: 15px;

    }

}

/* ========================================
   VIDA ESCOLAR
========================================= */

.school-life-intro {

    padding: 110px 0;

    background: var(--branco);

}


.school-life-intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

}


.school-life-intro h2 {

    margin-top: 20px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

}


.school-life-intro h2 span {

    display: block;

    color: var(--azul);

}


.school-life-intro p {

    margin-bottom: 20px;

    color: #59636E;

    line-height: 1.8;

}


/* ========================================
   ACTIVIDADES
========================================= */

.school-activities {

    padding: 110px 0;

    background: #F5F7FA;

}


.school-activities-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 55px;

}


.school-activity-card {

    position: relative;

    padding: 40px 32px;

    min-height: 390px;

    background: var(--branco);

    border: 1px solid #E4E8EC;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.school-activity-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.10);

}


.activity-big-icon {

    font-size: 48px;

    margin-bottom: 30px;

}


.activity-category {

    display: block;

    margin-bottom: 12px;

    color: var(--azul);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.school-activity-card h3 {

    margin-bottom: 15px;

    font-size: 29px;

}


.school-activity-card p {

    margin-bottom: 25px;

    color: #65707A;

    font-size: 14px;

    line-height: 1.7;

}


.school-activity-card ul {

    padding: 20px 0 0;

    margin: 0;

    border-top: 1px solid #E4E8EC;

    list-style: none;

}


.school-activity-card li {

    position: relative;

    padding-left: 18px;

    margin-bottom: 9px;

    color: #59636E;

    font-size: 13px;

}


.school-activity-card li::before {

    content: "";

    position: absolute;

    width: 5px;

    height: 5px;

    left: 0;

    top: 7px;

    background: var(--amarelo);

}


/* CARTÃO EM DESTAQUE */

.school-activity-card.technology {

    background: var(--azul);

    color: var(--branco);

}


.school-activity-card.technology .activity-category {

    color: var(--amarelo);

}


.school-activity-card.technology p,
.school-activity-card.technology li {

    color: rgba(255,255,255,0.78);

}


.school-activity-card.technology ul {

    border-color:
        rgba(255,255,255,0.2);

}


/* ========================================
   VALORES
========================================= */

.life-values {

    padding: 120px 0;

    background: var(--branco);

}


.life-values-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: start;

}


.life-values-grid h2 {

    margin: 20px 0;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

}


.life-values-grid h2 span {

    display: block;

    color: var(--azul);

}


.life-values-grid p {

    max-width: 580px;

    color: #59636E;

    line-height: 1.8;

}


.life-values-list {

    border-top: 1px solid #E3E7EB;

}


.life-values-list div {

    display: flex;

    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid #E3E7EB;

}


.life-values-list strong {

    color: var(--amarelo);

    font-size: 13px;

}


.life-values-list span {

    font-size: 19px;

    font-weight: 700;

}


/* ========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .school-life-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .school-activities-grid {

        grid-template-columns: 1fr 1fr;

    }


    .life-values-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}


@media (max-width: 600px) {

    .school-life-intro,
    .school-activities,
    .life-values {

        padding: 75px 0;

    }


    .school-activities-grid {

        grid-template-columns: 1fr;

    }


    .school-activity-card {

        min-height: auto;

    }

}

/* ========================================
   PÁGINA DE NOTÍCIAS
========================================= */

.featured-news {

    padding: 100px 0;

    background: var(--branco);

}


.featured-news-card {

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    min-height: 500px;

    background: var(--azul);

    color: var(--branco);

}


.featured-news-image {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #174B80,
            #0D2948
        );

}


.featured-news-category {

    position: absolute;

    top: 30px;

    left: 30px;

    padding: 8px 13px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.featured-image-text {

    font-size: clamp(45px, 7vw, 85px);

    line-height: .85;

    font-weight: 900;

    text-align: center;

    opacity: .12;

}


.featured-news-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;

}


.featured-news-content .news-date {

    color: var(--amarelo);

}


.featured-news-content h2 {

    margin: 18px 0;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.05;

}


.featured-news-content h2 span {

    color: var(--amarelo);

}


.featured-news-content p {

    max-width: 480px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.78);

    line-height: 1.8;

}


.news-read-button {

    width: fit-content;

    padding: 14px 20px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    font-size: 13px;

    font-weight: 800;

}


/* ========================================
   TODAS AS NOTÍCIAS
========================================= */

.all-news {

    padding: 110px 0;

    background: #F5F7FA;

}


.news-page-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 55px;

}


.news-page-header h2 {

    margin-top: 18px;

    font-size: clamp(38px, 5vw, 55px);

}


.news-page-header h2 span {

    color: var(--azul);

}


.news-filters {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.news-filter {

    padding: 11px 17px;

    border: 1px solid #D9DEE3;

    background: var(--branco);

    color: #56616C;

    cursor: pointer;

    font-family: inherit;

}


.news-filter.active {

    background: var(--azul);

    color: var(--branco);

    border-color: var(--azul);

}


/* ========================================
   GRELHA DE NOTÍCIAS
========================================= */

.news-page-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 32px;

    width: 100%;

    align-items: stretch;

}


/* ========================================
   CARTÃO DE NOTÍCIA
========================================= */

.news-page-card {

    display: flex;

    flex-direction: column;

    width: 100%;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e5e9ed;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


/* ========================================
   ÁREA DA FOTOGRAFIA
========================================= */

.news-photo {

    position: relative;

    width: 100%;

    height: 250px;

    flex-shrink: 0;

    overflow: hidden;

}


/* ========================================
   FOTOGRAFIA
========================================= */

.news-photo img {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;

}


/* Zoom suave ao passar o rato */

.news-page-card:hover .news-photo img {

    transform: scale(1.05);

}


/* ========================================
   EFEITO SOBRE A FOTOGRAFIA
========================================= */

.news-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent 65%
        );

    z-index: 1;

    pointer-events: none;

}


/* ========================================
   CATEGORIA
========================================= */

.news-photo span {

    position: absolute;

    left: 20px;

    bottom: 20px;

    z-index: 2;

    background: var(--amarelo);

    color: var(--azul-escuro);

    padding: 9px 13px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* ========================================
   CONTEÚDO
========================================= */

.news-page-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 28px;

}


/* Título */

.news-page-content h3 {

    margin: 0 0 14px;

    color: var(--azul-escuro);

    font-size: 21px;

    line-height: 1.3;

}


/* Texto */

.news-page-content p {

    margin: 0;

    color: #68737c;

    font-size: 14px;

    line-height: 1.7;

}


/* Link sempre no final */

.news-page-content a {

    margin-top: auto;

    padding-top: 22px;

    color: var(--azul);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: .25s ease;

}


.news-page-content a:hover {

    color: var(--amarelo);

    transform: translateX(5px);

}


/* ========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .news-page-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;

    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .news-page-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .news-photo {

        height: 230px;

    }

    .news-page-content {

        padding: 24px;

    }

}


.news-page-card {

    background: var(--branco);

    border: 1px solid #E2E6EA;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.news-page-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);

}


.news-page-image {

    height: 230px;

    display: flex;

    align-items: flex-end;

    padding: 20px;

    background: var(--azul);

}


.news-page-image span {

    padding: 7px 11px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

}


.image-two {

    background: #315F88;

}


.image-three {

    background: #1F6B66;

}


.image-four {

    background: #6D5A37;

}


.image-five {

    background: #354D68;

}


.image-six {

    background: #3D5362;

}


.news-page-content {

    padding: 30px;

}


.news-date {

    display: block;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #7B858E;

}


.news-page-content h3 {

    margin: 13px 0;

    font-size: 21px;

    line-height: 1.25;

}


.news-page-content p {

    margin-bottom: 22px;

    color: #66717B;

    font-size: 14px;

    line-height: 1.7;

}


.news-page-content a {

    color: var(--azul);

    font-size: 13px;

    font-weight: 800;

}


/* ========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .featured-news-card {

        grid-template-columns: 1fr;

    }


    .featured-news-image {

        min-height: 300px;

    }


    .news-page-header {

        align-items: start;

        flex-direction: column;

    }


    .news-page-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 600px) {

    .featured-news,
    .all-news {

        padding: 75px 0;

    }


    .featured-news-content {

        padding: 40px 25px;

    }


    .news-page-grid {

        grid-template-columns: 1fr;

    }


    .news-page-image {

        height: 210px;

    }

}

/* ========================================
   GALERIA - PÁGINA COMPLETA
========================================= */

.gallery-page {

    padding: 110px 0;

    background: #F5F7FA;

}


.gallery-page-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 55px;

}


.gallery-page-header h2 {

    margin-top: 18px;

    font-size: clamp(38px, 5vw, 55px);

    line-height: 1.05;

}


.gallery-page-header h2 span {

    color: var(--azul);

}


.gallery-filters {

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 8px;

}


.gallery-filter {

    padding: 11px 17px;

    border: 1px solid #D9DEE3;

    background: #FFFFFF;

    color: #56616C;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    transition: .25s ease;

}


.gallery-filter:hover {

    border-color: var(--azul);

    color: var(--azul);

}


.gallery-filter.active {

    background: var(--azul);

    border-color: var(--azul);

    color: #FFFFFF;

}


/* ========================================
   GRELHA
========================================= */

.gallery-page-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 280px;

    gap: 18px;

}


.gallery-photo {

    position: relative;

    overflow: hidden;

    cursor: pointer;

}


.gallery-photo-large {

    grid-row: span 2;

}


.gallery-photo-wide {

    grid-column: span 2;

}


.gallery-photo-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #174B80,
            #0D2948
        );

    transition: transform .5s ease;

}


.gallery-photo:hover
.gallery-photo-placeholder {

    transform: scale(1.06);

}


.gallery-photo-placeholder span {

    color: rgba(255,255,255,.15);

    font-size: 45px;

    line-height: .9;

    font-weight: 900;

    text-align: center;

}


.gallery-photo-blue {

    background:
        linear-gradient(
            135deg,
            #286294,
            #143D64
        );

}


.gallery-photo-yellow {

    background:
        linear-gradient(
            135deg,
            #D4AA32,
            #8D6D12
        );

}


.gallery-photo-dark {

    background:
        linear-gradient(
            135deg,
            #283744,
            #111A22
        );

}


.gallery-photo-blue-dark {

    background:
        linear-gradient(
            135deg,
            #173C61,
            #081C30
        );

}


.gallery-photo-light {

    background:
        linear-gradient(
            135deg,
            #8FA5B5,
            #506879
        );

}


.gallery-photo-green {

    background:
        linear-gradient(
            135deg,
            #39736C,
            #1C4541
        );

}


.gallery-photo-purple {

    background:
        linear-gradient(
            135deg,
            #655B83,
            #37314E
        );

}


.gallery-photo-navy {

    background:
        linear-gradient(
            135deg,
            #1D4267,
            #0A2137
        );

}


/* ========================================
   OVERLAY
========================================= */

.gallery-photo-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0,0,0,.78)
        );

    color: #FFFFFF;

    opacity: 0;

    transition: opacity .3s ease;

}


.gallery-photo:hover
.gallery-photo-overlay {

    opacity: 1;

}


.gallery-photo-overlay span {

    margin-bottom: 6px;

    color: var(--amarelo);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.gallery-photo-overlay strong {

    font-size: 16px;

}


/* ========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .gallery-page-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .gallery-filters {

        justify-content: flex-start;

    }


    .gallery-page-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .gallery-page {

        padding: 75px 0;

    }


    .gallery-page-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

    }


    .gallery-photo-large {

        grid-row: span 1;

    }


    .gallery-photo-wide {

        grid-column: span 1;

    }


    .gallery-filters {

        gap: 6px;

    }


    .gallery-filter {

        padding: 9px 12px;

        font-size: 11px;

    }

}

/* ========================================
   ADMISSÕES
========================================= */

.admission-introduction {

    padding: 100px 0;

    background: var(--branco);

}


.admission-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;

}


.admission-intro-grid h2 {

    margin-top: 18px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

}


.admission-intro-grid h2 span {

    color: var(--azul);

}


.admission-intro-grid p {

    margin-bottom: 20px;

    color: #5F6973;

    line-height: 1.85;

}


/* ========================================
   PROCESSO
========================================= */

.admission-process {

    padding: 110px 0;

    background: #F5F7FA;

}


.admission-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;

}


.admission-process-card {

    position: relative;

    padding: 35px 28px;

    min-height: 300px;

    background: #FFFFFF;

    border: 1px solid #E1E5E8;

    transition: .3s ease;

}


.admission-process-card:hover {

    transform: translateY(-7px);

    border-color: var(--azul);

    box-shadow:
        0 18px 40px rgba(0,0,0,.07);

}


.process-number {

    position: absolute;

    top: 20px;

    right: 20px;

    color: #DCE2E7;

    font-size: 30px;

    font-weight: 900;

}


.process-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    font-size: 23px;

}


.admission-process-card h3 {

    margin-bottom: 13px;

    font-size: 20px;

}


.admission-process-card p {

    color: #66717B;

    font-size: 14px;

    line-height: 1.7;

}


/* ========================================
   DOCUMENTAÇÃO
========================================= */

.documents-section {

    padding: 110px 0;

    background: var(--branco);

}


.documents-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: center;

}


.documents-content h2 {

    margin: 18px 0;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

}


.documents-content h2 span {

    color: var(--azul);

}


.documents-content > p {

    max-width: 540px;

    margin-bottom: 30px;

    color: #65707A;

    line-height: 1.8;

}


.documents-list {

    border-top: 1px solid #DCE1E5;

}


.document-item {

    display: flex;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid #DCE1E5;

}


.document-item > span {

    color: var(--azul);

    font-size: 13px;

    font-weight: 900;

}


.document-item strong {

    display: block;

    margin-bottom: 5px;

    font-size: 16px;

}


.document-item p {

    margin: 0;

    color: #707A83;

    font-size: 13px;

}


/* ========================================
   NÍVEIS PARA MATRÍCULA
========================================= */

.admission-levels {

    padding: 110px 0;

    background: #F5F7FA;

}


.admission-level-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 55px;

}


.admission-level-card {

    padding: 40px 32px;

    background: #FFFFFF;

    border-top: 4px solid var(--azul);

    color: inherit;

    transition: .3s ease;

}


.admission-level-card:hover {

    transform: translateY(-7px);

    background: var(--azul);

    color: #FFFFFF;

}


.admission-level-card > span {

    color: var(--amarelo);

    font-size: 12px;

    font-weight: 900;

}


.admission-level-card h3 {

    margin: 25px 0 12px;

    font-size: 23px;

}


.admission-level-card p {

    margin-bottom: 25px;

    color: #66717B;

    font-size: 14px;

    line-height: 1.7;

}


.admission-level-card:hover p {

    color: rgba(255,255,255,.75);

}


.admission-level-card strong {

    color: var(--azul);

    font-size: 13px;

}


.admission-level-card:hover strong {

    color: var(--amarelo);

}


/* ========================================
   CONTACTO ADMISSÕES
========================================= */

.admission-contact {

    padding: 100px 0;

    background: var(--branco);

}


.admission-contact-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    padding: 65px;

    background: var(--azul);

    color: #FFFFFF;

}


.admission-contact-box h2 {

    margin: 18px 0;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.05;

}


.admission-contact-box h2 span {

    color: var(--amarelo);

}


.admission-contact-box p {

    max-width: 600px;

    color: rgba(255,255,255,.75);

    line-height: 1.7;

}


@media (max-width: 900px) {

    .admission-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .admission-process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .documents-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .admission-level-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .admission-contact-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .admission-introduction,
    .admission-process,
    .documents-section,
    .admission-levels,
    .admission-contact {

        padding: 75px 0;

    }


    .admission-process-grid {

        grid-template-columns: 1fr;

    }


    .admission-level-grid {

        grid-template-columns: 1fr;

    }


    .admission-contact-box {

        padding: 40px 25px;

    }

}

/* ========================================
   PÁGINA DE CONTACTOS
========================================= */

.contact-page-section {

    padding: 110px 0;

    background: var(--branco);

}


.contact-page-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: start;

}


.contact-page-info h2 {

    margin: 18px 0;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

}


.contact-page-info h2 span {

    color: var(--azul);

}


.contact-page-info > p {

    max-width: 550px;

    margin-bottom: 40px;

    color: #66717B;

    line-height: 1.8;

}


/* INFORMAÇÕES */

.contact-page-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #E1E5E8;

}


.contact-page-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    font-size: 19px;

}


.contact-page-item span {

    display: block;

    margin-bottom: 5px;

    color: #87919A;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.contact-page-item strong,
.contact-page-item a {

    display: block;

    color: #1C252C;

    font-size: 15px;

    font-weight: 700;

}


.contact-page-item a:hover {

    color: var(--azul);

}


.contact-page-item small {

    display: block;

    margin-top: 4px;

    color: #737E87;

}


/* WHATSAPP */

.contact-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding: 15px 22px;

    background: var(--azul);

    color: #FFFFFF;

    font-weight: 700;

    transition: .3s ease;

}


.contact-whatsapp:hover {

    background: var(--azul-escuro);

    transform: translateY(-3px);

}


.contact-whatsapp span {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--amarelo);

    color: var(--azul-escuro);

    border-radius: 50%;

    font-weight: 900;

}


/* FORMULÁRIO */

.contact-page-form {

    padding: 45px;

    background: #F5F7FA;

    border-top: 5px solid var(--azul);

}


.contact-form-header {

    margin-bottom: 35px;

}


.contact-form-header > span {

    color: var(--azul);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.contact-form-header h3 {

    margin-top: 10px;

    font-size: 30px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.form-group {

    margin-bottom: 22px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: #26313A;

    font-size: 13px;

    font-weight: 700;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 15px 16px;

    border: 1px solid #D6DDE2;

    background: #FFFFFF;

    color: #202A31;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: .25s ease;

}


.form-group textarea {

    resize: vertical;

    min-height: 140px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--azul);

    box-shadow:
        0 0 0 3px rgba(0,70,140,.08);

}


.contact-submit {

    width: 100%;

    padding: 17px 20px;

    border: none;

    background: var(--azul);

    color: #FFFFFF;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s ease;

}


.contact-submit:hover {

    background: var(--azul-escuro);

}


.form-message {

    margin: 15px 0 0;

    text-align: center;

    font-size: 13px;

}


/* MAPA */

.contact-map-section {

    padding: 100px 0;

    background: #F5F7FA;

}


.contact-map-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 40px;

}


.contact-map-header h2 {

    margin-top: 18px;

    font-size: clamp(36px, 5vw, 54px);

    line-height: 1.05;

}


.contact-map-header h2 span {

    color: var(--azul);

}


.contact-map-header p {

    max-width: 400px;

    color: #68737C;

    line-height: 1.7;

}


.contact-map {

    width: 100%;

    height: 480px;

    overflow: hidden;

    border: 1px solid #DDE2E6;

}


.contact-map iframe {

    width: 100%;

    height: 100%;

    border: 0;

}


/* CTA */

.contact-cta {

    padding: 100px 0;

    background: #FFFFFF;

}


.contact-cta-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    padding: 60px;

    background: var(--azul);

    color: #FFFFFF;

}


.contact-cta-box h2 {

    margin: 18px 0;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.05;

}


.contact-cta-box h2 span {

    color: var(--amarelo);

}


.contact-cta-box p {

    max-width: 600px;

    color: rgba(255,255,255,.75);

    line-height: 1.7;

}


/* RESPONSIVO */

@media (max-width: 900px) {

    .contact-page-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .contact-map-header {

        align-items: start;

        flex-direction: column;

    }


    .contact-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .contact-page-section,
    .contact-map-section,
    .contact-cta {

        padding: 75px 0;

    }


    .contact-page-form {

        padding: 30px 20px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .contact-map {

        height: 350px;

    }


    .contact-cta-box {

        padding: 40px 25px;

    }

}

/* ========================================
   PÁGINA SOBRE NÓS
========================================= */

.about-history {

    padding: 110px 0;

    background: #fff;

}


.about-history-grid {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: center;

}


.about-history-visual {

    min-height: 430px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: var(--azul);

    color: #fff;

    position: relative;

    overflow: hidden;

}


.history-number {

    font-size: clamp(150px, 18vw, 240px);

    font-weight: 900;

    line-height: .8;

    color: var(--amarelo);

}


.about-history-visual > span {

    margin-top: 35px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.about-history-content h2 {

    margin: 18px 0 25px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

}


.about-history-content h2 span {

    color: var(--azul);

}


.about-history-content p {

    color: #65707A;

    line-height: 1.85;

    margin-bottom: 18px;

}


/* ========================================
   MISSÃO E VISÃO
========================================= */

.mission-vision {

    padding: 100px 0;

    background: #F5F7FA;

}


.mission-vision-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

}


.mission-card,
.vision-card {

    padding: 60px;

}


.mission-card {

    background: var(--azul);

    color: #fff;

}


.vision-card {

    background: var(--amarelo);

    color: var(--azul-escuro);

}


.mission-card h2,
.vision-card h2 {

    margin: 20px 0;

    font-size: 38px;

}


.mission-card p,
.vision-card p {

    line-height: 1.8;

}


.mission-card p {

    color: rgba(255,255,255,.78);

}


/* ========================================
   VALORES
========================================= */

.values-section {

    padding: 110px 0;

    background: #fff;

}


.values-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;

}


.value-card {

    position: relative;

    padding: 35px 28px;

    background: #F5F7FA;

    border-top: 3px solid var(--azul);

    transition: .3s ease;

}


.value-card:hover {

    transform: translateY(-8px);

}


.value-number {

    font-size: 12px;

    font-weight: 900;

    color: var(--azul);

}


.value-icon {

    margin: 30px 0 20px;

    font-size: 35px;

}


.value-card h3 {

    margin-bottom: 12px;

    font-size: 22px;

}


.value-card p {

    color: #68737C;

    line-height: 1.7;

    font-size: 14px;

}


/* ========================================
   NÚMEROS
========================================= */

.about-numbers {

    padding: 75px 0;

    background: var(--azul-escuro);

    color: #fff;

}


.about-numbers-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}


.about-numbers-grid > div {

    text-align: center;

    padding: 20px;

    border-right: 1px solid rgba(255,255,255,.15);

}


.about-numbers-grid > div:last-child {

    border-right: 0;

}


.about-numbers-grid strong {

    display: block;

    color: var(--amarelo);

    font-size: 48px;

    font-weight: 900;

}


.about-numbers-grid span {

    display: block;

    margin-top: 8px;

    color: rgba(255,255,255,.7);

    font-size: 13px;

}


/* ========================================
   CTA SOBRE
========================================= */

.about-cta {

    padding: 100px 0;

    background: #F5F7FA;

}


.about-cta-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 60px;

    background: var(--azul);

    color: #fff;

}


.about-cta-box h2 {

    margin-top: 18px;

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.05;

}


.about-cta-box h2 span {

    color: var(--amarelo);

}


/* ========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .about-history-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .mission-vision-grid {

        grid-template-columns: 1fr;

    }


    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .about-numbers-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .about-numbers-grid > div {

        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.15);

    }


    .about-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .about-history,
    .mission-vision,
    .values-section,
    .about-cta {

        padding: 75px 0;

    }


    .values-grid {

        grid-template-columns: 1fr;

    }


    .about-numbers-grid {

        grid-template-columns: 1fr;

    }


    .mission-card,
    .vision-card,
    .about-cta-box {

        padding: 40px 25px;

    }

}

/* ========================================
   VIDA ESCOLAR - PÁGINA
========================================= */

.life-introduction {

    padding: 100px 0 50px;

    background: #fff;

}


.life-activities {

    padding: 50px 0 110px;

    background: #fff;

}


.life-activities-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.life-card {

    position: relative;

    padding: 40px 32px;

    min-height: 340px;

    background: #f5f7fa;

    border-top: 4px solid var(--azul);

    transition: transform .3s ease,
                box-shadow .3s ease;

}


.life-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);

}


.life-card-number {

    position: absolute;

    top: 22px;

    right: 25px;

    font-size: 13px;

    font-weight: 900;

    color: var(--azul);

}


.life-card-icon {

    font-size: 42px;

    margin: 35px 0 20px;

}


.life-card > span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #737d86;

}


.life-card h2 {

    margin: 12px 0 15px;

    font-size: 28px;

    color: var(--azul-escuro);

}


.life-card p {

    color: #68737c;

    line-height: 1.75;

    font-size: 14px;

}


.life-card a {

    display: inline-block;

    margin-top: 20px;

    color: var(--azul);

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

}


/* ========================================
   DETALHES DAS ACTIVIDADES
========================================= */

.life-detail {

    padding: 110px 0;

    background: var(--azul);

    color: #fff;

}


.life-detail-alt {

    background: #f5f7fa;

    color: var(--azul-escuro);

}


.life-detail-grid {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 60px;

    align-items: start;

}


.life-detail-number {

    font-size: 100px;

    line-height: .8;

    font-weight: 900;

    color: var(--amarelo);

}


.life-detail h2 {

    margin: 18px 0 25px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

}


.life-detail h2 span {

    color: var(--amarelo);

}


.life-detail-alt h2 span {

    color: var(--azul);

}


.life-detail p {

    max-width: 750px;

    line-height: 1.85;

    margin-bottom: 18px;

    color: rgba(255,255,255,.75);

}


.life-detail-alt p {

    color: #68737c;

}


/* ========================================
   CTA VIDA ESCOLAR
========================================= */

.life-cta {

    padding: 100px 0;

    background: #fff;

}


.life-cta-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 60px;

    background: var(--azul-escuro);

    color: #fff;

}


.life-cta-box h2 {

    margin-top: 18px;

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.05;

}


.life-cta-box h2 span {

    color: var(--amarelo);

}


/* ========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .life-activities-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .life-detail-grid {

        grid-template-columns: 100px 1fr;

        gap: 35px;

    }


    .life-detail-number {

        font-size: 70px;

    }


    .life-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .life-introduction {

        padding-top: 70px;

    }


    .life-activities-grid {

        grid-template-columns: 1fr;

    }


    .life-detail {

        padding: 75px 0;

    }


    .life-detail-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .life-detail-number {

        font-size: 65px;

    }


    .life-cta {

        padding: 70px 0;

    }


    .life-cta-box {

        padding: 40px 25px;

    }

}


/* ========================================
   PÁGINA DE NOTÍCIAS
========================================= */

.news-page-section {

    padding: 100px 0 120px;

    background: #fff;

}


.news-page-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 55px;

}


.news-page-header h2 {

    margin-top: 18px;

    font-size: clamp(36px, 5vw, 55px);

    line-height: 1.05;

}


.news-page-header h2 span {

    color: var(--azul);

}


.news-filter {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

}


.news-filter-button {

    border: 1px solid #dce1e5;

    background: #fff;

    padding: 11px 18px;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;

}


.news-filter-button:hover,
.news-filter-button.active {

    background: var(--azul);

    border-color: var(--azul);

    color: #fff;

}


.news-page-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}


.news-page-card {

    background: #fff;

    border: 1px solid #e8ebee;

    overflow: hidden;

    transition: .3s ease;

}


.news-page-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(0,0,0,.09);

}


.news-page-image {

    height: 250px;

    display: flex;

    align-items: end;

    padding: 22px;

    position: relative;

}


.news-page-image span {

    background: var(--amarelo);

    color: var(--azul-escuro);

    padding: 8px 12px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

}


.news-page-image-1 {

    background: linear-gradient(
        135deg,
        var(--azul),
        #1c5078
    );

}


.news-page-image-2 {

    background: linear-gradient(
        135deg,
        #d9e9f5,
        var(--azul)
    );

}


.news-page-image-3 {

    background: linear-gradient(
        135deg,
        var(--amarelo),
        #e0ad00
    );

}


.news-page-image-4 {

    background: linear-gradient(
        135deg,
        #182c3d,
        var(--azul)
    );

}


.news-page-image-5 {

    background: linear-gradient(
        135deg,
        #f4d45a,
        var(--amarelo)
    );

}


.news-page-image-6 {

    background: linear-gradient(
        135deg,
        #507b99,
        var(--azul-escuro)
    );

}


.news-page-content {

    padding: 30px;

}


.news-meta {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #7b858d;

}


.news-page-content h3 {

    margin-bottom: 15px;

    font-size: 23px;

    line-height: 1.2;

    color: var(--azul-escuro);

}


.news-page-content p {

    color: #68737c;

    font-size: 14px;

    line-height: 1.75;

}


.news-page-content a {

    display: inline-block;

    margin-top: 20px;

    color: var(--azul);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


/* ========================================
   NEWSLETTER
========================================= */

.news-newsletter {

    padding: 80px 0;

    background: #f5f7fa;

}


.news-newsletter-box {

    padding: 60px;

    background: var(--azul-escuro);

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

}


.news-newsletter-box h2 {

    margin-top: 15px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.05;

}


.news-newsletter-box h2 span {

    color: var(--amarelo);

}


.newsletter-form {

    display: flex;

    min-width: 400px;

}


.newsletter-form input {

    flex: 1;

    min-width: 0;

    border: 0;

    padding: 16px 18px;

    font-family: inherit;

    outline: none;

}


.newsletter-form button {

    border: 0;

    background: var(--amarelo);

    color: var(--azul-escuro);

    padding: 16px 22px;

    font-family: inherit;

    font-weight: 800;

    cursor: pointer;

}


/* ========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .news-page-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .news-page-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .news-newsletter-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .newsletter-form {

        width: 100%;

        min-width: 0;

    }

}


@media (max-width: 600px) {

    .news-page-section {

        padding: 70px 0 80px;

    }


    .news-page-grid {

        grid-template-columns: 1fr;

    }


    .news-page-image {

        height: 220px;

    }


    .news-newsletter-box {

        padding: 40px 25px;

    }


    .newsletter-form {

        flex-direction: column;

    }


    .newsletter-form input,
    .newsletter-form button {

        width: 100%;

    }

}

/* ========================================
   PÁGINA DE NOTÍCIAS
========================================= */

.news-hero {

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    padding: 120px 0 80px;

}


.news-hero .section-label {

    color: var(--amarelo);

}


.news-hero h1 {

    max-width: 850px;

    margin: 20px 0;

    font-size: clamp(45px, 7vw, 82px);

    line-height: 0.98;

    letter-spacing: -2px;

}


.news-hero h1 span {

    color: var(--amarelo);

}


.news-hero p {

    max-width: 650px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.8;

}


/* ========================================
   LISTA DE NOTÍCIAS
========================================= */

.news-page {

    padding: 100px 0 120px;

    background: #ffffff;

}


.news-page-heading {

    margin-bottom: 55px;

}


.news-page-heading h2 {

    margin-top: 18px;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

}


.news-page-heading h2 span {

    color: var(--azul);

}


/* ========================================
   GRID
========================================= */

.news-page-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


/* ========================================
   CARD
========================================= */

.news-page-card {

    background: #ffffff;

    border: 1px solid #e5e9ed;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.news-page-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);

}


/* ========================================
   IMAGENS
========================================= */

.news-photo {

    height: 260px;

    display: flex;

    align-items: flex-end;

    padding: 22px;

    position: relative;

    overflow: hidden;

}


.news-photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.35),
            transparent 60%
        );

}


.news-photo span {

    position: relative;

    z-index: 2;

    background: var(--amarelo);

    color: var(--azul-escuro);

    padding: 9px 13px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* CORES DAS FOTOGRAFIAS */

.news-photo-1 {

    background:
        linear-gradient(
            135deg,
            #0c3658,
            #2878a9
        );

}


.news-photo-2 {

    background:
        linear-gradient(
            135deg,
            #dcecf7,
            #468bb5
        );

}


.news-photo-3 {

    background:
        linear-gradient(
            135deg,
            #e9c52e,
            #b88300
        );

}


.news-photo-4 {

    background:
        linear-gradient(
            135deg,
            #142b40,
            #4b83a8
        );

}


.news-photo-5 {

    background:
        linear-gradient(
            135deg,
            #f6dc68,
            #d2a600
        );

}


.news-photo-6 {

    background:
        linear-gradient(
            135deg,
            #5b86a2,
            #143c5c
        );

}


/* ========================================
   CONTEÚDO
========================================= */

.news-page-content {

    padding: 30px;

}


.news-page-content small {

    display: block;

    margin-bottom: 16px;

    color: #7b858d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.news-page-content h3 {

    margin-bottom: 15px;

    color: var(--azul-escuro);

    font-size: 22px;

    line-height: 1.25;

}


.news-page-content p {

    color: #68737c;

    font-size: 14px;

    line-height: 1.75;

}


.news-page-content a {

    display: inline-block;

    margin-top: 20px;

    color: var(--azul);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: .25s ease;

}


.news-page-content a:hover {

    color: var(--amarelo);

    transform: translateX(5px);

}


/* ========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 950px) {

    .news-page-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* ========================================
   RESPONSIVO — TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .news-hero {

        min-height: 380px;

        padding: 110px 0 70px;

    }


    .news-hero h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }


    .news-page {

        padding: 70px 0 80px;

    }


    .news-page-grid {

        grid-template-columns: 1fr;

    }


    .news-photo {

        height: 230px;

    }


    .news-page-content {

        padding: 25px;

    }

}

/* ========================================
   FOTOGRAFIAS DAS NOTÍCIAS
========================================= */

.news-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
}

/* Fotografia */
.news-photo img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* Efeito escuro sobre a fotografia */
.news-photo::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent 65%
    );

    z-index: 1;
}

/* Categoria */
.news-photo span {
    position: absolute;

    left: 22px;
    bottom: 22px;

    z-index: 2;

    background: var(--amarelo);

    color: var(--azul-escuro);

    padding: 9px 13px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ========================================
   FOTOGRAFIAS — TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .news-photo {
        height: 230px;
    }

}

/* ========================================
   PÁGINA DE GALERIA
========================================= */

.gallery-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, var(--azul-escuro), var(--azul));
    color: #fff;
    padding: 120px 0 80px;
}

.gallery-hero .section-label {
    color: var(--amarelo);
}

.gallery-hero h1 {
    max-width: 850px;
    margin: 20px 0;
    font-size: clamp(45px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -2px;
}

.gallery-hero h1 span {
    color: var(--amarelo);
}

.gallery-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.8;
}


/* ========================================
   CONTEÚDO
========================================= */

.gallery-page {
    padding: 100px 0 120px;
    background: #fff;
}

.gallery-page-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.gallery-page-heading h2 {
    margin: 18px 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
}

.gallery-page-heading h2 span {
    color: var(--azul);
}

.gallery-page-heading p {
    color: #68737c;
    line-height: 1.8;
}


/* ========================================
   FILTROS
========================================= */

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.gallery-filter {
    border: 1px solid #dce2e6;
    background: #fff;
    color: var(--azul-escuro);
    padding: 12px 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

.gallery-filter:hover {
    border-color: var(--azul);
    color: var(--azul);
}

.gallery-filter.active {
    background: var(--azul);
    border-color: var(--azul);
    color: #fff;
}


/* ========================================
   GRELHA
========================================= */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 18px;
}


/* ========================================
   FOTOGRAFIAS
========================================= */

.gallery-photo {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-photo-wide {
    grid-column: span 2;
}


/* ========================================
   PLACEHOLDERS
========================================= */

.gallery-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #17486c,
        #397fa8
    );

    color: #fff;

    transition: transform .5s ease;
}

.gallery-photo-placeholder span {
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.8;
}

.gallery-photo-blue {
    background: linear-gradient(
        135deg,
        #397da5,
        #102f4b
    );
}

.gallery-photo-yellow {
    background: linear-gradient(
        135deg,
        #f2cf38,
        #b88800
    );

    color: var(--azul-escuro);
}

.gallery-photo-dark {
    background: linear-gradient(
        135deg,
        #172d3e,
        #496f89
    );
}

.gallery-photo-blue-dark {
    background: linear-gradient(
        135deg,
        #0b2c45,
        #276d96
    );
}

.gallery-photo-light {
    background: linear-gradient(
        135deg,
        #dcebf3,
        #79a7bd
    );

    color: var(--azul-escuro);
}


/* ========================================
   OVERLAY
========================================= */

.gallery-photo-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        transparent 65%
    );

    color: #fff;

    opacity: 0;

    transition: opacity .35s ease;
}

.gallery-photo-overlay span {
    color: var(--amarelo);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-photo-overlay strong {
    font-size: 16px;
}


/* ========================================
   HOVER
========================================= */

.gallery-photo:hover .gallery-photo-placeholder {
    transform: scale(1.06);
}

.gallery-photo:hover .gallery-photo-overlay {
    opacity: 1;
}


/* ========================================
   CALL TO ACTION
========================================= */

.gallery-cta {
    padding: 0 0 110px;
    background: #fff;
}

.gallery-cta-box {
    padding: 80px 50px;
    text-align: center;

    background: linear-gradient(
        120deg,
        var(--azul-escuro),
        var(--azul)
    );

    color: #fff;
}

.gallery-cta-box .section-label {
    color: var(--amarelo);
}

.gallery-cta-box h2 {
    margin: 18px auto;
    max-width: 700px;
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.05;
}

.gallery-cta-box h2 span {
    color: var(--amarelo);
}

.gallery-cta-box p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
}

.gallery-cta-button {
    display: inline-block;
    padding: 15px 25px;

    background: var(--amarelo);
    color: var(--azul-escuro);

    text-decoration: none;

    font-size: 12px;
    font-weight: 900;

    transition: .25s ease;
}

.gallery-cta-button:hover {
    transform: translateY(-3px);
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-photo-large {
        grid-column: span 2;
    }

    .gallery-photo-wide {
        grid-column: span 2;
    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 600px) {

    .gallery-hero {
        min-height: 380px;
        padding: 110px 0 70px;
    }

    .gallery-hero h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .gallery-page {
        padding: 70px 0 80px;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-photo {
        min-height: 260px;
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-photo-large,
    .gallery-photo-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-cta-box {
        padding: 60px 25px;
    }

}

/* ========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background: rgba(5, 20, 32, .92);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.gallery-lightbox.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.lightbox-content {

    width: min(900px, 95vw);

    max-height: 90vh;

    position: relative;

}

.lightbox-image {
    width: 100%;
    max-width: 1100px;
    max-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: transparent;
}

.lightbox-image img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 75vh;

    object-fit: contain;

    margin: 0 auto;
}

.lightbox-caption {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 20px 5px;

    color: #fff;

}


.lightbox-caption span {

    color: var(--amarelo);

    text-transform: uppercase;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.lightbox-caption strong {

    font-size: 18px;

}


.lightbox-close {

    position: absolute;

    top: 25px;

    right: 30px;

    z-index: 10;

    width: 50px;

    height: 50px;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50%;

    background: rgba(0,0,0,.3);

    color: #fff;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    transition: .25s ease;

}


.lightbox-close:hover {

    background: var(--amarelo);

    color: var(--azul-escuro);

    transform: rotate(90deg);

}


body.lightbox-open {

    overflow: hidden;

}

/* ========================================
   LIGHTBOX - CORRIGIDO
========================================= */

.gallery-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    z-index: 99999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px;
    box-sizing: border-box;

    background: rgba(5, 20, 32, 0.94);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .3s ease,
                visibility .3s ease;
}

.gallery-lightbox.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.lightbox-content {
    position: relative;

    width: min(900px, 90vw);
    max-height: 90vh;

    margin: auto;
}

.lightbox-image {
    width: 100%;
    height: 65vh;
    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.lightbox-image span {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 5px;
    text-align: center;
}

.lightbox-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 5px;

    color: #fff;
}

.lightbox-caption span {
    color: var(--amarelo);

    text-transform: uppercase;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.lightbox-caption strong {
    font-size: 18px;
}

.lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;

    z-index: 100000;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;

    background: rgba(0,0,0,.4);

    color: #fff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    transition: .25s ease;
}

.lightbox-close:hover {
    background: var(--amarelo);
    color: var(--azul-escuro);

    transform: rotate(90deg);
}

body.lightbox-open {
    overflow: hidden !important;
}


/* ========================================
   LIGHTBOX NO TELEMÓVEL
========================================= */

@media (max-width: 600px) {

    .gallery-lightbox {
        padding: 15px;
    }

    .lightbox-content {
        width: 95vw;
    }

    .lightbox-image {
        height: 55vh;
        min-height: 280px;
    }

    .lightbox-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

}

/* ========================================
   LIGHTBOX - VERSÃO CORRIGIDA
========================================= */

.gallery-lightbox {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    box-sizing: border-box;

    z-index: 999999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px;

    background: rgba(4, 18, 30, 0.95);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.gallery-lightbox.active {
    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;
}


/* CONTEÚDO */

.lightbox-content {
    position: relative;

    width: min(900px, 90vw);

    max-height: 90vh;

    margin: auto;

    z-index: 1000000;
}


/* ÁREA DA IMAGEM */

.lightbox-image {
    width: 100%;

    height: 65vh;

    min-height: 350px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    box-sizing: border-box;
}


/* TEXTO DENTRO DA IMAGEM */

.lightbox-image span {
    font-size: 30px;

    font-weight: 900;

    letter-spacing: 5px;

    text-align: center;
}


/* LEGENDA */

.lightbox-caption {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 20px 5px;

    color: #ffffff;
}


.lightbox-caption span {
    color: var(--amarelo);

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.lightbox-caption strong {
    color: #ffffff;

    font-size: 18px;
}


/* BOTÃO FECHAR */

.lightbox-close {
    position: fixed !important;

    top: 25px;

    right: 30px;

    z-index: 1000001 !important;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    background: rgba(0,0,0,.45);

    color: #ffffff;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    transition: all .25s ease;
}


.lightbox-close:hover {
    background: var(--amarelo);

    color: var(--azul-escuro);

    transform: rotate(90deg);
}


/* BLOQUEAR SCROLL */

body.lightbox-open {
    overflow: hidden !important;
}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 600px) {

    .gallery-lightbox {
        padding: 15px;
    }

    .lightbox-content {
        width: 94vw;
    }

    .lightbox-image {
        height: 55vh;

        min-height: 280px;
    }

    .lightbox-caption {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .lightbox-close {
        top: 15px;

        right: 15px;
    }

}

/* =========================================
   TESTE DEFINITIVO DO LIGHTBOX
========================================= */

html,
body {
    overflow-x: hidden;
}

.gallery-lightbox {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 2147483647 !important;

    background: rgba(0, 0, 0, 0.95) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gallery-lightbox.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.lightbox-content {
    position: relative !important;

    width: 80% !important;
    max-width: 900px !important;

    height: 70% !important;

    background: transparent;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    margin: 0 !important;
    border-radius: 4px;

    overflow: hidden;
    z-index: 2147483647 !important;
}

.lightbox-image {
    width: 100% !important;
    height: 85% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden;
}

.lightbox-caption {
    width: 100%;

    height: 15%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 20px;

    box-sizing: border-box;

    color: white;

    background: rgba(0, 0, 0, .5);
}

.gallery-photo-placeholder img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;
}

.gallery-photo:hover .gallery-photo-placeholder img {
    transform: scale(1.06);
}

.gallery-photo-placeholder {
    position: relative;
    overflow: hidden;
}

.gallery-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-photo:hover .gallery-photo-placeholder img {
    transform: scale(1.06);
}

/* ========================================
   CORREÇÃO FINAL - IMAGEM DO LIGHTBOX
======================================== */

.gallery-lightbox .lightbox-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    max-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: transparent;
}

.gallery-lightbox .lightbox-image img {
    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 75vh !important;

    object-fit: contain !important;

    display: block;
    margin: 0 auto;
}

/* ========================================
   CORREÇÃO FINAL — GRELHA DE NOTÍCIAS
========================================= */

.news-page .news-page-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.news-page .news-page-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.news-page .news-photo {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.news-page .news-photo img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    display: block !important;
}

.news-page .news-photo span {
    position: absolute !important;

    left: 20px !important;
    bottom: 20px !important;

    z-index: 5 !important;

    padding: 9px 13px !important;

    background: var(--amarelo) !important;
    color: var(--azul-escuro) !important;
}

.news-page .news-page-content {
    display: flex !important;
    flex-direction: column !important;

    flex: 1 !important;

    padding: 28px !important;

    box-sizing: border-box !important;
}

.news-page .news-page-content a {
    margin-top: auto !important;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .news-page .news-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .news-page .news-page-grid {
        grid-template-columns: 1fr !important;
    }

    .news-page .news-photo {
        height: 230px !important;
    }

}

/* ========================================
   NOTÍCIAS — LAYOUT FINAL
========================================= */

.news-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}


/* GRELHA */

.news-page .news-page-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 30px !important;

    width: 100% !important;

    box-sizing: border-box !important;
}


/* CARTÃO */

.news-page .news-page-card {
    display: flex !important;

    flex-direction: column !important;

    width: auto !important;

    min-width: 0 !important;

    margin: 0 !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    background: #fff !important;
}


/* FOTOGRAFIA */

.news-page .news-photo {
    position: relative !important;

    width: 100% !important;

    height: 260px !important;

    min-height: 260px !important;

    padding: 0 !important;

    margin: 0 !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}


/* IMAGEM */

.news-page .news-photo img {
    position: absolute !important;

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    top: 0 !important;

    left: 0 !important;

    right: auto !important;

    bottom: auto !important;

    object-fit: cover !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* CATEGORIA */

.news-page .news-photo span {
    position: absolute !important;

    left: 20px !important;

    bottom: 20px !important;

    z-index: 10 !important;
}


/* CONTEÚDO */

.news-page .news-page-content {
    display: flex !important;

    flex-direction: column !important;

    flex: 1 !important;

    width: 100% !important;

    box-sizing: border-box !important;

    padding: 28px !important;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .news-page .news-page-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .news-page .container {

        padding-left: 20px;

        padding-right: 20px;

    }

    .news-page .news-page-grid {

        grid-template-columns: 1fr !important;

    }

    .news-page .news-photo {

        height: 230px !important;

        min-height: 230px !important;

    }

}

/* ========================================
   PÁGINA INDIVIDUAL DE NOTÍCIA
========================================= */

.article-page {

    padding: 120px 0 100px;

    background: #ffffff;

}


/* ========================================
   CABEÇALHO
========================================= */

.article-header {

    max-width: 900px;

    margin: 0 auto 55px;

}


.article-header .section-label {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--azul);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.article-header small {

    display: block;

    margin-bottom: 18px;

    color: #7b858d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.article-header h1 {

    margin: 0 0 25px;

    color: var(--azul-escuro);

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.02;

    letter-spacing: -2px;

}


.article-header h1 span {

    color: var(--azul);

}


.article-intro {

    max-width: 780px;

    color: #68737c;

    font-size: 18px;

    line-height: 1.8;

}


/* ========================================
   IMAGEM PRINCIPAL
========================================= */

.article-image {

    max-width: 1100px;

    height: 520px;

    margin: 0 auto 60px;

    position: relative;

    display: flex;

    align-items: flex-end;

    padding: 30px;

    overflow: hidden;

}


/* IMAGEM DE EDUCAÇÃO */

.article-image-education {

    background:
        linear-gradient(
            135deg,
            #dcecf7,
            #468bb5
        );

}


/* EFEITO SOBRE A IMAGEM */

.article-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.35),
            transparent 60%
        );

}


.article-image span {

    position: relative;

    z-index: 2;

    padding: 10px 15px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* ========================================
   TEXTO DA NOTÍCIA
========================================= */

.article-content {

    max-width: 780px;

    margin: 0 auto;

}


.article-content p {

    margin-bottom: 25px;

    color: #4f5b64;

    font-size: 17px;

    line-height: 1.9;

}


.article-content h2 {

    margin: 55px 0 20px;

    color: var(--azul-escuro);

    font-size: 30px;

    line-height: 1.2;

}


/* ========================================
   BOTÃO VOLTAR
========================================= */

.article-back {

    max-width: 780px;

    margin: 60px auto 0;

    padding-top: 30px;

    border-top: 1px solid #e5e9ed;

}


.article-back a {

    display: inline-block;

    color: var(--azul);

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition: .25s ease;

}


.article-back a:hover {

    color: var(--amarelo);

    transform: translateX(-5px);

}


/* ========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 900px) {

    .article-page {

        padding: 100px 0 80px;

    }


    .article-image {

        height: 420px;

    }

}


/* ========================================
   RESPONSIVO — TELEMÓVEL
========================================= */

@media (max-width: 600px) {

    .article-page {

        padding: 90px 0 70px;

    }


    .article-header {

        margin-bottom: 35px;

    }


    .article-header h1 {

        font-size: 43px;

        letter-spacing: -1px;

    }


    .article-intro {

        font-size: 16px;

        line-height: 1.7;

    }


    .article-image {

        height: 280px;

        margin-bottom: 40px;

        padding: 20px;

    }


    .article-content p {

        font-size: 16px;

        line-height: 1.8;

    }


    .article-content h2 {

        margin-top: 40px;

        font-size: 26px;

    }

}


/* ========================================
   IMAGEM — NOTÍCIA ACTIVIDADES
========================================= */

.article-image-activities {

    background:
        linear-gradient(
            135deg,
            #e9c52e,
            #b88300
        );

}

/* ========================================
   PÁGINA INDIVIDUAL — NOTÍCIA 4
   TECNOLOGIA E INOVAÇÃO
========================================= */

.news-detail-hero {

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    padding: 120px 0 80px;

}


.news-detail-hero .section-label {

    color: var(--amarelo);

}


.news-detail-hero h1 {

    max-width: 900px;

    margin: 20px 0;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.02;

    letter-spacing: -2px;

}


.news-detail-hero h1 span {

    color: var(--amarelo);

}


.news-detail-date {

    display: block;

    margin-top: 25px;

    color: rgba(255,255,255,.7);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* ========================================
   CONTEÚDO DA NOTÍCIA
========================================= */

.news-detail {

    padding: 90px 0 120px;

    background: #ffffff;

}


.news-detail-layout {

    display: grid;

    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);

    gap: 60px;

    align-items: start;

}


/* ========================================
   IMAGEM PRINCIPAL
========================================= */

.news-detail-image {

    width: 100%;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #142b40,
            #4b83a8
        );

}


.news-detail-image img {

    width: 100%;

    height: 100%;

    min-height: 420px;

    object-fit: cover;

    display: block;

}


/* ========================================
   TEXTO
========================================= */

.news-detail-content {

    max-width: 780px;

}


.news-detail-content h2 {

    margin-bottom: 25px;

    color: var(--azul-escuro);

    font-size: 34px;

    line-height: 1.2;

}


.news-detail-content p {

    margin-bottom: 22px;

    color: #68737c;

    font-size: 16px;

    line-height: 1.9;

}


.news-detail-content strong {

    color: var(--azul-escuro);

}


/* ========================================
   SIDEBAR
========================================= */

.news-detail-sidebar {

    padding: 30px;

    background: #f5f8fa;

    border-left: 4px solid var(--amarelo);

}


.news-detail-sidebar h3 {

    margin-bottom: 18px;

    color: var(--azul-escuro);

    font-size: 20px;

}


.news-detail-sidebar p {

    color: #68737c;

    font-size: 14px;

    line-height: 1.7;

}


/* ========================================
   BOTÃO VOLTAR
========================================= */

.news-back-button {

    display: inline-block;

    margin-top: 35px;

    padding: 14px 22px;

    background: var(--azul);

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: .25s ease;

}


.news-back-button:hover {

    background: var(--azul-escuro);

    transform: translateX(5px);

}


/* ========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 900px) {

    .news-detail-layout {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .news-detail-sidebar {

        border-left: none;

        border-top: 4px solid var(--amarelo);

    }

}


/* ========================================
   RESPONSIVO — TELEMÓVEL
========================================= */

@media (max-width: 600px) {

    .news-detail-hero {

        min-height: 380px;

        padding: 110px 0 70px;

    }


    .news-detail-hero h1 {

        font-size: 44px;

        letter-spacing: -1px;

    }


    .news-detail {

        padding: 65px 0 80px;

    }


    .news-detail-image {

        min-height: 280px;

    }


    .news-detail-image img {

        min-height: 280px;

    }


    .news-detail-content h2 {

        font-size: 28px;

    }


    .news-detail-content p {

        font-size: 15px;

        line-height: 1.8;

    }

}

/* ========================================
   NOTÍCIA 4 — TECNOLOGIA
======================================== */

.noticia-hero {
    padding: 150px 0 90px;
    background: linear-gradient(120deg, var(--azul-escuro), var(--azul));
    color: #ffffff;
}

.noticia-hero .section-label {
    color: var(--amarelo);
}

.noticia-hero h1 {
    max-width: 900px;
    margin: 20px 0;
    font-size: clamp(42px, 6vw, 75px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.noticia-hero h1 span {
    color: var(--amarelo);
}

.noticia-hero p {
    max-width: 700px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.8;
}

.noticia-data {
    display: block;
    margin-top: 25px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ========================================
   CONTEÚDO
======================================== */

.noticia-conteudo {
    padding: 90px 0 120px;
    background: #ffffff;
}

.noticia-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
    align-items: start;
}


/* ========================================
   IMAGEM
======================================== */

.noticia-imagem {
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #e9eef2;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ========================================
   TEXTO
======================================== */

.noticia-texto {
    max-width: 800px;
}

.noticia-texto h2 {
    margin-bottom: 25px;
    color: var(--azul-escuro);
    font-size: 34px;
    line-height: 1.2;
}

.noticia-texto p {
    margin-bottom: 22px;
    color: #68737c;
    font-size: 16px;
    line-height: 1.9;
}


/* ========================================
   LATERAL
======================================== */

.noticia-lateral {
    padding: 30px;
    background: #f5f8fa;
    border-top: 5px solid var(--amarelo);
}

.noticia-lateral h3 {
    margin-bottom: 18px;
    color: var(--azul-escuro);
    font-size: 21px;
}

.noticia-lateral p {
    color: #68737c;
    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   BOTÃO
======================================== */

.noticia-voltar {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 24px;
    background: var(--azul);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.noticia-voltar:hover {
    background: var(--azul-escuro);
    transform: translateX(5px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .noticia-grid {
        grid-template-columns: 1fr;
    }

    .noticia-imagem {
        height: 420px;
    }

}


/* ========================================
   TELEMÓVEL
======================================== */

@media (max-width: 600px) {

    .noticia-hero {
        padding: 120px 0 70px;
    }

    .noticia-hero h1 {
        font-size: 45px;
    }

    .noticia-conteudo {
        padding: 65px 0 80px;
    }

    .noticia-imagem {
        height: 280px;
    }

    .noticia-texto h2 {
        font-size: 28px;
    }

    .noticia-texto p {
        font-size: 15px;
    }

}

/* ========================================
   PÁGINA SOBRE NÓS
========================================= */


/* ========================================
   HERO
========================================= */

.about-hero {

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    padding: 120px 0 80px;

}


.about-hero .section-label {

    color: var(--amarelo);

}


.about-hero h1 {

    max-width: 850px;

    margin: 20px 0;

    font-size: clamp(45px, 7vw, 82px);

    line-height: .98;

    letter-spacing: -2px;

}


.about-hero h1 span {

    color: var(--amarelo);

}


.about-hero p {

    max-width: 650px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.8;

}


/* ========================================
   INTRODUÇÃO
========================================= */

.about-page {

    padding: 110px 0;

    background: #ffffff;

}


.about-page-grid {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    align-items: center;

}


.about-page-text .section-label {

    color: var(--azul);

}


.about-page-text h2 {

    max-width: 700px;

    margin: 20px 0 30px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -1.5px;

}


.about-page-text h2 span {

    color: var(--azul);

}


.about-page-text p {

    max-width: 720px;

    margin-bottom: 20px;

    color: #68737c;

    font-size: 16px;

    line-height: 1.85;

}


/* ========================================
   DESTAQUE
========================================= */

.about-page-highlight {

    min-height: 390px;

    padding: 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    background:
        linear-gradient(
            135deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    position: relative;

    overflow: hidden;

}


.about-page-highlight::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: var(--amarelo);

    opacity: .12;

    top: -80px;

    right: -70px;

}


.about-page-highlight span {

    position: relative;

    z-index: 2;

    color: rgba(255,255,255,.75);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

}


.about-page-highlight strong {

    position: relative;

    z-index: 2;

    margin-top: 5px;

    color: var(--amarelo);

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1;

}


.about-page-highlight p {

    position: relative;

    z-index: 2;

    max-width: 250px;

    margin-top: 25px;

    color: rgba(255,255,255,.8);

    font-size: 16px;

    line-height: 1.7;

}


/* ========================================
   MISSÃO / VISÃO / VALORES
========================================= */

.about-values {

    padding: 110px 0 120px;

    background: #f5f7f9;

}


.about-section-heading {

    max-width: 800px;

    margin-bottom: 60px;

}


.about-section-heading .section-label {

    color: var(--azul);

}


.about-section-heading h2 {

    margin-top: 18px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

}


.about-section-heading h2 span {

    color: var(--azul);

}


/* ========================================
   CARDS
========================================= */

.about-values-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.about-value-card {

    min-height: 330px;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e4e9ed;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.about-value-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

}


.about-value-number {

    margin-bottom: 45px;

    color: var(--amarelo);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;

}


.about-value-card h3 {

    margin-bottom: 18px;

    color: var(--azul-escuro);

    font-size: 27px;

}


.about-value-card p {

    color: #68737c;

    font-size: 15px;

    line-height: 1.8;

}


/* ========================================
   NÚMEROS
========================================= */

.about-numbers {

    padding: 90px 0;

    background: var(--azul-escuro);

}


.about-numbers-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

}


.about-number {

    text-align: center;

    padding: 20px;

}


.about-number strong {

    display: block;

    margin-bottom: 10px;

    color: var(--amarelo);

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

}


.about-number span {

    color: rgba(255,255,255,.75);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .5px;

}


/* ========================================
   CTA
========================================= */

.about-cta {

    padding: 100px 0;

    background: #ffffff;

}


.about-cta-box {

    padding: 80px 60px;

    text-align: center;

    background:
        linear-gradient(
            120deg,
            var(--azul),
            var(--azul-escuro)
        );

    color: #ffffff;

}


.about-cta-box .section-label {

    color: var(--amarelo);

}


.about-cta-box h2 {

    margin: 20px auto;

    max-width: 800px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

}


.about-cta-box h2 span {

    color: var(--amarelo);

}


.about-cta-box p {

    max-width: 600px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.8);

    font-size: 16px;

    line-height: 1.7;

}


.about-cta-button {

    display: inline-block;

    padding: 15px 25px;

    background: var(--amarelo);

    color: var(--azul-escuro);

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    transition: .25s ease;

}


.about-cta-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);

}


/* ========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 950px) {

    .about-page-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .about-page-highlight {

        min-height: 320px;

    }


    .about-values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-numbers-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ========================================
   RESPONSIVO — TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .about-hero {

        min-height: 380px;

        padding: 110px 0 70px;

    }


    .about-hero h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }


    .about-hero p {

        font-size: 15px;

    }


    .about-page {

        padding: 75px 0;

    }


    .about-page-grid {

        gap: 35px;

    }


    .about-page-text h2 {

        font-size: 38px;

    }


    .about-page-highlight {

        min-height: 280px;

        padding: 35px;

    }


    .about-values {

        padding: 75px 0;

    }


    .about-values-grid {

        grid-template-columns: 1fr;

    }


    .about-value-card {

        min-height: auto;

        padding: 30px;

    }


    .about-numbers {

        padding: 65px 0;

    }


    .about-numbers-grid {

        grid-template-columns: 1fr 1fr;

        gap: 10px;

    }


    .about-number strong {

        font-size: 42px;

    }


    .about-number span {

        font-size: 11px;

    }


    .about-cta {

        padding: 70px 0;

    }


    .about-cta-box {

        padding: 55px 25px;

    }


    .about-cta-box h2 {

        font-size: 38px;

    }

}

/* ========================================
   PÁGINA — ENSINO
========================================= */


/* ========================================
   HERO
========================================= */

.page-hero {

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    padding: 120px 0 80px;

}


.page-hero .section-label {

    color: var(--amarelo);

}


.page-hero h1 {

    max-width: 850px;

    margin: 20px 0;

    font-size: clamp(45px, 7vw, 82px);

    line-height: .98;

    letter-spacing: -2px;

}


.page-hero h1 span {

    color: var(--amarelo);

}


.page-hero p {

    max-width: 650px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.8;

}


/* ========================================
   INTRODUÇÃO
========================================= */

.education-introduction {

    padding: 110px 0;

    background: #ffffff;

}


.education-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;

}


.education-intro-grid h2 {

    margin-top: 18px;

    max-width: 550px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -1.5px;

}


.education-intro-grid h2 span {

    color: var(--azul);

}


.education-intro-grid p {

    margin-bottom: 22px;

    color: #68737c;

    font-size: 16px;

    line-height: 1.85;

}


/* ========================================
   CABEÇALHO DAS SECÇÕES
========================================= */

.section-heading {

    margin-bottom: 55px;

}


.section-heading h2 {

    margin-top: 18px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -1.5px;

}


.section-heading h2 span {

    color: var(--azul);

}


/* ========================================
   NÍVEIS DE ENSINO
========================================= */

.education-programs {

    padding: 110px 0 120px;

    background: #f5f7f9;

}


.education-program-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    align-items: stretch;

}


/* ========================================
   CARTÃO
========================================= */

.education-program-card {

    position: relative;

    padding: 42px 35px 38px;

    background: #ffffff;

    border: 1px solid #e2e7eb;

    min-height: 520px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.education-program-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);

}


/* CARTÃO PRINCIPAL */

.education-program-card.featured {

    background: var(--azul-escuro);

    color: #ffffff;

    border-color: var(--azul-escuro);

}


.education-program-card.featured h3 {

    color: #ffffff;

}


.education-program-card.featured p {

    color: rgba(255,255,255,.78);

}


.education-program-card.featured .program-number {

    color: var(--amarelo);

}


.education-program-card.featured .education-tag {

    color: var(--amarelo);

}


/* ========================================
   NÚMERO
========================================= */

.program-number {

    margin-bottom: 35px;

    color: var(--azul);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* ========================================
   ETIQUETA
========================================= */

.education-tag {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--azul);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


/* ========================================
   TÍTULO
========================================= */

.education-program-card h3 {

    margin-bottom: 18px;

    color: var(--azul-escuro);

    font-size: 27px;

    line-height: 1.2;

}


/* ========================================
   TEXTO
========================================= */

.education-program-card > p {

    margin-bottom: 28px;

    color: #68737c;

    font-size: 14px;

    line-height: 1.8;

}


/* ========================================
   CARACTERÍSTICAS
========================================= */

.program-features {

    display: flex;

    flex-direction: column;

    gap: 13px;

    padding-top: 22px;

    border-top: 1px solid #e5e9ed;

}


.education-program-card.featured .program-features {

    border-top-color: rgba(255,255,255,.18);

}


.program-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #56636d;

    font-size: 13px;

    line-height: 1.4;

}


.education-program-card.featured .program-features div {

    color: rgba(255,255,255,.82);

}


.program-features span {

    color: var(--azul);

    font-weight: 900;

}


.education-program-card.featured .program-features span {

    color: var(--amarelo);

}


/* ========================================
   METODOLOGIA
========================================= */

.education-methodology {

    padding: 120px 0;

    background: #ffffff;

}


.methodology-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: start;

}


.methodology-content h2 {

    max-width: 600px;

    margin: 18px 0 25px;

    color: var(--azul-escuro);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -1.5px;

}


.methodology-content h2 span {

    color: var(--azul);

}


.methodology-content p {

    max-width: 600px;

    margin-bottom: 20px;

    color: #68737c;

    font-size: 15px;

    line-height: 1.85;

}


/* ========================================
   LISTA DA METODOLOGIA
========================================= */

.methodology-list {

    display: flex;

    flex-direction: column;

    border-top: 1px solid #e1e6ea;

}


.methodology-item {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #e1e6ea;

}


.methodology-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--azul-escuro);

    color: var(--amarelo);

    font-size: 11px;

    font-weight: 900;

}


.methodology-item h3 {

    margin-bottom: 7px;

    color: var(--azul-escuro);

    font-size: 18px;

}


.methodology-item p {

    color: #68737c;

    font-size: 13px;

    line-height: 1.65;

}


/* ========================================
   ADMISSÕES / CTA
========================================= */

.education-methodology + .admissions-section {

    padding-top: 0;

}


.admissions-section {

    padding-bottom: 110px;

}


.admissions-box {

    position: relative;

    overflow: hidden;

    padding: 70px;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

}


.admissions-content {

    max-width: 800px;

}


.admissions-label {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--amarelo);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.admissions-content h2 {

    margin-bottom: 22px;

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -1px;

}


.admissions-content h2 span {

    color: var(--amarelo);

}


.admissions-content p {

    max-width: 650px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.8;

}


/* ========================================
   BOTÕES
========================================= */

.admissions-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


.admission-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;

    transition: .25s ease;

}


.admission-primary {

    background: var(--amarelo);

    color: var(--azul-escuro);

}


.admission-primary:hover {

    transform: translateY(-3px);

}


.admission-secondary {

    border: 1px solid rgba(255,255,255,.35);

    color: #ffffff;

}


.admission-secondary:hover {

    background: #ffffff;

    color: var(--azul-escuro);

}


/* ========================================
   RESPONSIVO — TABLET
========================================= */

@media (max-width: 950px) {

    .education-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .education-program-grid {

        grid-template-columns: 1fr 1fr;

    }


    .education-program-card {

        min-height: auto;

    }


    .methodology-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }

}


/* ========================================
   RESPONSIVO — TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .page-hero {

        min-height: 380px;

        padding: 105px 0 70px;

    }


    .page-hero h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }


    .page-hero p {

        font-size: 15px;

    }


    .education-introduction {

        padding: 75px 0;

    }


    .education-programs {

        padding: 75px 0 80px;

    }


    .education-program-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .education-program-card {

        padding: 35px 28px;

    }


    .education-methodology {

        padding: 80px 0;

    }


    .methodology-grid {

        gap: 45px;

    }


    .methodology-item {

        grid-template-columns: 45px 1fr;

        gap: 15px;

    }


    .methodology-icon {

        width: 40px;

        height: 40px;

    }


    .admissions-section {

        padding-bottom: 75px;

    }


    .admissions-box {

        padding: 45px 25px;

    }


    .admissions-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .admission-btn {

        width: 100%;

    }

}

/* ========================================
   PÁGINA DE EVENTOS
========================================= */

.events-hero {

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    padding: 120px 0 80px;

}


.events-hero .section-label {

    color: var(--amarelo);

}


.events-hero h1 {

    max-width: 850px;

    margin: 20px 0;

    font-size: clamp(45px, 7vw, 82px);

    line-height: .98;

    letter-spacing: -2px;

}


.events-hero h1 span {

    color: var(--amarelo);

}


.events-hero p {

    max-width: 650px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.8;

}


/* ========================================
   INTRODUÇÃO
========================================= */

.events-introduction {

    padding: 100px 0;

    background: #ffffff;

}


.events-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;

}


.events-intro-grid h2 {

    margin-top: 18px;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

}


.events-intro-grid h2 span {

    color: var(--azul);

}


.events-intro-grid p {

    margin-bottom: 20px;

    color: #68737c;

    font-size: 16px;

    line-height: 1.8;

}


/* ========================================
   EVENTOS
========================================= */

.events-page {

    padding: 100px 0 120px;

    background: #f5f7f9;

}


.events-page .section-heading {

    margin-bottom: 55px;

}


.events-page .section-heading h2 {

    margin-top: 18px;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

}


.events-page .section-heading h2 span {

    color: var(--azul);

}


.events-page .section-heading p {

    max-width: 650px;

    margin-top: 20px;

    color: #68737c;

    line-height: 1.8;

}


/* ========================================
   GRID DOS EVENTOS
========================================= */

.events-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}


/* ========================================
   CARD
========================================= */

.event-card {

    display: grid;

    grid-template-columns: 110px 1fr;

    background: #ffffff;

    border: 1px solid #e3e8ec;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.event-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.10);

}


.event-card-featured {

    border-top: 5px solid var(--amarelo);

}


/* ========================================
   DATA
========================================= */

.event-date {

    min-height: 260px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--azul-escuro);

    color: #ffffff;

}


.event-date strong {

    font-size: 48px;

    line-height: 1;

}


.event-date span {

    margin-top: 8px;

    color: var(--amarelo);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* ========================================
   CONTEÚDO
========================================= */

.event-card-content {

    padding: 30px;

}


.event-category {

    display: inline-block;

    margin-bottom: 14px;

    color: var(--azul);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.event-card h3 {

    margin-bottom: 15px;

    color: var(--azul-escuro);

    font-size: 23px;

    line-height: 1.25;

}


.event-card p {

    color: #68737c;

    font-size: 14px;

    line-height: 1.75;

}


/* ========================================
   INFORMAÇÕES
========================================= */

.event-info {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #e6eaed;

}


.event-info span {

    color: #59656e;

    font-size: 12px;

    font-weight: 700;

}


/* ========================================
   DESTAQUE
========================================= */

.events-highlight {

    padding: 100px 0;

    background: #ffffff;

}


.events-highlight-box {

    display: grid;

    grid-template-columns: 1fr 280px;

    gap: 60px;

    align-items: center;

    padding: 65px;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

}


.events-highlight-box .section-label {

    color: var(--amarelo);

}


.events-highlight-box h2 {

    max-width: 750px;

    margin: 18px 0;

    font-size: clamp(36px, 5vw, 60px);

    line-height: 1.05;

}


.events-highlight-box h2 span {

    color: var(--amarelo);

}


.events-highlight-box p {

    max-width: 700px;

    color: rgba(255,255,255,.82);

    line-height: 1.8;

}


.events-highlight-number {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px;

    border-left: 1px solid rgba(255,255,255,.2);

}


.events-highlight-number strong {

    color: var(--amarelo);

    font-size: 75px;

    line-height: 1;

}


.events-highlight-number span {

    margin-top: 10px;

    text-align: center;

    color: rgba(255,255,255,.8);

    font-size: 14px;

    line-height: 1.5;

}


/* ========================================
   CTA
========================================= */

.events-cta {

    padding: 100px 0;

    background: #f5f7f9;

}


.events-cta-box {

    text-align: center;

    max-width: 850px;

    margin: 0 auto;

}


.events-cta-box .section-label {

    color: var(--azul);

}


.events-cta-box h2 {

    margin: 18px 0;

    color: var(--azul-escuro);

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.05;

}


.events-cta-box h2 span {

    color: var(--azul);

}


.events-cta-box p {

    max-width: 650px;

    margin: 0 auto;

    color: #68737c;

    line-height: 1.8;

}


.events-cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;

}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .events-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .events-grid {

        grid-template-columns: 1fr;

    }


    .events-highlight-box {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 45px;

    }


    .events-highlight-number {

        border-left: 0;

        border-top: 1px solid rgba(255,255,255,.2);

        padding-top: 35px;

    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 600px) {

    .events-hero {

        min-height: 380px;

        padding: 110px 0 70px;

    }


    .events-hero h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }


    .events-introduction {

        padding: 70px 0;

    }


    .events-page {

        padding: 70px 0 80px;

    }


    .event-card {

        grid-template-columns: 80px 1fr;

    }


    .event-date {

        min-height: 280px;

    }


    .event-date strong {

        font-size: 36px;

    }


    .event-card-content {

        padding: 22px;

    }


    .event-card h3 {

        font-size: 19px;

    }


    .events-highlight {

        padding: 70px 0;

    }


    .events-highlight-box {

        padding: 30px 25px;

    }


    .events-highlight-box h2 {

        font-size: 38px;

    }


    .events-highlight-number strong {

        font-size: 60px;

    }


    .events-cta {

        padding: 70px 0;

    }


    .events-cta-buttons {

        flex-direction: column;

    }


    .events-cta-buttons a {

        width: 100%;

        text-align: center;

    }

}

/* ========================================
IMAGENS DA GALERIA NO INDEX
========================================= */

.gallery-placeholder {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}

.gallery-placeholder img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center;
transition: transform .5s ease;
}

/* EFEITO AO PASSAR O RATO */

.gallery-item:hover .gallery-placeholder img {
transform: scale(1.06);
}

/* ========================================
GARANTIR QUE A GRELHA FUNCIONE
========================================= */

.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 260px;
gap: 20px;
}

/* FOTO GRANDE */

.gallery-item-large {
grid-column: span 2;
grid-row: span 2;
}

/* FOTO LARGA */

.gallery-item-wide {
grid-column: span 2;
}

/* ========================================
RESPONSIVO — TABLET
========================================= */

@media (max-width: 950px) {


.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

}

/* ========================================
RESPONSIVO — TELEMÓVEL
========================================= */

@media (max-width: 650px) {


.gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 15px;
}

.gallery-item-large,
.gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-placeholder img {
    object-position: center;
}
}

/* ========================================
   PÁGINA INDIVIDUAL DA NOTÍCIA
========================================= */

.noticia-conteudo {
    padding: 100px 0 120px;
    background: #ffffff;
}


/* ========================================
   GRELHA DA NOTÍCIA
========================================= */

.noticia-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 60px;
    align-items: start;
}


/* ========================================
   IMAGEM DA NOTÍCIA
========================================= */

.noticia-imagem {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 40px;
    background: #f1f4f6;
    overflow: hidden;
}


/* IMAGEM REAL */

.noticia-imagem img {
    width: 100%;
    height: auto;
    max-height: 560px;
    display: block;
    object-fit: contain;
    object-position: center;
}


/* ========================================
   TEXTO
========================================= */

.noticia-texto {
    width: 100%;
    max-width: 850px;
}


.noticia-texto h2 {
    margin: 0 0 25px;
    color: var(--azul-escuro);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}


.noticia-texto p {
    margin: 0 0 22px;
    color: #68737c;
    font-size: 16px;
    line-height: 1.9;
}


/* ========================================
   BOTÃO VOLTAR
========================================= */

.noticia-voltar {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 20px;
    background: var(--azul);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}


.noticia-voltar:hover {
    background: var(--azul-escuro);
    transform: translateX(5px);
}


/* ========================================
   LATERAL
========================================= */

.noticia-lateral {
    padding: 35px;
    background: #f5f7f9;
    border-left: 4px solid var(--amarelo);
}


.noticia-lateral h3 {
    margin: 0 0 15px;
    color: var(--azul-escuro);
    font-size: 22px;
    line-height: 1.25;
}


.noticia-lateral p {
    margin: 0;
    color: #68737c;
    font-size: 14px;
    line-height: 1.8;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .noticia-conteudo {
        padding: 80px 0 100px;
    }

    .noticia-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .noticia-imagem {
        max-width: 100%;
    }

    .noticia-imagem img {
        max-height: 500px;
    }

    .noticia-texto {
        max-width: 100%;
    }

    .noticia-lateral {
        width: 100%;
        max-width: 850px;
    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .noticia-conteudo {
        padding: 65px 0 80px;
    }

    .noticia-grid {
        gap: 35px;
    }

    .noticia-imagem {
        margin-bottom: 30px;
    }

    .noticia-imagem img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
    }

    .noticia-texto h2 {
        font-size: 32px;
    }

    .noticia-texto p {
        font-size: 15px;
        line-height: 1.8;
    }

    .noticia-lateral {
        padding: 25px;
    }

}

/* ========================================
   NOTÍCIA INDIVIDUAL
   VIDA ESCOLAR
========================================= */

.single-news {
    width: 100%;
    background: #ffffff;
}


/* ========================================
   HERO DA NOTÍCIA
========================================= */

.single-news-hero {
    padding: 150px 0 80px;
    background: linear-gradient(
        120deg,
        var(--azul-escuro),
        var(--azul)
    );
    color: #ffffff;
}


.single-news-hero .container {
    max-width: 1100px;
}


.single-news-back {
    display: inline-block;
    margin-bottom: 45px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}


.single-news-back:hover {
    color: var(--amarelo);
    transform: translateX(-5px);
}


.single-news-hero .section-label {
    display: block;
    margin-bottom: 20px;
    color: var(--amarelo);
}


.single-news-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(45px, 7vw, 80px);
    line-height: 1;
    letter-spacing: -2px;
}


.single-news-hero h1 span {
    color: var(--amarelo);
}


/* ========================================
   DATA E CATEGORIA
========================================= */

.single-news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ========================================
   IMAGEM PRINCIPAL
========================================= */

.single-news-image-section {
    padding: 70px 0 0;
    background: #ffffff;
}


.single-news-image {
    width: 100%;
    max-width: 1050px;
    height: auto;
    max-height: 600px;
    margin: 0 auto;
    overflow: hidden;
    background: #f1f3f5;
}


.single-news-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}


/* ========================================
   CONTEÚDO DA NOTÍCIA
========================================= */

.single-news-content {
    padding: 70px 0 110px;
    background: #ffffff;
}


.single-news-content .container {
    max-width: 900px;
}


.single-news-content article {
    width: 100%;
}


.single-news-content p {
    margin: 0 0 25px;
    color: #59656e;
    font-size: 17px;
    line-height: 1.9;
}


.single-news-content .single-news-lead {
    margin-bottom: 35px;
    color: var(--azul-escuro);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.75;
}


.single-news-content h2 {
    margin: 55px 0 25px;
    color: var(--azul-escuro);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}


/* ========================================
   BOTÃO FINAL
========================================= */

.single-news-bottom {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #e5e9ed;
}


.single-news-button {
    display: inline-block;
    padding: 14px 22px;
    background: var(--azul);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}


.single-news-button:hover {
    background: var(--azul-escuro);
    transform: translateX(-5px);
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .single-news-hero {
        padding: 130px 0 70px;
    }


    .single-news-hero h1 {
        font-size: clamp(42px, 8vw, 65px);
    }


    .single-news-image-section {
        padding-top: 50px;
    }


    .single-news-image {
        max-height: 520px;
    }


    .single-news-image img {
        max-height: 520px;
    }


    .single-news-content {
        padding: 60px 0 90px;
    }

}


/* ========================================
   TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .single-news-hero {
        padding: 110px 0 60px;
    }


    .single-news-back {
        margin-bottom: 35px;
    }


    .single-news-hero h1 {
        font-size: 45px;
        line-height: 1.02;
        letter-spacing: -1px;
    }


    .single-news-meta {
        margin-top: 25px;
        gap: 10px;
        flex-wrap: wrap;
    }


    .single-news-image-section {
        padding: 30px 0 0;
    }


    .single-news-image {
        width: 100%;
        max-height: 400px;
    }


    .single-news-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }


    .single-news-content {
        padding: 50px 0 70px;
    }


    .single-news-content p {
        font-size: 15px;
        line-height: 1.8;
    }


    .single-news-content .single-news-lead {
        font-size: 18px;
        line-height: 1.7;
    }


    .single-news-content h2 {
        margin-top: 40px;
        font-size: 30px;
    }


    .single-news-button {
        width: 100%;
        text-align: center;
    }

}

/* ========================================
   LOGOTIPO DO COLÉGIO
========================================= */

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}


.site-logo img {
    display: block;
    width: auto;
    height: 55px;
    max-width: 190px;
    object-fit: contain;
}


/* ========================================
   LOGO NO TELEMÓVEL
========================================= */

@media (max-width: 650px) {

    .site-logo {
        height: 50px;
    }

    .site-logo img {
        height: 45px;
        max-width: 160px;
    }

}