```css
:root {
    --blue: #0088f8;
    --blue-dark: #0050c0;
    --blue-mid: #0068e8;
    --blue-light: #eaf4ff;
    --white: #ffffff;
    --text: #17243a;
    --text-light: #607089;
    --bg: #ffffff;
    --bg-alt: #f5faff;
    --border: #dcecff;
    --shadow: 0 15px 40px rgba(0, 80, 192, .10);
    --shadow-hover: 0 20px 50px rgba(0, 80, 192, .18);
    --radius: 20px;
    --container: 1180px;
    --transition: .3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Nunito Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img,
svg {
    max-width: 100%;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.container-narrow {
    max-width: 850px;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(220, 236, 255, .7);
    transition: var(--transition);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: 0 8px 30px rgba(0, 80, 192, .08);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    display: flex;
    width: 38px;
    height: 38px;
}

.logo-text {
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -.5px;
}

.logo-text strong {
    color: var(--blue);
    font-weight: 800;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #42516a;
    transition: var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 10px;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--blue);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 21px;
    border-radius: 12px;
    border: 2px solid transparent;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 8px 22px rgba(0, 136, 248, .22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 30px rgba(0, 136, 248, .30);
}

.btn-outline {
    color: var(--blue-dark);
    border-color: #b9ddff;
    background: rgba(255,255,255,.8);
}

.btn-outline:hover {
    color: white;
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-3px);
}

.btn-lg {
    min-height: 52px;
    padding: 13px 25px;
    border-radius: 14px;
    font-size: 14px;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--blue-light);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 5px;
    background: var(--blue-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 78px 0 0;
    z-index: 999;
    padding: 35px 25px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(15px);
    transform: translateX(100%);
    transition: transform .35s ease;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 30px;
}

.mobile-menu li a {
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid var(--border);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--text);
}

.mobile-menu .btn {
    width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;
    padding: 145px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,136,248,.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0,80,192,.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floaty {
    position: absolute;
    font-family: monospace;
    font-weight: 800;
    color: var(--blue);
    opacity: .08;
    animation: float 5s ease-in-out infinite;
}

.floaty-1 {
    left: 7%;
    top: 25%;
    font-size: 55px;
}

.floaty-2 {
    right: 7%;
    top: 20%;
    font-size: 35px;
    animation-delay: 1s;
}

.floaty-3 {
    left: 45%;
    bottom: 10%;
    font-size: 45px;
    animation-delay: 2s;
}

.floaty-4 {
    right: 28%;
    bottom: 25%;
    font-size: 27px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 13px;
    color: var(--blue-dark);
    background: var(--blue-light);
    border: 1px solid #d6ebff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
    color: #10213b;
}

.hero-text {
    max-width: 590px;
    margin-bottom: 32px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-actions.center {
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-illustration {
    width: min(100%, 510px);
    filter: drop-shadow(0 25px 35px rgba(0,80,192,.12));
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 45px;
    border: 2px solid #b9d9f8;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-cue span {
    width: 4px;
    height: 8px;
    background: var(--blue);
    border-radius: 5px;
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(17px);
    }
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-head h2 {
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -1px;
    color: #10213b;
}

.section-head p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
}

/* =========================
   GRIDS
========================= */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =========================
   FEATURE CARDS
========================= */

.feature-card,
.value-card {
    padding: 30px 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #b9ddff;
}

.feature-icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    background: var(--blue-light);
    border-radius: 16px;
    font-size: 28px;
}

.feature-card h3,
.value-card h3 {
    margin-bottom: 9px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

.feature-card p,
.value-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* =========================
   METODOLOGIA
========================= */

.learn-path {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    list-style: none;
}

.learn-path::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 41px;
    height: 3px;
    background: linear-gradient(90deg, #bce1ff, var(--blue), #bce1ff);
    z-index: 0;
}

.learn-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10px;
}

.learn-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 4px solid var(--blue-light);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,80,192,.12);
    font-size: 27px;
}

.learn-step h3 {
    margin-bottom: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

.learn-step p {
    color: var(--text-light);
    font-size: 13px;
}

/* =========================
   GRADE
========================= */

.journey-phase {
    margin-bottom: 48px;
}

.journey-phase:last-child {
    margin-bottom: 0;
}

.journey-phase-title {
    position: relative;
    width: fit-content;
    margin-bottom: 22px;
    padding-left: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    color: var(--blue-dark);
}

.journey-phase-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 5px;
    border-radius: 10px;
    background: linear-gradient(var(--blue), var(--blue-dark));
}

.month-card {
    padding: 23px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,80,192,.06);
    transition: var(--transition);
}

.month-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.month-card-highlight {
    background: linear-gradient(145deg, #ffffff, #eaf5ff);
    border: 2px solid #b9ddff;
}

.month-tag {
    display: inline-block;
    margin-bottom: 13px;
    padding: 5px 10px;
    border-radius: 20px;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 800;
}

.month-icon {
    margin-bottom: 8px;
    font-size: 27px;
}

.month-card h4 {
    margin-bottom: 7px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.month-card p {
    color: var(--text-light);
    font-size: 13px;
}

/* =========================
   FLOW
========================= */

.flow-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0045aa, #0088f8);
    color: white;
}

.flow-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.flow-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.section-head-light {
    position: relative;
    z-index: 2;
}

.section-head-light h2,
.section-head-light p {
    color: white;
}

.section-head-light p {
    opacity: .88;
}

.flow-chain {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.flow-node {
    width: 125px;
    min-height: 125px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 22px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.flow-node:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.2);
}

.flow-node span {
    font-size: 35px;
    margin-bottom: 6px;
}

.flow-node p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.flow-node-final {
    background: white;
    color: var(--blue-dark);
}

.flow-arrow {
    font-size: 28px;
    font-weight: 800;
    opacity: .8;
}

/* =========================
   PROJETOS
========================= */

.grid-project {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.project-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.project-thumb {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--c1), var(--c2));
}

.project-thumb svg {
    width: 120px;
    transition: transform .4s ease;
}

.project-card:hover .project-thumb svg {
    transform: scale(1.08) rotate(-2deg);
}

.project-card h3 {
    padding: 20px 18px 5px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

.project-card p {
    padding: 0 18px 22px;
    color: var(--text-light);
    font-size: 13px;
}

/* =========================
   MEDALHAS
========================= */

.medal-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.medal {
    width: 145px;
    min-height: 145px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.medal:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.medal-icon {
    margin-bottom: 10px;
    font-size: 38px;
}

.medal p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

/* =========================
   TURMA
========================= */

.turma-section {
    background: linear-gradient(180deg, #f5faff, #ffffff);
}

.turma-inner {
    position: relative;
    overflow: hidden;
    padding: 65px 50px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #eaf5ff);
    border: 1px solid #cce6ff;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.turma-inner::before {
    content: "</>";
    position: absolute;
    top: -30px;
    right: 30px;
    font-family: monospace;
    font-size: 100px;
    font-weight: 800;
    color: var(--blue);
    opacity: .05;
}

.turma-inner h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(27px, 4vw, 38px);
}

.turma-inner > p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.turma-info {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.turma-item {
    padding: 10px 15px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: #42516a;
    font-size: 13px;
    font-weight: 700;
}

/* =========================
   FAQ
========================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.faq-item.active {
    border-color: #afd9ff;
    box-shadow: 0 10px 30px rgba(0,80,192,.08);
}

.faq-question {
    width: 100%;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.faq-plus {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    border-radius: 5px;
    background: var(--blue);
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-plus::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* =========================
   CTA
========================= */

.cta-final {
    padding-top: 80px;
    padding-bottom: 100px;
}

.cta-final-inner {
    position: relative;
    overflow: hidden;
    padding: 70px 30px;
    text-align: center;
    background: linear-gradient(135deg, #eaf5ff, #f8fcff);
    border: 1px solid #cce6ff;
    border-radius: 30px;
}

.cta-final-inner::before {
    content: "0101";
    position: absolute;
    left: 30px;
    top: 20px;
    color: var(--blue);
    opacity: .06;
    font: 800 80px monospace;
}

.cta-final-inner::after {
    content: "{ }";
    position: absolute;
    right: 30px;
    bottom: 5px;
    color: var(--blue);
    opacity: .06;
    font: 800 90px monospace;
}

.cta-final h2,
.cta-final p,
.cta-final .hero-actions {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
}

.cta-final p {
    margin-bottom: 28px;
    color: var(--text-light);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding-top: 55px;
    background: #071a34;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.logo-text-footer {
    color: white;
}

.footer-brand > p {
    margin-top: 7px;
    color: #9bb0ca;
    font-size: 13px;
}

.footer-slogan {
    max-width: 340px;
    margin-top: 17px !important;
    line-height: 1.6;
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-social a {
    width: fit-content;
    color: #b8c8da;
    font-size: 13px;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-social a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
    color: #7f94af;
    text-align: center;
    font-size: 12px;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px 10px 10px;
    color: white;
    background: #20c76b;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,.23);
}

.whatsapp-float-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    font-size: 19px;
}

.whatsapp-float-text {
    font-size: 12px;
    font-weight: 800;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group .reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal-group .reveal:nth-child(3) {
    transition-delay: .16s;
}

.reveal-group .reveal:nth-child(4) {
    transition-delay: .24s;
}

.reveal-group .reveal:nth-child(5) {
    transition-delay: .32s;
}

.reveal-group .reveal:nth-child(6) {
    transition-delay: .40s;
}

/* =========================
   RESPONSIVIDADE
========================= */

@media (max-width: 1050px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-project {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-grid {
        gap: 30px;
    }
}

@media (max-width: 800px) {
    .container {
        width: min(100% - 30px, var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: auto;
        padding: 125px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        margin: 0 auto;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 470px;
        margin: 10px auto 0;
    }

    .learn-path {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .learn-path::before {
        top: 30px;
        bottom: 30px;
        left: 32px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .learn-step {
        display: grid;
        grid-template-columns: 65px 1fr;
        grid-template-rows: auto auto;
        column-gap: 20px;
        text-align: left;
        align-items: center;
    }

    .learn-icon {
        grid-row: span 2;
        margin: 0;
    }

    .learn-step h3 {
        align-self: end;
    }

    .learn-step p {
        align-self: start;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .site-header {
        height: 68px;
    }

    .site-header.scrolled {
        height: 64px;
    }

    .header-actions .btn-header {
        display: none;
    }

    .mobile-menu {
        inset: 68px 0 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 37px;
        letter-spacing: -1.3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .grid-4,
    .grid-3,
    .grid-project {
        grid-template-columns: 1fr;
    }

    .grid-project {
        gap: 20px;
    }

    .project-thumb {
        height: 170px;
    }

    .turma-inner {
        padding: 45px 20px;
        border-radius: 22px;
    }

    .turma-info {
        flex-direction: column;
        align-items: stretch;
    }

    .turma-item {
        border-radius: 13px;
    }

    .flow-chain {
        flex-direction: column;
    }

    .flow-node {
        width: min(100%, 230px);
        min-height: 100px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float {
        padding: 8px;
    }

    .whatsapp-float-icon {
        width: 43px;
        height: 43px;
    }

    .scroll-cue {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
```
