/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: Century Gothic, Capriola, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #202020;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 10px;

    padding: 10px 16px;

    background: #000;
    color: #fff;

    text-decoration: none;

    z-index: 9999;
}

.skip-link:focus {
    left: 10px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
    
}
#conteudo{
    margin: 22px;
}


/* =========================================================
   TIPOGRAFIA
   ========================================================= */
#titulo-principal{
    font-family:Capriola;
}


h1,
h2,
h3 {
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.4rem;
}

p {
    max-width: 720px;
}

.eyebrow {
    margin-bottom: 15px;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;

    width: 100%;

    background-color: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid #e8e8e8;

    backdrop-filter: blur(10px);

    z-index: 1000;
}

.main-navigation {
    width: min(1200px, 92%);
    min-height: 78px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* Logo */

.main-navigation > a {
    flex-shrink: 0;
}

.main-navigation img {
    width: 180px;
    height: auto;
}


/* Menu */

.main-navigation ul {
    display: flex;
    align-items: center;

    gap: 28px;

    list-style: none;
}

.main-navigation li {
    position: relative;
}

.main-navigation li a {
    display: block;

    padding: 8px 0;

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.main-navigation li a:hover {
    opacity: 0.6;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: calc(100vh - 78px);

    padding-top: 80px;
    padding-bottom: 80px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 70px;
}


/* Texto */

.hero-content {
    max-width: 650px;
}

.hero h1 {
    margin-bottom: 25px;
}

.hero p:not(.eyebrow) {
    margin-bottom: 30px;

    font-size: 1.15rem;
    line-height: 1.75;

    color: #555;
}


/* Imagem */

.hero-image {
    overflow: hidden;

    border-radius: 24px;
}

.hero-image img {
    width: 100%;
    height: 620px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   BOTÕES
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    background-color: #202020;
    color: #ffffff;

    border: 1px solid #202020;
    border-radius: 100px;

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    background-color: transparent;
    color: #202020;

    transform: translateY(-2px);
}


/* =========================================================
   SEÇÕES
   ========================================================= */

main > section {
    padding-top: 120px;
    padding-bottom: 120px;
}

main > section:nth-child(even) {
    background-color: #f7f7f5;
}


/* =========================================================
   SOBRE
   ========================================================= */

#sobre .container {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

#sobre h2 {
    margin-bottom: 25px;
}

#sobre p {
    color: #555;
    font-size: 1.1rem;
}


/* =========================================================
   ENSINO
   ========================================================= */

#ensino .container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

#ensino .eyebrow,
#ensino h2 {
    grid-column: 1 / -1;
}


/* Cards */

#ensino article {
    padding: 35px;

    border: 1px solid #dedede;
    border-radius: 18px;

    background-color: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#ensino article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}

#ensino article h3 {
    margin-bottom: 15px;
}

#ensino article p {
    margin-bottom: 25px;

    color: #666;
}

#ensino article a {
    font-weight: 700;

    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}


/* =========================================================
   DIFERENCIAIS
   ========================================================= */

#diferenciais .container {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

#diferenciais h2 {
    margin-bottom: 25px;
}

#diferenciais ul {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    list-style: none;
}

#diferenciais li {
    padding: 20px;

    border-bottom: 1px solid #ddd;

    font-weight: 600;
}


/* =========================================================
   DEPOIMENTOS
   ========================================================= */

#titulo-depoimentos {
    margin-bottom: 40px;
}

figure {
    max-width: 850px;
}

blockquote {
    margin-bottom: 20px;
}

blockquote p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.35;

    letter-spacing: -0.02em;
}

figcaption {
    font-size: 0.9rem;
    font-weight: 600;

    color: #666;
}


/* =========================================================
   BLOG / NOTÍCIAS
   ========================================================= */

#noticias .container {
    max-width: 900px;
}

#noticias h2 {
    margin-bottom: 50px;
}

#noticias article {
    padding-bottom: 35px;

    margin-bottom: 35px;

    border-bottom: 1px solid #ddd;
}

#noticias article header p {
    margin-bottom: 10px;

    font-size: 0.85rem;

    color: #777;
}

#noticias article h3 {
    margin-bottom: 15px;
}

#noticias article h3 a {
    text-decoration: none;
}

#noticias article h3 a:hover {
    text-decoration: underline;
}

#noticias article > p {
    color: #666;
}

#noticias > .container > a {
    font-weight: 700;

    text-underline-offset: 5px;
}


/* =========================================================
   FAQ
   ========================================================= */

#faq .container {
    max-width: 900px;
}

#faq h2 {
    margin-bottom: 40px;
}

details {
    padding: 22px 0;

    border-top: 1px solid #ddd;
}

details:last-child {
    border-bottom: 1px solid #ddd;
}

summary {
    cursor: pointer;

    font-size: 1.05rem;
    font-weight: 700;

    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";

    float: right;

    font-size: 1.4rem;
    font-weight: 400;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin-top: 15px;

    color: #666;
}


/* =========================================================
   CONTATO
   ========================================================= */

#contato .container {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

#contato h2 {
    margin-bottom: 25px;
}

address {
    font-style: normal;
}

address p {
    margin-bottom: 8px;
}

address a {
    font-weight: 600;
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

form {
    display: grid;

    gap: 20px;
}

form > div {
    display: grid;

    gap: 8px;
}

label {
    font-size: 0.9rem;
    font-weight: 700;
}

input,
textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #d5d5d5;
    border-radius: 8px;

    background-color: #fff;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: #202020;

    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.08);
}

textarea {
    resize: vertical;

    min-height: 150px;
}

button {
    width: fit-content;

    padding: 14px 28px;

    border: 1px solid #202020;
    border-radius: 100px;

    background-color: #202020;
    color: #fff;

    cursor: pointer;

    font-weight: 700;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

button:hover {
    background-color: transparent;
    color: #202020;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 60px 0;

    background-color: #171717;
    color: #ffffff;
}

.site-footer h2 {
    margin-bottom: 20px;

    font-size: 1.5rem;
}

.site-footer p {
    color: #aaa;
}

.site-footer nav {
    margin: 25px 0;
}

.site-footer nav ul {
    display: flex;

    gap: 20px;

    list-style: none;

    flex-wrap: wrap;
}

.site-footer a {
    color: #ffffff;

    text-underline-offset: 4px;
}

.site-footer small {
    color: #777;
}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        min-height: auto;

        padding-top: 18px;
        padding-bottom: 18px;

        flex-direction: column;

        align-items: flex-start;
    }

    .main-navigation ul {
        width: 100%;

        gap: 18px;
    }


    .hero {
        grid-template-columns: 1fr;

        gap: 50px;

        min-height: auto;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 500px;
    }


    #sobre .container,
    #diferenciais .container,
    #contato .container {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    #ensino .container {
        grid-template-columns: 1fr;
    }

    #ensino .eyebrow,
    #ensino h2 {
        grid-column: auto;
    }


    #diferenciais ul {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    body {
        font-size: 15px;
    }


    .container {
        width: min(92%, 500px);
    }


    .main-navigation img {
        width: 150px;
    }


    .main-navigation ul {
        gap: 12px 18px;
    }

    .main-navigation li a {
        font-size: 0.85rem;
    }


    .hero {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .hero-image {
        border-radius: 16px;
    }

    .hero-image img {
        height: 350px;
    }


    main > section {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    #ensino article {
        padding: 25px;
    }


    blockquote p {
        font-size: 1.5rem;
    }


    .site-footer nav ul {
        flex-direction: column;
        gap: 10px;
    }

}
```css
/* =========================================================
   MENU MOBILE — JS
   ========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #202020;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: currentColor;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   HEADER AO ROLAR
   ========================================================= */

.site-header {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.06);
}

.site-header.hide-header {
    transform: translateY(-100%);
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
   ========================================================= */

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        position: relative;
    }

    .menu-toggle {
        display: block;

        position: absolute;

        top: 18px;
        right: 0;
    }

    .main-navigation ul {
        display: none;

        width: 100%;

        padding-top: 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }

    .main-navigation.menu-open ul {
        display: flex;
    }


    /* Animação do ícone */

    .main-navigation.menu-open
    .menu-toggle span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .main-navigation.menu-open
    .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .main-navigation.menu-open
    .menu-toggle span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}


/* =========================================================
   DESATIVAR ANIMAÇÕES SE NECESSÁRIO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

}
```
