/* === Tokens === */
:root {
    --azul: #3e6f98;
    --azul-2: #2a557a;
    --azul-3: #4f8ab8;
    --azul-escuro: #1d3850;
    --amarelo: #ffbb24;
    --amarelo-2: #f9a21c;
    --amarelo-soft: #fff3d6;
    --whats: #00b81a;

    --esportes: #f9a21c;
    --multimidia: #f2851d;
    --maker: #366891;
    --ingles: #5ea2da;
    --ciencia: #4caf50;

    --bg-soft: #f4f8fd;
    --bg-cream: #fff8ec;
    --bg-white: #ffffff;

    --ink: #1d3850;
    --ink-soft: #4a5d72;
    --muted: #7a8b9e;

    --radius-card: 14px;
    --radius-bento: 18px;
    --radius-pill: 999px;
    --radius-small: 14px;

    --shadow-soft: 0 10px 40px -10px rgba(29, 56, 80, 0.18);
    --shadow-lift: 0 30px 60px -20px rgba(29, 56, 80, 0.3);
    --shadow-glow-yellow: 0 20px 60px -15px rgba(255, 187, 36, 0.55);
    --shadow-glow-blue: 0 20px 60px -15px rgba(62, 111, 152, 0.5);

    --font-base: "Nunito", sans-serif;
    --font-deco: "Satisfy", cursive;

    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-w: 1420px;
    --container-pad: 18px;

    --section-py-top: 48px;
    --section-py-bot: 54px;
}
@media (min-width: 450px) {
    :root {
        --container-pad: 24px;
        --radius-card: 16px;
        --radius-bento: 20px;
        --section-py-top: 64px;
        --section-py-bot: 70px;
    }
}
@media (min-width: 768px) {
    :root {
        --container-pad: 32px;
        --radius-bento: 22px;
        --section-py-top: 80px;
        --section-py-bot: 90px;
    }
}
@media (min-width: 1024px) {
    :root {
        --container-pad: 44px;
        --radius-card: 18px;
        --section-py-top: 100px;
        --section-py-bot: 110px;
    }
}
@media (min-width: 1320px) {
    :root {
        --container-pad: 52px;
        --radius-bento: 24px;
        --section-py-top: 115px;
        --section-py-bot: 124px;
    }
}
@media (min-width: 1520px) {
    :root {
        --container-pad: 60px;
        --radius-card: 24px;
        --radius-bento: 32px;
        --section-py-top: 130px;
        --section-py-bot: 140px;
    }
}

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: auto;
}
body {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    background: var(--bg-white);
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}
ul,
ol {
    list-style: none;
}
button {
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
input,
textarea,
select {
    font-family: inherit;
}
:is(h1, h2, h3, h4, h5, h6) {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.1;
}

/* === Layout === */
.container {
    width: 100%;
    max-width: var(--container-w);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}
.hero,
main > section {
    padding: var(--section-py-top) 0 var(--section-py-bot);
}
main > section > .container {
    position: relative;
    z-index: 2;
}

.hero {
    --section-py-top: 100px;
    --section-py-bot: 44px;
}
.intro {
    --section-py-top: 50px;
    --section-py-bot: 56px;
}
.vivencias {
    --section-py-top: 48px;
    --section-py-bot: 55px;
}
.incluso {
    --section-py-top: 50px;
    --section-py-bot: 56px;
}
.sobre {
    --section-py-top: 45px;
    --section-py-bot: 45px;
}
.unidades {
    --section-py-top: 50px;
    --section-py-bot: 50px;
}
.contato {
    --section-py-top: 48px;
    --section-py-bot: 55px;
}
@media (min-width: 450px) {
    .hero {
        --section-py-top: 130px;
        --section-py-bot: 90px;
    }
    .intro {
        --section-py-top: 66px;
        --section-py-bot: 74px;
    }
    .vivencias {
        --section-py-top: 64px;
        --section-py-bot: 72px;
    }
    .incluso {
        --section-py-top: 66px;
        --section-py-bot: 74px;
    }
    .sobre {
        --section-py-top: 60px;
        --section-py-bot: 60px;
    }
    .unidades {
        --section-py-top: 66px;
        --section-py-bot: 66px;
    }
    .contato {
        --section-py-top: 64px;
        --section-py-bot: 72px;
    }
}
@media (min-width: 768px) {
    .hero {
        --section-py-top: 160px;
        --section-py-bot: 130px;
    }
    .intro {
        --section-py-top: 90px;
        --section-py-bot: 100px;
    }
    .vivencias {
        --section-py-top: 82px;
        --section-py-bot: 95px;
    }
    .incluso {
        --section-py-top: 90px;
        --section-py-bot: 100px;
    }
    .sobre {
        --section-py-top: 75px;
        --section-py-bot: 75px;
    }
    .unidades {
        --section-py-top: 90px;
        --section-py-bot: 90px;
    }
    .contato {
        --section-py-top: 80px;
        --section-py-bot: 90px;
    }
}
@media (min-width: 1024px) {
    .hero {
        --section-py-top: 200px;
        --section-py-bot: 160px;
    }
    .intro {
        --section-py-top: 115px;
        --section-py-bot: 130px;
    }
    .vivencias {
        --section-py-top: 105px;
        --section-py-bot: 120px;
    }
    .incluso {
        --section-py-top: 115px;
        --section-py-bot: 130px;
    }
    .sobre {
        --section-py-top: 92px;
        --section-py-bot: 92px;
    }
    .unidades {
        --section-py-top: 115px;
        --section-py-bot: 115px;
    }
    .contato {
        --section-py-top: 100px;
        --section-py-bot: 115px;
    }
}
@media (min-width: 1320px) {
    .hero {
        --section-py-top: 230px;
        --section-py-bot: 185px;
    }
    .intro {
        --section-py-top: 130px;
        --section-py-bot: 148px;
    }
    .vivencias {
        --section-py-top: 120px;
        --section-py-bot: 138px;
    }
    .incluso {
        --section-py-top: 130px;
        --section-py-bot: 148px;
    }
    .sobre {
        --section-py-top: 102px;
        --section-py-bot: 102px;
    }
    .unidades {
        --section-py-top: 130px;
        --section-py-bot: 130px;
    }
    .contato {
        --section-py-top: 112px;
        --section-py-bot: 130px;
    }
}
@media (min-width: 1520px) {
    .hero {
        --section-py-top: 245px;
        --section-py-bot: 200px;
    }
    .intro {
        --section-py-top: 140px;
        --section-py-bot: 160px;
    }
    .vivencias {
        --section-py-top: 130px;
        --section-py-bot: 150px;
    }
    .incluso {
        --section-py-top: 140px;
        --section-py-bot: 160px;
    }
    .sobre {
        --section-py-top: 110px;
        --section-py-bot: 110px;
    }
    .unidades {
        --section-py-top: 140px;
        --section-py-bot: 140px;
    }
    .contato {
        --section-py-top: 120px;
        --section-py-bot: 140px;
    }
}

/* === Typography === */
.deco-script {
    font-family: var(--font-deco);
    font-weight: 400;
}
.sec-label {
    display: block;
    font-family: var(--font-deco);
    font-weight: 400;
    font-size: 15px;
    color: var(--amarelo-2);
    line-height: 1;
    margin-bottom: 4px;
}
.sec-title {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: 0;
    line-height: 1.15;
    margin-bottom: 10px;
}
.sec-lead {
    text-wrap: balance;
    font-size: 13.5px;
    color: var(--ink-soft);
    max-width: 732px;
    line-height: 1.55;
    margin: 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    color: var(--amarelo);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1.5px solid var(--amarelo);
    border-radius: var(--radius-pill);
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--amarelo);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--amarelo-soft);
    animation: pulse 1.8s infinite;
}

/* === Section head === */
.section__head {
    text-align: center;
    margin-bottom: 22px;
}
.section__head .sec-title {
    letter-spacing: -0.2px;
}
.section__head .sec-lead {
    margin-inline: auto;
}
.section__head--light .sec-label {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.15);
}
.section__head--light .sec-title {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.6px;
    line-height: 1.14;
    text-wrap: balance;
}
.section__head--light .sec-lead {
    color: rgba(255, 255, 255, 0.85);
}
.section__head--lg .sec-title {
    font-size: 22px;
    letter-spacing: -0.3px;
}
.section__head--left {
    text-align: left;
}
.section__head--narrow {
    max-width: 864px;
    margin-inline: auto;
    margin-bottom: 28px;
}

@media (min-width: 450px) {
    .sec-label {
        font-size: 17px;
    }
    .sec-title {
        font-size: 22px;
        margin-bottom: 11px;
    }
    .sec-lead {
        font-size: 14px;
    }
    .eyebrow {
        font-size: 11.5px;
        padding: 6px 13px;
        gap: 9px;
    }
    .section__head {
        margin-bottom: 28px;
    }
    .section__head--lg .sec-title {
        font-size: 26px;
    }
    .section__head--narrow {
        margin-bottom: 34px;
    }
}
@media (min-width: 768px) {
    .sec-label {
        font-size: 21px;
        margin-bottom: 7px;
    }
    .sec-title {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .sec-lead {
        font-size: 16.5px;
    }
    .eyebrow {
        font-size: 13px;
        padding: 7px 15px;
        gap: 12px;
        letter-spacing: 0.45px;
    }
    .section__head {
        margin-bottom: 40px;
    }
    .section__head .sec-title {
        letter-spacing: -0.5px;
    }
    .section__head--light .sec-title {
        letter-spacing: -0.7px;
    }
    .section__head--lg .sec-title {
        font-size: 34px;
        letter-spacing: -0.7px;
    }
    .section__head--narrow {
        margin-bottom: 50px;
    }
}
@media (min-width: 1024px) {
    .sec-label {
        font-size: 24px;
    }
    .sec-title {
        font-size: 38px;
        margin-bottom: 16px;
        line-height: 1;
    }
    .sec-lead {
        font-size: 18px;
    }
    .eyebrow {
        font-size: 14px;
        padding: 8px 16px;
        gap: 15px;
        letter-spacing: 0.54px;
    }
    .section__head {
        margin-bottom: 52px;
    }
    .section__head--lg .sec-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .section__head--narrow {
        margin-bottom: 62px;
    }
}
@media (min-width: 1320px) {
    .sec-label {
        font-size: 26px;
    }
    .sec-title {
        font-size: 40px;
    }
    .sec-lead {
        font-size: 18.5px;
    }
    .section__head {
        margin-bottom: 56px;
    }
    .section__head--lg .sec-title {
        font-size: 45px;
    }
    .section__head--narrow {
        margin-bottom: 66px;
    }
}
@media (min-width: 1520px) {
    .sec-label {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .sec-title {
        font-size: 42px;
        margin-bottom: 16px;
        line-height: 1;
    }
    .sec-lead {
        font-size: 19px;
    }
    .eyebrow {
        font-size: 14.5px;
        gap: 16px;
        letter-spacing: 0.56px;
    }
    .section__head {
        margin-bottom: 60px;
    }
    .section__head .sec-title {
        letter-spacing: -1px;
    }
    .section__head--light .sec-title {
        letter-spacing: -1.2px;
    }
    .section__head--lg .sec-title {
        font-size: 48px;
        letter-spacing: -1.2px;
    }
    .section__head--narrow {
        margin-bottom: 70px;
    }
}

/* === Cards === */
.dif-card,
.tour__cell,
.inc-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}
.intro__photo,
.unidade {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-bento);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}
.btn svg {
    width: 17px;
    height: 17px;
}

@media (min-width: 450px) {
    .btn {
        gap: 9px;
        padding: 13px 24px;
        font-size: 14px;
    }
    .btn svg {
        width: 18px;
        height: 18px;
    }
}
@media (min-width: 768px) {
    .btn {
        gap: 10px;
        padding: 14px 28px;
        font-size: 15px;
        letter-spacing: 0.35px;
    }
    .btn svg {
        width: 20px;
        height: 20px;
    }
}
@media (min-width: 1024px) {
    .btn {
        gap: 11px;
        padding: 15px 32px;
        font-size: 16px;
    }
    .btn svg {
        width: 21px;
        height: 21px;
    }
}
@media (min-width: 1320px) {
    .btn {
        padding: 16px 34px;
        font-size: 16.5px;
    }
}
@media (min-width: 1520px) {
    .btn {
        gap: 12px;
        padding: 16px 36px;
        font-size: 17.25px;
        letter-spacing: 0.4px;
    }
    .btn svg {
        width: 22px;
        height: 22px;
    }
}
.btn:hover {
    transform: translateY(-3px);
}
.btn--whats svg path,
.whats-fixo svg path,
.modal__header-icon path {
    fill: currentColor;
}
.project-icon--fill path {
    fill: currentColor;
}
.btn--whats {
    background: var(--whats);
    color: #fff;
    border-color: var(--whats);
    box-shadow: 0 12px 30px -10px rgba(0, 184, 26, 0.55);
}
.btn--whats:hover {
    background: #fff;
    color: var(--whats);
    box-shadow: 0 20px 40px -10px rgba(0, 184, 26, 0.65);
}
.btn--amarelo {
    background: var(--amarelo);
    color: #fff;
    border-color: var(--amarelo);
    box-shadow: 0 12px 30px -10px rgba(255, 187, 36, 0.55);
}
.btn--amarelo:hover {
    background: #fff;
    color: var(--amarelo-2);
}
.btn--azul {
    background: var(--azul);
    color: #fff;
    border-color: var(--azul);
}
.btn--azul:hover {
    background: #fff;
    color: var(--azul);
}
.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}
.btn--outline-light:hover {
    background: #fff;
    color: var(--azul);
    border-color: #fff;
}
.btn--amarelo-out {
    background: #fff;
    color: var(--amarelo-2);
    border-color: var(--amarelo);
}
.btn--amarelo-out:hover {
    background: var(--amarelo);
    color: #fff;
    transform: none;
}
.btn--waze {
    background: #68c5e1;
    color: #fff;
    border-color: #68c5e1;
}
.btn--waze:hover {
    background: #fff;
    color: #68c5e1;
    transform: translateY(-2px);
}
.btn--gmaps {
    background: #e12c29;
    color: #fff;
    border-color: #e12c29;
}
.btn--gmaps:hover {
    background: #fff;
    color: #e12c29;
    transform: translateY(-2px);
}

/* === Forms === */
.form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
}
.form__field-area {
    position: relative;
}
.form__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}
.form__field--select::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 5px;
    height: 5px;
    border: 2px var(--muted);
    border-top-style: solid;
    border-left-style: solid;
    transform: rotate(225deg);
    pointer-events: none;
}
.form__field--select label {
    opacity: 0;
}
.form__field {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--ink-soft);
    font-family: var(--font-base);
    font-size: 12px;
    line-height: 1.4;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    outline: none;
    padding: 15px 15px 15px 34px;
    transition: 0.4s;
}
.form__field:focus {
    border-color: var(--whats);
}
.form__input,
.form__select {
    height: 36px;
}
.form__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-image: none;
    padding: 0 15px 0 32px;
}
.form__textarea {
    height: 96px;
    resize: vertical;
}
.form__label {
    cursor: text;
    position: absolute;
    top: 10px;
    left: 25px;
    background-color: #fff;
    font-family: var(--font-base);
    font-weight: 400;
    transform-origin: left;
    padding: 0 8px;
    transition: 0.4s;
    pointer-events: none;
}
.form__label,
.form__select {
    color: var(--muted);
    font-size: 12px;
}
.form__field:focus ~ .form__label,
.form__field.valid ~ .form__label {
    color: var(--whats);
    transform: scale(0.78) translate(4px, -22px);
}
.form__select.valid {
    color: var(--ink);
}
.form__icon {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 12px;
    fill: var(--muted);
    transition: 0.5s ease;
    pointer-events: none;
}
.form__field:focus ~ .form__icon,
.form__field.valid ~ .form__icon {
    fill: var(--whats);
}
.form--azul .form__field:focus {
    border-color: var(--azul);
}
.form--azul .form__field:focus ~ .form__label,
.form--azul .form__field.valid ~ .form__label {
    color: var(--azul);
}
.form--azul .form__field:focus ~ .form__icon,
.form--azul .form__field.valid ~ .form__icon {
    fill: var(--azul);
}
.form__btn {
    width: 100%;
    background-color: var(--whats);
    color: #fff;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 14px 22px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.form__btn:hover {
    background-color: #009e16;
    transform: translateY(-2px);
}
.form__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.form__btn--azul {
    background-color: var(--azul);
    margin-top: 6px;
}
.form__btn--azul:hover {
    background-color: var(--azul-2);
}
#alerta_footer_contact,
#alerta_whats {
    margin-top: 10px;
    font-size: 13px;
    color: var(--azul);
}
#alerta_footer_contact:empty,
#alerta_whats:empty {
    display: none;
    margin: 0;
}
#alerta_footer_contact {
    font-size: 14px;
}

.fb-noscript-pixel {
    display: none;
}

/* === Stretched dividers === */
.str-div {
    position: absolute;
    left: 0;
    right: 0;
    width: calc(100% + 8px);
    height: 120px;
    margin: 0 auto;
    pointer-events: none;
    z-index: 3;
}
.str-div--top {
    top: -1px;
}
.str-div--bottom {
    bottom: -1px;
}
.str-div__svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.str-div__shape {
    fill: var(--bg-white);
}
.str-div__line {
    fill: none;
    stroke-miterlimit: 10px;
    stroke-width: 3px;
}
.sobre .str-div__line {
    stroke: var(--amarelo);
}

/* === Animations === */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--amarelo);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 184, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 26, 0);
    }
}
@keyframes navWhatsPulse {
    0% {
        opacity: 0.55;
        transform: scale(0.85);
    }
    70% {
        opacity: 0;
        transform: scale(1.6);
    }
    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}
@keyframes pulseWhats {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}
@keyframes stampSpin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes starTwinkle {
    0%,
    100% {
        opacity: 0.14;
        transform: scale(0.85);
    }
    50% {
        opacity: 0.38;
        transform: scale(1.1);
    }
}

/* === Navbar === */
.nav-bar {
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: top 0.35s var(--ease-out);
}
.nav-bar.scrolled {
    top: 12px;
}
.nav-bar__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 12px 18px 12px 32px;
    background: #ffffff;
    border: 1px solid rgba(29, 56, 80, 0.07);
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 36px -14px rgba(29, 56, 80, 0.22),
        0 2px 6px -2px rgba(29, 56, 80, 0.08);
    transition:
        gap 0.35s var(--ease-out),
        padding 0.35s var(--ease-out),
        background 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out);
}
.nav-bar.scrolled .nav-bar__inner {
    gap: 16px;
    padding: 7px 12px 7px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(29, 56, 80, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 18px 50px -16px rgba(29, 56, 80, 0.28),
        0 2px 6px -2px rgba(29, 56, 80, 0.1);
}
.nav-bar.scrolled .nav-bar__logo img {
    width: 86px;
}
.nav-bar.scrolled .nav-bar__menu {
    padding: 0;
}
.nav-bar.scrolled .nav-bar__menu a {
    padding: 6px 8px;
    font-size: 12px;
}
.nav-bar.scrolled .nav-bar__tel {
    padding: 8px 16px 8px 13px;
    font-size: 13px;
}
.nav-bar.scrolled .nav-bar__tel svg {
    width: 16px;
    height: 16px;
}
.nav-bar.scrolled .nav-bar__whats {
    width: 38px;
    height: 38px;
}
.nav-bar.scrolled .nav-bar__whats svg {
    width: 18px;
    height: 18px;
}
.nav-bar__logo {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px 2px 0;
    transition: transform 0.3s var(--ease-out);
}
.nav-bar__logo:hover {
    transform: scale(1.04) rotate(-1.5deg);
}
.nav-bar__logo img {
    width: 112px;
    height: auto;
    display: block;
    transition: width 0.35s var(--ease-out);
}
.nav-bar__menu {
    display: flex;
    justify-content: center;
    gap: 0;
    background: transparent;
    border: 0;
    justify-self: center;
    transition: padding 0.35s var(--ease-out);
}
.nav-bar__menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.1px;
    border-radius: 10px;
    white-space: nowrap;
    transition:
        padding 0.35s var(--ease-out),
        font-size 0.35s var(--ease-out),
        color 0.25s var(--ease-out),
        background 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out);
}
.nav-bar__menu a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amarelo);
    box-shadow: 0 0 0 3px rgba(255, 187, 36, 0.25);
    opacity: 0;
    transform: scale(0.2);
    transition:
        opacity 0.25s var(--ease-out),
        transform 0.35s var(--ease-back);
}
.nav-bar__menu a:hover {
    color: var(--azul-escuro);
    background: #fff;
    box-shadow: 0 6px 16px -8px rgba(29, 56, 80, 0.25);
}
.nav-bar__menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}
.nav-bar__menu li.is-active a {
    color: var(--azul-escuro);
    background: #fff;
    box-shadow: 0 8px 18px -8px rgba(29, 56, 80, 0.35);
}
.nav-bar__menu li.is-active a::before {
    opacity: 1;
    transform: scale(1);
}
.nav-bar.scrolled .nav-bar__menu li.is-active a {
    box-shadow: 0 6px 14px -8px rgba(29, 56, 80, 0.4);
}
.nav-bar__cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-bar__tel {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px 12px 18px;
    background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-2) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 10px 22px -10px rgba(249, 162, 28, 0.75);
    transition:
        padding 0.35s var(--ease-out),
        font-size 0.35s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        filter 0.3s var(--ease-out);
}
.nav-bar__tel:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 16px 30px -12px rgba(249, 162, 28, 0.9);
}
.nav-bar__tel svg {
    width: 18px;
    height: 18px;
    box-sizing: content-box;
    color: #ffffff;
    transition:
        width 0.35s var(--ease-out),
        height 0.35s var(--ease-out);
}
.nav-bar__whats {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #25d366 0%, var(--whats) 100%);
    color: #fff;
    border-radius: 50%;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 10px 22px -10px rgba(0, 184, 26, 0.75);
    transition:
        width 0.35s var(--ease-out),
        height 0.35s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
}
.nav-bar__whats::before,
.nav-bar__whats::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--whats);
    opacity: 0;
    animation: navWhatsPulse 2.4s var(--ease-out) infinite;
}
.nav-bar__whats::after {
    animation-delay: 1.2s;
}
.nav-bar__whats:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 16px 30px -12px rgba(0, 184, 26, 0.9);
}
.nav-bar__whats svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition:
        width 0.35s var(--ease-out),
        height 0.35s var(--ease-out);
}
.nav-bar__tel-text {
    display: inline;
}

/* === Hamburger === */
.nav-bar__burger {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--azul);
    color: #fff;
    border-radius: 50%;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 10px 22px -10px rgba(29, 56, 80, 0.65);
    transition:
        width 0.3s var(--ease-out),
        height 0.3s var(--ease-out),
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        background 0.3s var(--ease-out);
}
.nav-bar__burger:hover {
    transform: translateY(-2px);
}
.nav-bar__burger:active {
    transform: translateY(0) scale(0.96);
}
.nav-bar__burger-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 13px;
}
.nav-bar__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
    transition:
        transform 0.4s var(--ease-back),
        opacity 0.25s var(--ease-out),
        width 0.35s var(--ease-out);
}
.nav-bar__burger-line:nth-child(2) {
    width: 75%;
    align-self: flex-end;
}
.nav-bar__burger[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--amarelo-2) 0%, var(--amarelo) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 14px 30px -10px rgba(249, 162, 28, 0.7);
}
.nav-bar__burger[aria-expanded="true"] .nav-bar__burger-line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}
.nav-bar__burger[aria-expanded="true"] .nav-bar__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-bar__burger[aria-expanded="true"] .nav-bar__burger-line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* === Nav drawer === */
.nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.5s;
}
.nav-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    transition: visibility 0s linear 0s;
}
.nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 28, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}
.nav-drawer.is-open .nav-drawer__backdrop {
    opacity: 1;
}
.nav-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88%);
    background: #fff;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    box-shadow: -28px 0 60px -20px rgba(13, 28, 42, 0.4);
    transform: translateX(102%);
    transition: transform 0.5s var(--ease-out);
    overflow: hidden;
}
.nav-drawer.is-open .nav-drawer__panel {
    transform: translateX(0);
}
.nav-drawer__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px dashed rgba(29, 56, 80, 0.1);
    z-index: 1;
}
.nav-drawer__logo {
    display: inline-flex;
    align-items: center;
}
.nav-drawer__logo img {
    width: 90px;
    height: auto;
    display: block;
}
.nav-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--ink);
    transition:
        background 0.3s var(--ease-out),
        transform 0.3s var(--ease-out);
}
.nav-drawer__close:hover {
    background: var(--azul);
    color: #fff;
    transform: rotate(90deg);
}
.nav-drawer__close svg {
    width: 18px;
    height: 18px;
}
.nav-drawer__nav {
    position: relative;
    flex: 1;
    padding: 14px 0;
    overflow-y: auto;
    z-index: 1;
}
.nav-drawer__menu {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}
.nav-drawer__menu li {
    position: relative;
}
.nav-drawer__menu li + li {
    margin-top: 1px;
}
.nav-drawer__menu a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    color: var(--ink);
    border-radius: 14px;
    transition:
        background 0.3s var(--ease-out),
        color 0.3s var(--ease-out),
        transform 0.3s var(--ease-out);
}
.nav-drawer__menu a:hover,
.nav-drawer__menu a:focus-visible {
    background: var(--bg-soft);
    transform: translateX(4px);
}
.nav-drawer__menu-num {
    font-family: var(--font-deco);
    font-size: 16px;
    color: var(--amarelo-2);
    line-height: 1;
    text-align: center;
}
.nav-drawer__menu-label {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1;
}
.nav-drawer__menu-arrow {
    color: var(--azul);
    font-size: 18px;
    font-weight: 900;
    opacity: 0.35;
    transition:
        transform 0.35s var(--ease-out),
        opacity 0.3s var(--ease-out);
}
.nav-drawer__menu a:hover .nav-drawer__menu-arrow,
.nav-drawer__menu a:focus-visible .nav-drawer__menu-arrow {
    opacity: 1;
    transform: translateX(4px);
}
.nav-drawer__foot {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px 20px;
    border-top: 1px dashed rgba(29, 56, 80, 0.1);
    background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 100%);
    z-index: 1;
}
.nav-drawer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #fff;
    border-radius: var(--radius-pill);
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        filter 0.3s var(--ease-out);
}
.nav-drawer__cta svg,
.nav-drawer__cta img {
    width: 18px;
    height: 18px;
    display: block;
}
.nav-drawer__cta--tel {
    background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-2) 100%);
}
.nav-drawer__cta--tel:hover {
    color: #fff;
    filter: saturate(1.1);
    transform: translateY(-2px);
}
.nav-drawer__cta--whats {
    background: linear-gradient(135deg, #25d366 0%, var(--whats) 100%);
    box-shadow: 0 12px 26px -12px rgba(0, 184, 26, 0.7);
}
.nav-drawer__cta--whats:hover {
    color: #fff;
    transform: translateY(-2px);
}
body.nav-drawer-open {
    overflow: hidden;
}

@media (max-width: 1023.98px) {
    .nav-bar {
        top: 14px;
    }
    .nav-bar.scrolled {
        top: 8px;
    }
    .nav-bar__inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 9px 9px 9px 16px;
    }
    .nav-bar.scrolled .nav-bar__inner {
        gap: 10px;
        padding: 7px 8px 7px 14px;
    }
    .nav-bar__logo img {
        width: 88px;
    }
    .nav-bar.scrolled .nav-bar__logo img {
        width: 72px;
    }
    .nav-bar__menu {
        display: none;
    }
    .nav-bar__cta {
        gap: 8px;
        justify-self: end;
    }
    .nav-bar__tel-text {
        display: none;
    }
    .nav-bar__tel {
        width: 40px;
        height: 40px;
        padding: 0;
        gap: 0;
        font-size: 0;
        border-radius: 50%;
        justify-content: center;
    }
    .nav-bar__tel svg,
    .nav-bar__tel img {
        width: 18px;
        height: 18px;
        margin: 0;
    }
    .nav-bar.scrolled .nav-bar__tel {
        width: 36px;
        height: 36px;
        padding: 0;
        font-size: 0;
    }
    .nav-bar.scrolled .nav-bar__tel svg,
    .nav-bar.scrolled .nav-bar__tel img {
        width: 16px;
        height: 16px;
    }
    .nav-bar__burger {
        display: inline-flex;
    }
    .nav-bar.scrolled .nav-bar__burger {
        width: 36px;
        height: 36px;
    }
    .nav-bar.scrolled .nav-bar__burger .nav-bar__burger-box {
        width: 16px;
        height: 11px;
    }
}
@media (max-width: 767.98px) {
    .nav-bar {
        top: 10px;
    }
    .nav-bar__inner {
        gap: 10px;
        padding: 8px 8px 8px 14px;
    }
    .nav-bar.scrolled .nav-bar__inner {
        padding: 6px 7px 6px 12px;
    }
    .nav-bar__logo img {
        width: 78px;
    }
    .nav-bar.scrolled .nav-bar__logo img {
        width: 64px;
    }
    .nav-bar__tel {
        width: 36px;
        height: 36px;
    }
    .nav-bar__tel svg,
    .nav-bar__tel img {
        width: 16px;
        height: 16px;
    }
    .nav-bar.scrolled .nav-bar__tel {
        width: 32px;
        height: 32px;
    }
    .nav-bar.scrolled .nav-bar__tel svg,
    .nav-bar.scrolled .nav-bar__tel img {
        width: 14px;
        height: 14px;
    }
    .nav-bar__burger {
        width: 38px;
        height: 38px;
    }
    .nav-bar__burger-box {
        width: 16px;
        height: 11px;
    }
    .nav-bar.scrolled .nav-bar__burger {
        width: 32px;
        height: 32px;
    }
    .nav-bar.scrolled .nav-bar__burger .nav-bar__burger-box {
        width: 14px;
        height: 10px;
    }
    .nav-bar.scrolled .nav-bar__burger[aria-expanded="true"] .nav-bar__burger-line:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
    .nav-bar.scrolled .nav-bar__burger[aria-expanded="true"] .nav-bar__burger-line:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }
}
@media (max-width: 449.98px) {
    .nav-bar__inner {
        gap: 7px;
        padding: 7px 7px 7px 12px;
    }
    .nav-bar.scrolled .nav-bar__inner {
        padding: 5px 6px 5px 10px;
    }
    .nav-bar__logo img {
        width: 68px;
    }
    .nav-bar__cta {
        gap: 6px;
    }
    .nav-bar__tel {
        width: 34px;
        height: 34px;
    }
    .nav-bar__tel svg,
    .nav-bar__tel img {
        width: 15px;
        height: 15px;
    }
    .nav-bar.scrolled .nav-bar__tel {
        width: 30px;
        height: 30px;
    }
    .nav-bar__burger {
        width: 36px;
        height: 36px;
    }
    .nav-bar__burger-box {
        width: 15px;
        height: 11px;
    }
    .nav-bar.scrolled .nav-bar__burger {
        width: 30px;
        height: 30px;
    }
    .nav-drawer__panel {
        width: min(320px, 90%);
    }
    .nav-drawer__head {
        padding: 16px 18px;
    }
    .nav-drawer__logo img {
        width: 80px;
    }
    .nav-drawer__close {
        width: 34px;
        height: 34px;
    }
    .nav-drawer__menu {
        padding: 0 6px;
    }
    .nav-drawer__menu a {
        padding: 10px 10px;
        gap: 10px;
        grid-template-columns: 30px 1fr auto;
    }
    .nav-drawer__menu-num {
        font-size: 14px;
    }
    .nav-drawer__menu-label {
        font-size: 11.5px;
    }
    .nav-drawer__foot {
        padding: 14px 16px 18px;
    }
    .nav-drawer__cta {
        font-size: 13px;
        padding: 12px 16px;
        gap: 9px;
    }
}
@media (min-width: 1024px) and (max-width: 1319.98px) {
    .nav-bar__inner {
        gap: 14px;
        padding: 10px 14px 10px 22px;
    }
    .nav-bar__menu a {
        padding: 7px 6px;
        font-size: 12px;
    }
    .nav-bar__tel {
        padding: 11px 18px 11px 15px;
        font-size: 13px;
    }
    .nav-bar__whats {
        width: 42px;
        height: 42px;
    }
    .nav-bar__whats svg {
        width: 20px;
        height: 20px;
    }
}

/* === Hero === */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    min-height: 612px;
    margin: 0 0 12px;
    padding-top: 300px;
    overflow: visible;
    overflow-x: clip;
    isolation: isolate;
    z-index: 0;
}
.hero__picture,
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero__picture {
    z-index: 0;
}
.hero__bg {
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, #192e40 8%, transparent 100%);
    background-size:
        auto,
        32px 32px;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: block;
    width: 100%;
    z-index: 3;
}
.hero__copy {
    position: relative;
    z-index: 3;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}
.hero__eyebrow {
    margin-bottom: 10px;
    padding: 4px 8px;
    font-size: 9px;
    gap: 6px;
}
.hero__eyebrow::before {
    width: 7px;
    height: 7px;
}
.hero__title {
    text-wrap: balance;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.3px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero__title-hl {
    position: relative;
    display: inline-block;
    color: var(--amarelo);
}
.hero__lead {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    max-width: 100%;
    line-height: 1.55;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.hero__lead strong {
    color: var(--amarelo);
    font-weight: 800;
}
.hero__lead em {
    font-style: normal;
    font-weight: 800;
    color: #fff;
}
.hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero__ctas .btn {
    width: fit-content;
    max-width: 100%;
    padding: 12px 20px;
    justify-content: center;
}
.hero__divider {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
}
.hero__divider svg {
    width: 100%;
    height: 88px;
    display: block;
}

@media (min-width: 450px) {
    .hero {
        min-height: 760px;
        padding-top: 360px;
        margin: 0 0 16px;
    }
    .hero__eyebrow {
        margin-bottom: 14px;
        padding: 5px 12px;
        font-size: 10.5px;
    }
    .hero__title {
        font-size: 26px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
    .hero__lead {
        font-size: 14.5px;
        margin-bottom: 26px;
    }
    .hero__divider svg {
        height: 88px;
    }
}
@media (min-width: 768px) {
    .hero {
        display: block;
        min-height: auto;
        padding-top: var(--section-py-top);
        margin: 0 0 20px;
    }
    .hero__overlay {
        background: linear-gradient(45deg, #192e40 10%, transparent 80%);
        background-size:
            auto,
            32px 32px;
    }
    .hero__copy {
        margin-inline: 0;
        text-align: left;
    }
    .hero__eyebrow {
        margin-bottom: 24px;
        padding: 6px 13px;
        font-size: 14.25px;
        gap: 9px;
    }
    .hero__eyebrow::before {
        width: 8px;
        height: 8px;
    }
    .hero__title {
        font-size: 40px;
        letter-spacing: -1px;
        margin-bottom: 16px;
        line-height: 1;
    }
    .hero__lead {
        font-size: 17px;
        margin-bottom: 36px;
        max-width: 600px;
    }
    .hero__ctas {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .hero__ctas .btn {
        width: auto;
        padding: 14px 24px;
    }
    .hero__divider {
        bottom: -8px;
    }
    .hero__divider svg {
        height: 160px;
    }
}
@media (min-width: 1024px) {
    .hero {
        margin: 0 0 22px;
    }
    .hero__title {
        font-size: 48px;
        letter-spacing: -1.2px;
        margin-bottom: 17px;
    }
    .hero__lead {
        font-size: 18px;
        margin-bottom: 42px;
    }
    .hero__ctas {
        gap: 13px;
    }
    .hero__divider {
        bottom: -14px;
    }
    .hero__divider svg {
        height: 240px;
    }
}
@media (min-width: 1320px) {
    .hero__eyebrow {
        margin-bottom: 26px;
    }
    .hero__title {
        font-size: 52px;
        letter-spacing: -1.35px;
    }
    .hero__lead {
        font-size: 19px;
        margin-bottom: 45px;
    }
    .hero__divider svg {
        height: 320px;
    }
}
@media (min-width: 1520px) {
    .hero {
        margin: 0 0 24px;
    }
    .hero__eyebrow {
        margin-bottom: 28px;
    }
    .hero__title {
        font-size: 56px;
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }
    .hero__lead {
        font-size: 20px;
        margin-bottom: 48px;
        max-width: 512px;
    }
    .hero__ctas {
        flex-direction: row;
        gap: 14px;
    }
    .hero__divider {
        bottom: -24px;
    }
    .hero__divider svg {
        height: 380px;
    }
}

/* === Intro === */
.intro {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
    overflow: hidden;
}
.intro__blob {
    display: none;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}
.intro__blob--yellow {
    left: -240px;
    top: 100px;
    width: 720px;
    height: 720px;
    opacity: 0.075;
}
.intro__blob--cyan {
    right: -180px;
    bottom: -100px;
    width: 520px;
    height: 520px;
    opacity: 0.16;
}
.intro__doodles {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.intro__doodles svg {
    position: absolute;
    opacity: 0.12;
}
.intro__doodles svg:nth-child(1) {
    top: 60px;
    right: 8%;
    width: 50px;
    height: 50px;
    color: var(--amarelo);
    opacity: 0.05;
}
.intro__doodles svg:nth-child(2) {
    top: 28%;
    left: 3%;
    width: 36px;
    height: 36px;
    color: var(--multimidia);
    opacity: 0.07;
}
.intro__doodles svg:nth-child(3) {
    bottom: 18%;
    right: 4%;
    width: 56px;
    height: 56px;
    color: var(--ciencia);
}
.intro__doodles svg:nth-child(4) {
    top: 50%;
    right: 38%;
    width: 28px;
    height: 28px;
    color: var(--azul);
}
.intro__doodles svg:nth-child(5) {
    bottom: 28%;
    left: 32%;
    width: 42px;
    height: 42px;
    color: var(--amarelo-2);
    opacity: 0.05;
}
.intro__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}
.intro__mosaic {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
}
.intro__photo {
    isolation: isolate;
    clip-path: inset(0 round var(--radius-bento));
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
}
.intro__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    backface-visibility: hidden;
    transform-origin: center;
}
.intro__photo:hover img {
    transform: scale(1.06);
}
.intro__photo--main {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
}
.intro__photo--top {
    grid-column: 1;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #fff;
}
.intro__photo-tile {
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1;
}
.intro__photo--bot {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
}
.intro__stat-card {
    grid-column: 1;
    grid-row: auto;
    background: #fff;
    border-radius: var(--radius-bento);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 30px 60px -25px rgba(29, 56, 80, 0.16);
    position: relative;
    overflow: hidden;
}
.intro__stat-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--amarelo-soft), transparent 70%);
    pointer-events: none;
}
.intro__stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--amarelo-soft);
    color: var(--amarelo-2);
}
.intro__stat-card__icon svg {
    width: 20px;
    height: 20px;
}
.intro__stat-card__val {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 26px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 3px;
}
.intro__stat-card__val span {
    color: var(--amarelo-2);
}
.intro__stat-card__label {
    font-size: 11px;
    font-weight: 800;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
    white-space: nowrap;
}
.intro__stamp {
    display: none;
    position: absolute;
    top: -20px;
    right: -12px;
    width: 64px;
    height: 64px;
    z-index: 5;
    filter: drop-shadow(0 12px 24px rgba(255, 187, 36, 0.35));
}
.intro__stamp__rotate {
    width: 100%;
    height: 100%;
    animation: stampSpin 22s linear infinite;
}
.intro__stamp__rotate text {
    font-family: var(--font-deco);
    font-size: 17px;
    fill: var(--ink);
    letter-spacing: 1px;
}
.intro__stamp__core {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: var(--amarelo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: inset 0 4px 12px rgba(255, 255, 255, 0.4);
}
.intro__stamp__core svg {
    width: 18px;
    height: 18px;
}
.intro__txt {
    position: relative;
}
.intro__deco {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-deco);
    font-size: 18px;
    color: var(--amarelo-2);
    margin-bottom: 6px;
    line-height: 1;
}
.intro__title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -0.2px;
    line-height: 1.1;
    margin-bottom: 12px;
}
.intro__title-hl {
    position: relative;
    display: inline-block;
    color: var(--azul);
}
.intro__title-hl::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' fill='none'%3E%3Cpath d='M3 9C40 3 80 1 120 5C150 8 180 11 197 12' stroke='%23ffbb24' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.intro__lead {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 100%;
}
.intro__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}
.intro__item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid rgba(29, 56, 80, 0.06);
    transition: all 0.35s var(--ease-out);
    z-index: 1;
}
.intro__item:hover {
    transform: translateX(6px);
    border-color: rgba(29, 56, 80, 0.12);
    box-shadow: 0 20px 40px -20px rgba(29, 56, 80, 0.25);
}
.intro__item-num {
    position: relative;
    color: var(--num-c);
    line-height: 1;
    text-align: center;
    transition: transform 0.45s var(--ease-back);
    pointer-events: none;
}
.intro__num-icon {
    display: block;
    width: 34px;
    height: 34px;
    fill: currentColor;
}
.intro__num-icon path {
    fill: currentColor;
}
.intro__item:hover .intro__item-num {
    transform: scale(1.08);
}
.intro__item:nth-child(1) {
    --num-c: var(--amarelo-2);
}
.intro__item:nth-child(2) {
    --num-c: var(--ciencia);
}
.intro__item:nth-child(3) {
    --num-c: var(--azul);
}
.intro__item-body {
    padding-top: 2px;
}
.intro__item-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.intro__item-head svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.intro__item:nth-child(1) .intro__item-head svg {
    color: var(--amarelo-2);
}
.intro__item:nth-child(2) .intro__item-head svg {
    color: var(--ciencia);
}
.intro__item:nth-child(3) .intro__item-head svg {
    color: var(--azul);
}
.intro__item h3 {
    font-size: 14px;
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.1;
}
.intro__item p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.intro__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.intro__ctas .btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 450px) {
    .intro__inner {
        gap: 36px;
    }
    .intro__mosaic {
        gap: 12px;
    }
    .intro__stat-card {
        padding: 18px;
    }
    .intro__stat-card__val {
        font-size: 28px;
    }
    .intro__stamp {
        width: 58px;
        height: 58px;
        top: -16px;
        right: -8px;
    }
    .intro__stamp__core {
        inset: 13px;
    }
    .intro__stamp__core svg {
        width: 18px;
        height: 18px;
    }
    .intro__deco {
        font-size: 20px;
    }
    .intro__title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    .intro__lead {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .intro__list {
        gap: 14px;
        margin-bottom: 30px;
    }
    .intro__item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding: 14px 16px;
    }
    .intro__num-icon {
        width: 38px;
        height: 38px;
    }
    .intro__item h3 {
        font-size: 15px;
    }
    .intro__item p {
        font-size: 14px;
    }
}
@media (min-width: 768px) {
    .intro__inner {
        gap: 44px;
    }
    .intro__mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 14px;
    }
    .intro__photo--main {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16 / 10;
    }
    .intro__photo--top {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }
    .intro__photo-tile {
        border-radius: 18px;
        aspect-ratio: 1;
    }
    .intro__photo--bot {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 1;
    }
    .intro__stat-card {
        grid-column: 1 / 3;
        grid-row: 3;
        padding: 20px 22px;
    }
    .intro__stat-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }
    .intro__stat-card__icon svg {
        width: 22px;
        height: 22px;
    }
    .intro__stat-card__val {
        font-size: 32px;
    }
    .intro__stat-card__label {
        font-size: 12px;
    }
    .intro__stamp {
        display: block;
        width: 68px;
        height: 68px;
        top: -18px;
        right: -10px;
    }
    .intro__stamp__core {
        inset: 15px;
    }
    .intro__stamp__core svg {
        width: 21px;
        height: 21px;
    }
    .intro__deco {
        font-size: 22px;
        margin-bottom: 7px;
    }
    .intro__title {
        font-size: 30px;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }
    .intro__title-hl::after {
        bottom: -7px;
        height: 11px;
    }
    .intro__lead {
        font-size: 17px;
        margin-bottom: 34px;
        max-width: 600px;
    }
    .intro__list {
        gap: 16px;
        margin-bottom: 36px;
    }
    .intro__item {
        grid-template-columns: 50px 1fr;
        gap: 16px;
        padding: 16px 18px;
    }
    .intro__num-icon {
        width: 42px;
        height: 42px;
    }
    .intro__item-head svg {
        width: 20px;
        height: 20px;
    }
    .intro__item h3 {
        font-size: 16px;
    }
    .intro__item p {
        font-size: 14.5px;
    }
    .intro__ctas {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .intro__ctas .btn {
        width: auto;
    }
}
@media (min-width: 1024px) {
    .intro__doodles {
        display: block;
    }
    .intro__inner {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
        gap: 44px;
        align-items: center;
    }
    .intro__mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 180px 180px 180px;
        grid-auto-rows: initial;
        gap: 14px;
    }
    .intro__photo--main {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
        aspect-ratio: auto;
    }
    .intro__photo--top {
        grid-column: 5 / 7;
        grid-row: 1 / 3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .intro__photo-tile {
        border-radius: 20px;
        aspect-ratio: auto;
    }
    .intro__photo--bot {
        grid-column: 3 / 7;
        grid-row: 3 / 4;
        aspect-ratio: auto;
    }
    .intro__stat-card {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        padding: 22px;
    }
    .intro__stat-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .intro__stat-card__icon svg {
        width: 24px;
        height: 24px;
    }
    .intro__stat-card__val {
        font-size: 34px;
        margin-bottom: 4px;
    }
    .intro__stamp {
        width: 80px;
        height: 80px;
        top: -24px;
        right: -18px;
    }
    .intro__stamp__core {
        inset: 18px;
    }
    .intro__stamp__core svg {
        width: 24px;
        height: 24px;
    }
    .intro__deco {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .intro__title {
        font-size: 34px;
        letter-spacing: -0.7px;
        margin-bottom: 20px;
    }
    .intro__title-hl::after {
        bottom: -8px;
        height: 12px;
    }
    .intro__lead {
        font-size: 17.5px;
        margin-bottom: 38px;
        max-width: 100%;
    }
    .intro__list {
        gap: 17px;
        margin-bottom: 38px;
    }
    .intro__item {
        grid-template-columns: 54px 1fr;
        gap: 17px;
        padding: 17px 20px;
    }
    .intro__num-icon {
        width: 46px;
        height: 46px;
    }
    .intro__item-head {
        gap: 9px;
        margin-bottom: 5px;
    }
    .intro__item-head svg {
        width: 21px;
        height: 21px;
    }
    .intro__item h3 {
        font-size: 16.5px;
        letter-spacing: 0.25px;
    }
    .intro__item p {
        font-size: 15px;
    }
    .intro__ctas {
        gap: 13px;
    }
}
@media (min-width: 1320px) {
    .intro__blob {
        display: block;
    }
    .intro__inner {
        grid-template-columns: 1.05fr 1fr;
        gap: 72px;
        align-items: center;
    }
    .intro__mosaic {
        grid-template-rows: 200px 200px 200px;
    }
    .intro__stamp {
        width: 96px;
        height: 96px;
        top: -30px;
        right: -28px;
    }
    .intro__stamp__core {
        inset: 21px;
    }
    .intro__stamp__core svg {
        width: 27px;
        height: 27px;
    }
    .intro__deco {
        font-size: 26px;
    }
    .intro__title {
        font-size: 38px;
        letter-spacing: -0.9px;
        margin-bottom: 21px;
    }
    .intro__title-hl::after {
        bottom: -8px;
        height: 13px;
    }
    .intro__lead {
        font-size: 18px;
        margin-bottom: 42px;
    }
    .intro__item {
        grid-template-columns: 58px 1fr;
        gap: 18px;
        padding: 18px 22px;
    }
    .intro__num-icon {
        width: 48px;
        height: 48px;
    }
    .intro__item-head svg {
        width: 22px;
        height: 22px;
    }
    .intro__item h3 {
        font-size: 17px;
    }
    .intro__item p {
        font-size: 15px;
    }
    .intro__ctas {
        gap: 14px;
    }
}
@media (min-width: 1520px) {
    .intro__inner {
        gap: 90px;
    }
    .intro__mosaic {
        grid-template-rows: 210px 210px 210px;
        gap: 14px;
    }
    .intro__photo-tile {
        border-radius: 22px;
    }
    .intro__stat-card {
        padding: 22px;
    }
    .intro__stat-card__val {
        font-size: 36px;
    }
    .intro__stat-card__label {
        font-size: 12px;
    }
    .intro__stamp {
        width: 104px;
        height: 104px;
        top: -34px;
        right: -34px;
    }
    .intro__stamp__core {
        inset: 23px;
    }
    .intro__stamp__core svg {
        width: 29px;
        height: 29px;
    }
    .intro__deco {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .intro__title {
        font-size: 42px;
        letter-spacing: -1px;
        line-height: 1.02;
        margin-bottom: 22px;
    }
    .intro__title-hl::after {
        bottom: -8px;
        height: 14px;
    }
    .intro__lead {
        font-size: 18px;
        line-height: 1.65;
        margin-bottom: 44px;
        max-width: 520px;
    }
    .intro__list {
        gap: 18px;
        margin-bottom: 44px;
    }
    .intro__item h3 {
        line-height: 1;
        letter-spacing: 0.3px;
    }
}

/* === Vivências === */
.vivencias {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --section-c: var(--esportes);
}
.vivencias[data-active="esportes"] {
    --section-c: var(--esportes);
}
.vivencias[data-active="ciencia"] {
    --section-c: var(--ciencia);
}
.vivencias[data-active="multimidia"] {
    --section-c: var(--multimidia);
}
.vivencias[data-active="maker"] {
    --section-c: var(--maker);
}
.vivencias[data-active="ingles"] {
    --section-c: var(--ingles);
}
.vivencias__bg,
.vivencias__ripple {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.vivencias__bg {
    background: var(--esportes);
}
.vivencias__ripple {
    background: var(--esportes);
    clip-path: circle(0px at 50% 50%);
    will-change: clip-path, background-color;
}
.vivencias__deco-stars {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.vivencias__star {
    position: absolute;
    color: rgba(255, 255, 255, 0.16);
    animation: starTwinkle 4s ease-in-out infinite;
}
.vivencias__star svg {
    width: 100%;
    height: 100%;
}
.vivencias .section__head {
    margin-bottom: 30px;
}
.vivencias__tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    box-shadow: 0 14px 36px -16px rgba(0, 0, 0, 0.25);
    margin: 0 auto 24px;
    width: 100%;
    max-width: 100%;
}
.vivencias__tabs.is-scrollable {
    cursor: grab;
    box-shadow:
        inset 22px 0 22px -24px rgba(255, 255, 255, 0.8),
        inset -22px 0 22px -24px rgba(255, 255, 255, 0.8),
        0 14px 36px -16px rgba(0, 0, 0, 0.25);
}
.vivencias__tabs.is-scrollable.is-at-start {
    box-shadow:
        inset -22px 0 22px -24px rgba(255, 255, 255, 0.8),
        0 14px 36px -16px rgba(0, 0, 0, 0.25);
}
.vivencias__tabs.is-scrollable.is-at-end {
    box-shadow:
        inset 22px 0 22px -24px rgba(255, 255, 255, 0.8),
        0 14px 36px -16px rgba(0, 0, 0, 0.25);
}
.vivencias__tabs.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.vivencias__tabs::-webkit-scrollbar {
    display: none;
}
.vivencias__tab {
    --c: var(--azul);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12.5px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    white-space: nowrap;
    transition: all 0.35s var(--ease-out);
}
.vivencias__tab[data-tab="esportes"] {
    --c: var(--esportes);
}
.vivencias__tab[data-tab="ciencia"] {
    --c: var(--ciencia);
}
.vivencias__tab[data-tab="multimidia"] {
    --c: var(--multimidia);
}
.vivencias__tab[data-tab="maker"] {
    --c: var(--maker);
}
.vivencias__tab[data-tab="ingles"] {
    --c: var(--ingles);
}
.vivencias__tab svg {
    width: 16px;
    height: 16px;
    transition: transform 0.35s var(--ease-out);
}
.vivencias__tab:hover {
    background: rgba(255, 255, 255, 0.18);
}
.vivencias__tab.is-active {
    background: #fff;
    color: var(--c);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.25);
}
.vivencias__tab.is-active svg {
    transform: scale(1.05);
}
.vivencias__panels {
    position: relative;
}
.vivencias__autoplay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(100%, 420px);
    margin: 16px auto 0;
    padding: 0;
}
.vivencias__autoplay-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--section-c);
    background: #fff;
    box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.45);
    flex: 0 0 auto;
    transition:
        transform 0.28s var(--ease-out),
        box-shadow 0.28s var(--ease-out);
}
.vivencias__autoplay-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.48);
}
.vivencias__autoplay-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition:
        opacity 0.24s var(--ease-out),
        transform 0.24s var(--ease-out);
}
.vivencias__autoplay-icon--pause::before,
.vivencias__autoplay-icon--pause::after {
    content: "";
    width: 4px;
    height: 15px;
    border-radius: 4px;
    background: currentColor;
}
.vivencias__autoplay-icon--pause {
    grid-template-columns: repeat(2, 4px);
    place-content: center;
    gap: 4px;
}
.vivencias__autoplay-icon--play {
    opacity: 0;
    transform: scale(0.72);
}
.vivencias__autoplay-icon--play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
}
.vivencias__autoplay-toggle.is-paused .vivencias__autoplay-icon--pause {
    opacity: 0;
    transform: scale(0.72);
}
.vivencias__autoplay-toggle.is-paused .vivencias__autoplay-icon--play {
    opacity: 1;
    transform: scale(1);
}
.vivencias__progress {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: var(--radius-pill);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.vivencias__progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.38);
    transform: scaleX(0);
    transform-origin: left center;
}
.vivencias__panel {
    --c: var(--azul);
    display: none;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-bento);
    box-shadow:
        0 30px 60px -25px rgba(0, 0, 0, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 -2px 0 rgba(255, 255, 255, 0.2) inset;
    overflow: hidden;
    min-height: auto;
}
.vivencias__panel[data-panel="esportes"] {
    --c: var(--esportes);
}
.vivencias__panel[data-panel="ciencia"] {
    --c: var(--ciencia);
}
.vivencias__panel[data-panel="multimidia"] {
    --c: var(--multimidia);
}
.vivencias__panel[data-panel="maker"] {
    --c: var(--maker);
}
.vivencias__panel[data-panel="ingles"] {
    --c: var(--ingles);
}
.vivencias__panel.is-active {
    display: grid;
}
.vivencias__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c) 0%, transparent 50%);
    opacity: 0.07;
    pointer-events: none;
}
.vivencias__blob {
    display: none;
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    opacity: 0.08;
    pointer-events: none;
    color: var(--c);
}
.vivencias__media {
    position: relative;
    z-index: 2;
    min-width: 0;
}
.vivencias__featured {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    max-width: 100%;
}
.vivencias__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s var(--ease-out);
}
.vivencias__thumbs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    margin: 10px 0 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 0;
}
.vivencias__thumbs.is-scrollable {
    cursor: grab;
}
.vivencias__thumbs.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}
.vivencias__thumbs::-webkit-scrollbar {
    display: none;
}
.vivencias__thumb {
    position: relative;
    width: 64px;
    height: 50px;
    padding: 0;
    border-radius: var(--radius-small);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
    scroll-snap-align: center;
}
.vivencias__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vivencias__thumb:hover {
    transform: translateY(-3px);
}
.vivencias__thumb.is-active {
    border-color: var(--c);
}
.vivencias__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}
.vivencias__content .deco-script {
    font-family: var(--font-deco);
    font-size: 18px;
    color: var(--c);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.vivencias__content h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: -0.1px;
    line-height: 1.15;
    margin-bottom: 10px;
}
.vivencias__content p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 10px;
    line-height: 1.55;
}
.vivencias__content p strong {
    color: var(--ink);
    font-weight: 800;
}
.vivencias__content ul {
    margin: 12px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vivencias__content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.45;
}
.vivencias__content li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--c);
    border-radius: 50%;
    flex-shrink: 0;
}
.vivencias__content .btn {
    background: var(--c);
    color: #fff;
    border-color: var(--c);
}
.vivencias__content .btn:hover {
    background: #fff;
    color: var(--c);
}
.vivencias__content .vivencias__brand-logo {
    display: block;
    width: 130px;
    height: auto;
    margin: 18px 0 16px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}
.vivencias__content .google-for-education {
    max-width: 104px;
}

@media (min-width: 450px) {
    .vivencias .section__head {
        margin-bottom: 36px;
    }
    .vivencias__tabs {
        gap: 8px;
        padding: 7px;
    }
    .vivencias__tab {
        padding: 9px 14px;
        font-size: 13px;
        gap: 7px;
    }
    .vivencias__tab svg {
        width: 17px;
        height: 17px;
    }
    .vivencias__panel {
        padding: 24px;
        gap: 28px;
    }
    .vivencias__autoplay {
        gap: 12px;
        width: min(100%, 460px);
        margin-top: 18px;
    }
    .vivencias__autoplay-toggle {
        width: 40px;
        height: 40px;
    }
    .vivencias__progress {
        height: 9px;
    }
    .vivencias__thumb {
        width: 72px;
        height: 56px;
    }
    .vivencias__content .deco-script {
        font-size: 20px;
    }
    .vivencias__content h3 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    .vivencias__content p {
        font-size: 15px;
    }
    .vivencias__content li {
        font-size: 14.5px;
    }
    .vivencias__content .vivencias__brand-logo {
        width: 150px;
    }
}
@media (min-width: 768px) {
    .vivencias__deco-stars {
        display: block;
    }
    .vivencias .section__head {
        margin-bottom: 42px;
    }
    .vivencias__tabs {
        gap: 10px;
        padding: 8px;
        margin-bottom: 36px;
    }
    .vivencias__tab {
        padding: 10px 16px;
        font-size: 13.5px;
        gap: 8px;
        letter-spacing: 0.35px;
    }
    .vivencias__tab svg {
        width: 18px;
        height: 18px;
    }
    .vivencias__panel {
        padding: 28px;
        gap: 32px;
    }
    .vivencias__autoplay {
        width: min(100%, 500px);
        margin-top: 22px;
    }
    .vivencias__featured {
        aspect-ratio: 4 / 3;
    }
    .vivencias__thumbs {
        gap: 10px;
        margin-top: 12px;
        overflow-x: auto;
    }
    .vivencias__thumb {
        width: 78px;
        height: 60px;
        border-width: 3px;
    }
    .vivencias__content .deco-script {
        font-size: 22px;
    }
    .vivencias__content h3 {
        font-size: 30px;
        letter-spacing: -0.3px;
        margin-bottom: 16px;
    }
    .vivencias__content p {
        font-size: 15.5px;
        margin-bottom: 12px;
    }
    .vivencias__content ul {
        margin: 14px 0 22px;
        gap: 9px;
    }
    .vivencias__content li {
        font-size: 15px;
    }
    .vivencias__content .vivencias__brand-logo {
        width: 160px;
        margin: 22px 0 18px;
    }
}
@media (min-width: 1024px) {
    .vivencias .section__head {
        margin-bottom: 46px;
    }
    .vivencias__tabs {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        scroll-behavior: auto;
        width: fit-content;
        gap: 11px;
        padding: 9px;
        margin: 0 auto 42px;
    }
    .vivencias__tab {
        padding: 11px 18px;
        font-size: 14.5px;
        gap: 9px;
        letter-spacing: 0.38px;
    }
    .vivencias__tab svg {
        width: 20px;
        height: 20px;
    }
    .vivencias__panel {
        grid-template-columns: 1.1fr 1fr;
        gap: 42px;
        padding: 36px;
        align-items: center;
        min-height: 440px;
    }
    .vivencias__autoplay {
        margin-top: 26px;
    }
    .vivencias__blob {
        display: block;
    }
    .vivencias__featured {
        aspect-ratio: 4 / 3;
    }
    .vivencias__thumb {
        width: clamp(58px, calc((100% - 50px) / 6), 84px);
        height: auto;
        aspect-ratio: 21 / 16;
    }
    .vivencias__content .deco-script {
        font-size: 24px;
        margin-bottom: 4px;
    }
    .vivencias__content h3 {
        font-size: 34px;
        letter-spacing: -0.4px;
        line-height: 1;
        margin-bottom: 18px;
    }
    .vivencias__content p {
        font-size: 16px;
        margin-bottom: 13px;
    }
    .vivencias__content ul {
        margin: 16px 0 26px;
        gap: 10px;
    }
    .vivencias__content li {
        font-size: 15.5px;
        gap: 11px;
    }
    .vivencias__content li::before {
        width: 8px;
        height: 8px;
    }
    .vivencias__content .vivencias__brand-logo {
        width: 170px;
        margin: 24px 0 20px;
    }
}
@media (min-width: 1320px) {
    .vivencias .section__head {
        margin-bottom: 48px;
    }
    .vivencias__tabs {
        gap: 12px;
        padding: 10px;
        margin-bottom: 46px;
    }
    .vivencias__tab {
        padding: 12px 20px;
        font-size: 15px;
        gap: 10px;
    }
    .vivencias__tab svg {
        width: 21px;
        height: 21px;
    }
    .vivencias__panel {
        padding: 42px;
        gap: 56px;
        min-height: 480px;
    }
    .vivencias__autoplay {
        width: min(100%, 540px);
        margin-top: 30px;
    }
    .vivencias__content .deco-script {
        font-size: 26px;
    }
    .vivencias__content h3 {
        font-size: 40px;
        margin-bottom: 19px;
    }
    .vivencias__content p {
        font-size: 16.5px;
    }
    .vivencias__content ul {
        margin: 17px 0 28px;
    }
    .vivencias__content li {
        font-size: 15.5px;
    }
    .vivencias__content .vivencias__brand-logo {
        width: 175px;
        margin: 26px 0 22px;
    }
}
@media (min-width: 1520px) {
    .vivencias .section__head {
        margin-bottom: 50px;
    }
    .vivencias__tabs {
        gap: 12px;
        padding: 10px;
        margin: 0 auto 50px;
    }
    .vivencias__tab {
        padding: 12px 22px;
        font-size: 15.5px;
        gap: 10px;
        letter-spacing: 0.4px;
    }
    .vivencias__tab svg {
        width: 22px;
        height: 22px;
    }
    .vivencias__panel {
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        padding: 50px;
        min-height: 540px;
    }
    .vivencias__autoplay {
        margin-top: 32px;
    }
    .vivencias__featured {
        aspect-ratio: 4 / 3;
    }
    .vivencias__thumbs {
        gap: 12px;
        margin-top: 16px;
    }
    .vivencias__thumb {
        width: clamp(70px, calc((100% - 60px) / 6), 90px);
        height: auto;
        aspect-ratio: 9 / 7;
        border-width: 3px;
    }
    .vivencias__content .deco-script {
        font-size: 28px;
    }
    .vivencias__content h3 {
        font-size: 40px;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }
    .vivencias__content p {
        font-size: 17px;
        margin-bottom: 14px;
    }
    .vivencias__content ul {
        margin: 18px 0 30px;
        gap: 10px;
    }
    .vivencias__content li {
        font-size: 16px;
        gap: 12px;
    }
    .vivencias__content .vivencias__brand-logo {
        width: 180px;
        margin: 28px 0 24px;
    }
}

/* === Diferenciais === */
.diferenciais {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}
.diferenciais__deco {
    display: none;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.diferenciais__deco svg {
    position: absolute;
    opacity: 0.1;
}
.diferenciais__deco svg:nth-child(1) {
    top: 80px;
    left: 4%;
    width: 64px;
    height: 64px;
    color: var(--amarelo);
    opacity: 0.05;
}
.diferenciais__deco svg:nth-child(2) {
    top: 18%;
    right: 6%;
    width: 86px;
    height: 86px;
    color: var(--esportes);
    opacity: 0.06;
}
.diferenciais__deco svg:nth-child(3) {
    bottom: 22%;
    left: 8%;
    width: 70px;
    height: 70px;
    color: var(--ciencia);
}
.diferenciais__deco svg:nth-child(4) {
    bottom: 12%;
    right: 5%;
    width: 90px;
    height: 90px;
    color: var(--ingles);
}
.diferenciais__deco svg:nth-child(5) {
    top: 50%;
    left: 40%;
    width: 50px;
    height: 50px;
    color: var(--multimidia);
    opacity: 0.06;
}
.diferenciais__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 12px;
}
.dif-card {
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 8px 28px -8px rgba(29, 56, 80, 0.25);
    grid-column: 1;
    grid-row: auto;
}
.dif-card:hover {
    box-shadow: 0 30px 60px -15px rgba(29, 56, 80, 0.4);
}
.dif-card picture {
    display: block;
    width: 100%;
    height: 100%;
}
.dif-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dif-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29, 56, 80, 0.03) 0%, rgba(29, 56, 80, 0.2) 55%, rgba(29, 56, 80, 0.62) 100%);
    z-index: 1;
}
.dif-card__txt {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 16px 16px 14px;
    color: #fff;
}
.dif-card__txt h3 {
    text-wrap: balance;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}
.dif-card__txt p {
    font-size: 13.5px;
    color: #ffffff;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: 4px;
    transition:
        max-height 0.8s var(--ease-out),
        opacity 0.8s var(--ease-out),
        margin-top 0.8s var(--ease-out);
}
.diferenciais__cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

@media (min-width: 450px) {
    .diferenciais__grid {
        grid-auto-rows: 220px;
        gap: 14px;
    }
    .dif-card__txt {
        padding: 18px 18px 16px;
    }
    .dif-card__txt h3 {
        font-size: 17px;
    }
    .dif-card__txt p {
        font-size: 14px;
    }
    .diferenciais__cta {
        margin-top: 36px;
    }
}
@media (min-width: 768px) {
    .diferenciais__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 16px;
    }
    .dif-card {
        grid-column: span 1;
    }
    .dif-card:nth-child(3) {
        grid-column: span 2;
    }
    .dif-card__txt {
        padding: 20px 20px 16px;
    }
    .dif-card__txt h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }
    .dif-card__txt p {
        font-size: 14px;
    }
    .diferenciais__cta {
        margin-top: 42px;
    }
}
@media (min-width: 1024px) {
    .diferenciais__deco {
        display: block;
    }
    .diferenciais__grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 240px 240px;
        grid-auto-rows: 240px;
        gap: 18px;
    }
    .dif-card:nth-child(1) {
        grid-column: span 7;
    }
    .dif-card:nth-child(2) {
        grid-column: span 5;
    }
    .dif-card:nth-child(3) {
        grid-column: span 5;
        grid-row: span 2;
    }
    .dif-card:nth-child(4) {
        grid-column: span 4;
    }
    .dif-card:nth-child(5) {
        grid-column: span 4;
    }
    .dif-card:nth-child(6) {
        grid-column: span 3;
    }
    .dif-card__txt {
        padding: 22px 22px 16px;
    }
    .dif-card__txt h3 {
        font-size: 19px;
    }
    .dif-card__txt p {
        font-size: 14.5px;
    }
    .diferenciais__cta {
        margin-top: 48px;
    }
}
@media (min-width: 1320px) {
    .diferenciais__grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: 260px 260px;
        gap: 20px;
    }
    .dif-card:nth-child(1) {
        grid-column: span 9;
    }
    .dif-card:nth-child(2) {
        grid-column: span 6;
    }
    .dif-card:nth-child(3) {
        grid-column: span 5;
        grid-row: span 2;
    }
    .dif-card:nth-child(4) {
        grid-column: span 5;
    }
    .dif-card:nth-child(5) {
        grid-column: span 5;
    }
    .dif-card:nth-child(6) {
        grid-column: span 5;
    }
    .dif-card__txt {
        padding: 24px 24px 17px;
    }
    .dif-card__txt h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .dif-card__txt p {
        font-size: 14.5px;
    }
    .diferenciais__cta {
        margin-top: 54px;
    }
}
@media (min-width: 1520px) {
    .diferenciais__grid {
        grid-template-columns: repeat(24, 1fr);
        grid-template-rows: 280px 280px;
        gap: 22px;
    }
    .dif-card:nth-child(1) {
        grid-column: span 10;
    }
    .dif-card:nth-child(2) {
        grid-column: span 7;
    }
    .dif-card:nth-child(3) {
        grid-column: span 7;
        grid-row: span 2;
    }
    .dif-card:nth-child(4) {
        grid-column: span 6;
    }
    .dif-card:nth-child(5) {
        grid-column: span 6;
    }
    .dif-card:nth-child(6) {
        grid-column: span 5;
    }
    .dif-card__txt {
        padding: 28px 26px 18px;
    }
    .dif-card__txt h3 {
        font-size: 22px;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    .dif-card__txt p {
        font-size: 15px;
        line-height: 1.28;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
    }
    .dif-card:hover .dif-card__txt p {
        max-height: 120px;
        opacity: 1;
        margin-top: 4px;
    }
    .diferenciais__cta {
        margin-top: 60px;
    }
}

/* === Incluso === */
.incluso {
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.incluso__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 8px;
}
.inc-card {
    --c: var(--amarelo);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    box-shadow: 0 10px 30px -16px rgba(29, 56, 80, 0.1);
    cursor: default;
    isolation: isolate;
    grid-column: span 1;
}
.inc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--c) 0%, color-mix(in srgb, var(--c) 70%, var(--ink-soft)) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    z-index: 0;
}
.inc-card > * {
    position: relative;
    z-index: 1;
}
.inc-card:hover {
    transform: translateY(-10px) rotate(-0.3deg);
    box-shadow:
        0 28px 50px -20px color-mix(in srgb, var(--c) 70%, transparent),
        0 6px 12px -4px rgba(29, 56, 80, 0.15);
}
.inc-card:hover::before {
    opacity: 1;
}
.inc-card__shape {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 90px;
    height: 90px;
    color: var(--c);
    opacity: 0.08;
    z-index: 0;
    transition:
        opacity 0.5s var(--ease-out),
        transform 0.8s var(--ease-out);
}
.inc-card__shape svg {
    width: 100%;
    height: 100%;
}
.inc-card:hover .inc-card__shape {
    opacity: 0.12;
    color: #fff;
    transform: rotate(35deg) scale(1.1);
}
.inc-card:nth-child(1) .inc-card__shape,
.inc-card:nth-child(4) .inc-card__shape,
.inc-card:nth-child(5) .inc-card__shape,
.inc-card:nth-child(7) .inc-card__shape,
.inc-card:nth-child(10) .inc-card__shape,
.inc-card:nth-child(12) .inc-card__shape {
    opacity: 0.04;
}
.inc-card:nth-child(1):hover .inc-card__shape,
.inc-card:nth-child(4):hover .inc-card__shape,
.inc-card:nth-child(5):hover .inc-card__shape,
.inc-card:nth-child(7):hover .inc-card__shape,
.inc-card:nth-child(10):hover .inc-card__shape,
.inc-card:nth-child(12):hover .inc-card__shape {
    opacity: 0.08;
}
.inc-card__num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-deco);
    font-size: 18px;
    color: var(--c);
    opacity: 0.55;
    line-height: 1;
    transition:
        color 0.4s var(--ease-out),
        opacity 0.4s var(--ease-out);
    z-index: 2;
}
.inc-card:hover .inc-card__num {
    color: #fff;
    opacity: 1;
}
.inc-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--c) 18%, transparent);
    color: var(--c);
    transition: all 0.5s var(--ease-out);
}
.inc-card__icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px dashed color-mix(in srgb, var(--c) 35%, transparent);
    border-radius: 24px;
    opacity: 0;
    transition:
        opacity 0.4s var(--ease-out),
        transform 0.6s var(--ease-out);
    transform: rotate(0);
}
.inc-card:hover .inc-card__icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}
.inc-card:hover .inc-card__icon::before {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.55);
    transform: rotate(180deg);
}
.inc-card__icon svg {
    width: 22px;
    height: 22px;
}
.inc-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.inc-card__body h3 {
    font-size: 14px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: color 0.4s var(--ease-out);
}
.inc-card:hover .inc-card__body h3 {
    color: #fff;
}
.inc-card__sparkle {
    position: absolute;
    bottom: 14px;
    right: 16px;
    width: 22px;
    height: 22px;
    color: #fff;
    opacity: 0;
    transform: scale(0) rotate(0);
    transition:
        opacity 0.4s var(--ease-out),
        transform 0.6s var(--ease-back);
    z-index: 2;
}
.inc-card__sparkle svg {
    width: 100%;
    height: 100%;
}
.inc-card:hover .inc-card__sparkle {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}
.inc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 14px, currentColor 14px 15px);
    color: var(--c);
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s var(--ease-out);
}
.inc-card:hover::after {
    opacity: 0.07;
    color: #fff;
}
.inc-card:nth-child(1)::after,
.inc-card:nth-child(4)::after,
.inc-card:nth-child(5)::after,
.inc-card:nth-child(7)::after,
.inc-card:nth-child(10)::after,
.inc-card:nth-child(12)::after {
    opacity: 0.02;
}
.inc-card:nth-child(1):hover::after,
.inc-card:nth-child(4):hover::after,
.inc-card:nth-child(5):hover::after,
.inc-card:nth-child(7):hover::after,
.inc-card:nth-child(10):hover::after,
.inc-card:nth-child(12):hover::after {
    opacity: 0.045;
}
.inc-card:nth-child(1) {
    --c: var(--amarelo-2);
}
.inc-card:nth-child(2) {
    --c: var(--azul);
}
.inc-card:nth-child(3) {
    --c: var(--ciencia);
}
.inc-card:nth-child(4) {
    --c: var(--multimidia);
}
.inc-card:nth-child(5) {
    --c: var(--esportes);
}
.inc-card:nth-child(6) {
    --c: var(--ingles);
}
.inc-card:nth-child(7) {
    --c: var(--amarelo-2);
}
.inc-card:nth-child(8) {
    --c: var(--maker);
}
.inc-card:nth-child(9) {
    --c: var(--ciencia);
}
.inc-card:nth-child(10) {
    --c: var(--multimidia);
}
.inc-card:nth-child(11) {
    --c: var(--azul);
}
.inc-card:nth-child(12) {
    --c: var(--esportes);
}
.incluso__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

@media (max-width: 449.98px) {
    .incluso__grid {
        grid-auto-rows: 142px;
        gap: 8px;
    }
    .inc-card {
        padding: 12px;
    }
    .inc-card__shape {
        top: -20px;
        right: -20px;
        width: 74px;
        height: 74px;
    }
    .inc-card__num {
        top: 9px;
        right: 10px;
        font-size: 15px;
    }
    .inc-card__icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .inc-card__icon svg {
        width: 18px;
        height: 18px;
    }
    .inc-card__body h3 {
        font-size: 11.5px;
        line-height: 1.12;
        letter-spacing: 0;
    }
    .inc-card__sparkle {
        width: 16px;
        height: 16px;
        right: 12px;
        bottom: 12px;
    }
}
@media (min-width: 450px) {
    .incluso__grid {
        grid-auto-rows: 166px;
        gap: 12px;
    }
    .inc-card {
        padding: 18px;
    }
    .inc-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
    }
    .inc-card__icon svg {
        width: 24px;
        height: 24px;
    }
    .inc-card__body h3 {
        font-size: 15px;
    }
    .incluso__cta {
        margin-top: 42px;
    }
}
@media (min-width: 768px) {
    .incluso__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
        gap: 16px;
    }
    .inc-card {
        padding: 20px;
    }
    .inc-card__shape {
        top: -26px;
        right: -26px;
        width: 100px;
        height: 100px;
    }
    .inc-card__num {
        top: 14px;
        right: 16px;
        font-size: 20px;
    }
    .inc-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
    .inc-card__icon svg {
        width: 26px;
        height: 26px;
    }
    .inc-card__body {
        gap: 5px;
    }
    .inc-card__body h3 {
        font-size: 16px;
    }
    .incluso__cta {
        margin-top: 50px;
    }
}
@media (min-width: 1024px) {
    .incluso__grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 200px;
        gap: 16px;
    }
    .inc-card:nth-child(1),
    .inc-card:nth-child(2),
    .inc-card:nth-child(3) {
        grid-column: span 2;
    }
    .inc-card:nth-child(4),
    .inc-card:nth-child(5),
    .inc-card:nth-child(6),
    .inc-card:nth-child(7),
    .inc-card:nth-child(8),
    .inc-card:nth-child(9) {
        grid-column: span 2;
    }
    .inc-card:nth-child(10) {
        grid-column: span 2;
    }
    .inc-card:nth-child(11),
    .inc-card:nth-child(12) {
        grid-column: span 3;
    }
    .inc-card {
        padding: 22px;
    }
    .inc-card__shape {
        top: -28px;
        right: -28px;
        width: 110px;
        height: 110px;
    }
    .inc-card__num {
        top: 16px;
        right: 18px;
        font-size: 22px;
    }
    .inc-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 15px;
    }
    .inc-card__icon svg {
        width: 28px;
        height: 28px;
    }
    .inc-card__body h3 {
        font-size: 17px;
    }
    .incluso__cta {
        margin-top: 58px;
    }
}
@media (min-width: 1320px) {
    .incluso__grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 210px;
        gap: 17px;
    }
    .inc-card:nth-child(1),
    .inc-card:nth-child(2),
    .inc-card:nth-child(3) {
        grid-column: span 4;
    }
    .inc-card:nth-child(4),
    .inc-card:nth-child(5),
    .inc-card:nth-child(6),
    .inc-card:nth-child(7) {
        grid-column: span 3;
    }
    .inc-card:nth-child(8) {
        grid-column: span 5;
    }
    .inc-card:nth-child(9) {
        grid-column: span 4;
    }
    .inc-card:nth-child(10) {
        grid-column: span 3;
    }
    .inc-card:nth-child(11),
    .inc-card:nth-child(12) {
        grid-column: span 6;
    }
    .inc-card {
        padding: 23px;
    }
    .inc-card__num {
        font-size: 24px;
    }
    .inc-card__icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    .inc-card__icon svg {
        width: 30px;
        height: 30px;
    }
    .inc-card__body h3 {
        font-size: 17.5px;
    }
    .incluso__cta {
        margin-top: 64px;
    }
}
@media (min-width: 1520px) {
    .incluso__grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
    }
    .inc-card:nth-child(1),
    .inc-card:nth-child(2),
    .inc-card:nth-child(3) {
        grid-column: span 4;
    }
    .inc-card:nth-child(4),
    .inc-card:nth-child(5),
    .inc-card:nth-child(6),
    .inc-card:nth-child(7) {
        grid-column: span 3;
    }
    .inc-card:nth-child(8) {
        grid-column: span 5;
    }
    .inc-card:nth-child(9) {
        grid-column: span 4;
    }
    .inc-card:nth-child(10) {
        grid-column: span 3;
    }
    .inc-card:nth-child(11),
    .inc-card:nth-child(12) {
        grid-column: span 6;
    }
    .inc-card {
        padding: 24px;
    }
    .inc-card__shape {
        top: -30px;
        right: -30px;
        width: 130px;
        height: 130px;
    }
    .inc-card__num {
        top: 18px;
        right: 20px;
        font-size: 26px;
    }
    .inc-card__icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }
    .inc-card__icon svg {
        width: 32px;
        height: 32px;
    }
    .inc-card__body {
        gap: 6px;
    }
    .inc-card__body h3 {
        font-size: 18px;
    }
    .incluso__cta {
        margin-top: 70px;
    }
}

/* === Tech strip === */
.tech-strip {
    background: var(--bg-white);
    margin-top: 32px;
    padding: 20px 12px;
    border-radius: var(--radius-card);
    box-shadow: 0 18px 46px -28px rgba(29, 56, 80, 0.35);
}
.tech-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 22px;
    text-align: center;
}
.tech-strip__title .deco-script {
    font-family: var(--font-deco);
    font-size: 18px;
    color: var(--amarelo-2);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.tech-strip__title h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.25px;
}
.tech-strip__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}
.tech-strip__logos img {
    max-height: 42px;
    height: auto;
    width: auto;
    max-width: 90px;
    opacity: 1;
    transition: all 0.35s var(--ease-out);
}
.tech-strip__logos img:hover {
    transform: scale(1.05);
}
.tech-strip + .incluso__cta {
    margin-top: 30px;
}

@media (min-width: 450px) {
    .tech-strip {
        margin-top: 36px;
        padding: 22px 22px;
    }
    .tech-strip__inner {
        gap: 26px;
    }
    .tech-strip__title .deco-script {
        font-size: 20px;
    }
    .tech-strip__title h3 {
        font-size: 17px;
    }
    .tech-strip__logos {
        gap: 28px;
    }
    .tech-strip__logos img {
        max-height: 48px;
        max-width: 100px;
    }
    .tech-strip + .incluso__cta {
        margin-top: 34px;
    }
}
@media (min-width: 768px) {
    .tech-strip {
        margin-top: 42px;
        padding: 26px 28px;
    }
    .tech-strip__inner {
        gap: 30px;
    }
    .tech-strip__title .deco-script {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .tech-strip__title h3 {
        font-size: 19px;
    }
    .tech-strip__logos {
        gap: 38px;
    }
    .tech-strip__logos img {
        max-height: 56px;
        max-width: 108px;
    }
    .tech-strip + .incluso__cta {
        margin-top: 40px;
    }
}
@media (min-width: 1024px) {
    .tech-strip {
        margin-top: 48px;
        padding: 30px 34px;
    }
    .tech-strip__inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 36px;
    }
    .tech-strip__title .deco-script {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .tech-strip__title h3 {
        font-size: 21px;
        letter-spacing: 0.28px;
    }
    .tech-strip__logos {
        justify-content: flex-end;
        gap: 56px;
        flex-wrap: nowrap;
    }
    .tech-strip__logos img {
        max-height: 62px;
        max-width: 116px;
    }
    .tech-strip + .incluso__cta {
        margin-top: 46px;
    }
}
@media (min-width: 1320px) {
    .tech-strip {
        margin-top: 54px;
        padding: 32px 38px;
    }
    .tech-strip__inner {
        gap: 44px;
    }
    .tech-strip__title .deco-script {
        font-size: 26px;
    }
    .tech-strip__title h3 {
        font-size: 23px;
    }
    .tech-strip__logos {
        gap: 72px;
    }
    .tech-strip__logos img {
        max-height: 68px;
        max-width: 120px;
    }
    .tech-strip + .incluso__cta {
        margin-top: 50px;
    }
}
@media (min-width: 1520px) {
    .tech-strip {
        margin-top: 58px;
        padding: 34px 40px;
    }
    .tech-strip__inner {
        gap: 50px;
    }
    .tech-strip__title .deco-script {
        font-size: 28px;
        margin-bottom: 6px;
    }
    .tech-strip__title h3 {
        font-size: 24px;
        letter-spacing: 0.3px;
    }
    .tech-strip__logos {
        gap: 88px;
    }
    .tech-strip__logos img {
        max-height: 72px;
        max-width: 124px;
    }
    .tech-strip + .incluso__cta {
        margin-top: 54px;
    }
}

/* === Tour === */
.tour {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}
.tour__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
    grid-auto-flow: dense;
    gap: 8px;
}
.tour__cell {
    background: #eef3f9;
    cursor: pointer;
    display: block;
    transform-style: preserve-3d;
    will-change: transform;
    grid-column: span 1;
    grid-row: span 1;
}
.tour__cell picture {
    display: block;
    width: 100%;
    height: 100%;
}
.tour__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.tour__cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62, 111, 152, 0.85) 0%, rgba(29, 56, 80, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    z-index: 2;
}
.tour__cell::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233e6f98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") no-repeat center / 18px;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    z-index: 3;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}
.tour__cell:hover img {
    transform: scale(1.08);
}
.tour__cell:hover::before {
    opacity: 1;
}
.tour__cell:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.fancybox__caption {
    display: none !important;
}
.tour__cta {
    text-align: center;
    margin-top: 30px;
}

@media (min-width: 450px) {
    .tour__grid {
        grid-auto-rows: 160px;
        gap: 10px;
    }
    .tour__cell::after {
        width: 44px;
        height: 44px;
        background-size: 20px;
    }
    .tour__cta {
        margin-top: 34px;
    }
}
@media (min-width: 768px) {
    .tour__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 200px;
        gap: 12px;
    }
    .tour__cell::after {
        width: 46px;
        height: 46px;
        background-size: 22px;
    }
    .tour__cta {
        margin-top: 38px;
    }
}
@media (min-width: 1024px) {
    .tour__grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-auto-rows: 180px;
        gap: 14px;
    }
    .tour__cell {
        grid-column: span 4;
        grid-row: span 1;
    }
    .tour__cell:nth-child(1) {
        grid-column: span 8;
        grid-row: span 2;
    }
    .tour__cell:nth-child(7) {
        grid-column: 5 / 9;
        grid-row: span 2;
    }
    .tour__cell::after {
        width: 50px;
        height: 50px;
        background-size: 23px;
    }
    .tour__cta {
        margin-top: 42px;
    }
}
@media (min-width: 1320px) {
    .tour__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: 200px;
        gap: 15px;
    }
    .tour__cell {
        grid-column: span 4;
        grid-row: span 1;
    }
    .tour__cell:nth-child(1) {
        grid-column: span 4;
        grid-row: span 2;
    }
    .tour__cell:nth-child(2),
    .tour__cell:nth-child(3),
    .tour__cell:nth-child(4),
    .tour__cell:nth-child(8),
    .tour__cell:nth-child(9) {
        grid-column: span 4;
        grid-row: span 1;
    }
    .tour__cell:nth-child(5),
    .tour__cell:nth-child(6),
    .tour__cell:nth-child(12) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .tour__cell:nth-child(7) {
        grid-column: 9 / 13;
        grid-row: 2 / span 2;
    }
    .tour__cell:nth-child(10),
    .tour__cell:nth-child(11) {
        grid-column: span 3;
        grid-row: span 1;
    }
    .tour__cell::after {
        width: 54px;
        height: 54px;
        background-size: 25px;
    }
    .tour__cta {
        margin-top: 46px;
    }
}
@media (min-width: 1520px) {
    .tour__grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-rows: 210px;
        gap: 16px;
    }
    .tour__cell::after {
        width: 56px;
        height: 56px;
        background-size: 26px;
    }
    .tour__cta {
        margin-top: 50px;
    }
}

/* === Sobre === */
.sobre {
    position: relative;
    background: var(--bg-soft);
    overflow-x: clip;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
}
.sobre__content {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: stretch;
    z-index: 2;
}
.sobre__text {
    max-width: 100%;
}
.sobre__text p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 10px;
}
.sobre__quote {
    position: relative;
    margin-top: 18px;
    padding: 14px 16px;
    background: #fff;
    border-left: 4px solid var(--amarelo);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-deco);
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.3;
}
.sobre__image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
}
.sobre__picture {
    display: block;
    width: 100%;
    height: 100%;
}
.sobre__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 450px) {
    .sobre__text p {
        font-size: 16px;
        margin-bottom: 13px;
    }
    .sobre__quote {
        margin-top: 26px;
        padding: 18px 20px;
        font-size: 19px;
    }
    .sobre__image {
        height: 260px;
        margin-top: 28px;
    }
}
@media (min-width: 768px) {
    .sobre__text p {
        font-size: 16.5px;
        line-height: 1.65;
        margin-bottom: 14px;
    }
    .sobre__quote {
        margin-top: 30px;
        padding: 20px 22px;
        font-size: 21px;
        border-left-width: 5px;
    }
    .sobre__image {
        height: 360px;
        margin-top: 32px;
    }
}
@media (min-width: 1024px) {
    .sobre {
        display: block;
    }
    .sobre__content {
        width: 56%;
        min-height: 460px;
        align-items: center;
    }
    .sobre__text {
        max-width: 560px;
    }
    .sobre__text p {
        font-size: 17px;
    }
    .sobre__quote {
        margin-top: 32px;
        padding: 22px 24px;
        font-size: 22px;
    }
    .sobre__image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 42%;
        height: 100%;
        margin-top: 0;
    }
}
@media (min-width: 1320px) {
    .sobre__content {
        width: 52%;
        min-height: 500px;
    }
    .sobre__text {
        max-width: 600px;
    }
    .sobre__text p {
        font-size: 17.5px;
        line-height: 1.68;
        margin-bottom: 15px;
    }
    .sobre__quote {
        margin-top: 34px;
        padding: 23px 26px;
        font-size: 23px;
    }
    .sobre__image {
        width: 44%;
    }
}
@media (min-width: 1520px) {
    .sobre__content {
        width: 50%;
        min-height: 540px;
    }
    .sobre__text {
        max-width: 620px;
    }
    .sobre__text p {
        font-size: 18px;
        line-height: 1.68;
        margin-bottom: 16px;
    }
    .sobre__quote {
        margin-top: 38px;
        padding: 24px 28px;
        font-size: 24px;
        line-height: 1.28;
    }
    .sobre__image {
        width: 45%;
    }
}

/* === Unidades === */
.unidades {
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}
.unidades::before {
    content: "";
    display: none;
    position: absolute;
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 187, 36, 0.12), transparent 70%);
    pointer-events: none;
}
.unidades::after {
    content: "";
    display: none;
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(94, 162, 218, 0.14), transparent 70%);
    pointer-events: none;
}
.unidades__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    z-index: 1;
}
.unidade {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(29, 56, 80, 0.08);
}
.unidade:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}
.unidade__map {
    position: relative;
    aspect-ratio: 4 / 3;
    height: auto;
    overflow: hidden;
}
.unidade__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.95);
}
.unidade__body {
    position: relative;
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.unidade__title {
    position: relative;
    font-size: 16px;
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.15;
    z-index: 1;
}
.unidade__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1;
}
.unidade__row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.unidade__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--azul-escuro);
    background: transparent;
    border: 1px solid rgba(29, 56, 80, 0.28);
    border-radius: 9px;
}
.unidade__ico svg {
    width: 16px;
    height: 16px;
}
.unidade__lbl {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--amarelo-2);
    margin-bottom: 3px;
}
.unidade__val {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
}
.unidade__val a {
    color: inherit;
    transition: color 0.25s var(--ease-out);
}
.unidade__val a:hover {
    color: var(--azul);
}
.unidade__buttons {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px dashed rgba(29, 56, 80, 0.15);
    z-index: 1;
}
.unidade__buttons .btn {
    width: 100%;
    padding: 11px 16px;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.5px;
    justify-content: center;
}
.unidade__buttons .btn img {
    width: 18px;
    height: 18px;
}

@media (min-width: 450px) {
    .unidades__grid {
        gap: 24px;
    }
    .unidade__body {
        padding: 22px 20px 24px;
        gap: 18px;
    }
    .unidade__title {
        font-size: 20px;
    }
    .unidade__list {
        gap: 16px;
    }
    .unidade__ico {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .unidade__ico svg {
        width: 17px;
        height: 17px;
    }
    .unidade__val {
        font-size: 14px;
    }
    .unidade__buttons .btn {
        font-size: 13px;
        padding: 12px 18px;
    }
}
@media (min-width: 768px) {
    .unidades::before,
    .unidades::after {
        display: block;
    }
    .unidades__grid {
        gap: 28px;
    }
    .unidade__map {
        aspect-ratio: 16 / 9;
    }
    .unidade__body {
        padding: 26px 26px 28px;
        gap: 20px;
    }
    .unidade__title {
        font-size: 22px;
        letter-spacing: -0.2px;
    }
    .unidade__list {
        gap: 18px;
    }
    .unidade__row {
        gap: 14px;
    }
    .unidade__ico {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }
    .unidade__ico svg {
        width: 18px;
        height: 18px;
    }
    .unidade__lbl {
        font-size: 10.5px;
    }
    .unidade__val {
        font-size: 14.5px;
    }
    .unidade__buttons {
        flex-direction: row;
        gap: 10px;
        padding-top: 18px;
    }
    .unidade__buttons .btn {
        flex: 1;
        width: auto;
        font-size: 13.5px;
        padding: 12px 18px;
        letter-spacing: 0.6px;
    }
    .unidade__buttons .btn img {
        width: 19px;
        height: 19px;
    }
}
@media (min-width: 1024px) {
    .unidades__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
    .unidade__map {
        aspect-ratio: auto;
        height: 240px;
    }
    .unidade__body {
        padding: 28px 30px 32px;
        gap: 22px;
    }
    .unidade__title {
        font-size: 22px;
    }
    .unidade__list {
        gap: 20px;
    }
    .unidade__row {
        gap: 16px;
    }
    .unidade__ico {
        width: 40px;
        height: 40px;
    }
    .unidade__ico svg {
        width: 19px;
        height: 19px;
    }
    .unidade__val {
        font-size: 14.5px;
    }
    .unidade__buttons {
        gap: 10px;
        padding-top: 20px;
    }
    .unidade__buttons .btn {
        padding: 13px 19px;
        font-size: 14px;
        letter-spacing: 0.7px;
    }
}
@media (min-width: 1320px) {
    .unidades__grid {
        gap: 34px;
    }
    .unidade__map {
        aspect-ratio: auto;
        height: 250px;
    }
    .unidade__body {
        padding: 32px 36px 36px;
        gap: 24px;
    }
    .unidade__title {
        font-size: 23px;
        letter-spacing: -0.3px;
    }
    .unidade__list {
        gap: 21px;
    }
    .unidade__row {
        gap: 17px;
    }
    .unidade__ico {
        width: 41px;
        height: 41px;
    }
    .unidade__ico svg {
        width: 20px;
        height: 20px;
    }
    .unidade__lbl {
        font-size: 11px;
        letter-spacing: 1.15px;
    }
    .unidade__val {
        font-size: 14.5px;
    }
    .unidade__buttons .btn {
        padding: 13px 20px;
        letter-spacing: 0.75px;
    }
}
@media (min-width: 1520px) {
    .unidades__grid {
        gap: 36px;
    }
    .unidade__map {
        height: 270px;
    }
    .unidade__body {
        padding: 34px 40px 40px;
        gap: 26px;
    }
    .unidade__title {
        font-size: 21px;
        letter-spacing: -0.3px;
        line-height: 1.1;
    }
    .unidade__list {
        gap: 22px;
    }
    .unidade__row {
        gap: 18px;
    }
    .unidade__ico {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .unidade__ico svg {
        width: 20px;
        height: 20px;
    }
    .unidade__lbl {
        font-size: 11px;
        letter-spacing: 1.2px;
        margin-bottom: 4px;
    }
    .unidade__val {
        font-size: 15px;
        line-height: 1.45;
    }
    .unidade__buttons {
        gap: 10px;
        padding-top: 22px;
    }
    .unidade__buttons .btn {
        flex: 1;
        width: auto;
        padding: 13px 20px;
        font-size: 14px;
        letter-spacing: 0.8px;
    }
    .unidade__buttons .btn img {
        width: 20px;
        height: 20px;
    }
}

/* === Contato === */
.contato {
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.contato::before {
    content: "";
    display: none;
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 187, 36, 0.14), transparent 70%);
    pointer-events: none;
}
.contato .section__head {
    align-self: stretch;
    text-align: left;
    margin-bottom: 0;
}
.contato .section__head .sec-lead {
    font-size: 15px;
    max-width: 100%;
    margin-inline: 0;
}
.tour .section__head .sec-lead {
    max-width: 760px;
}
.contato__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    z-index: 1;
}
.cb-card {
    position: relative;
    border-radius: var(--radius-bento);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.cb-form {
    background: #fff;
    padding: 0;
    border: 1px solid rgba(29, 56, 80, 0.06);
    overflow: hidden;
}
.cb-form__header {
    display: flex;
    align-items: center;
    background-color: var(--azul);
    padding: 14px 16px;
}
.cb-form__header-icon-area {
    flex-shrink: 0;
}
.cb-form__header-icon {
    width: 32px;
    fill: #fff;
    margin: 0 12px 0 0;
}
.cb-form__header-title-area {
    flex: 1;
}
.cb-form__header-title {
    color: #fff;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.16;
    margin: 0 0 3px;
}
.cb-form__header-description {
    color: #fff;
    font-family: var(--font-base);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
}
.cb-form__body {
    padding: 18px;
}

@media (min-width: 450px) {
    .contato .section__head .sec-lead {
        font-size: 16px;
    }
    .contato__grid {
        gap: 28px;
    }
    .cb-form__header {
        padding: 16px 20px;
    }
    .cb-form__header-icon {
        width: 36px;
        margin: 0 14px 0 0;
    }
    .cb-form__header-title {
        font-size: 17px;
    }
    .cb-form__header-description {
        font-size: 13px;
    }
    .cb-form__body {
        padding: 22px;
    }
}
@media (min-width: 768px) {
    .contato::before {
        display: block;
    }
    .contato .section__head .sec-lead {
        font-size: 17px;
        max-width: 480px;
    }
    .contato__grid {
        gap: 32px;
    }
    .cb-form__header {
        padding: 18px 24px;
    }
    .cb-form__header-icon {
        width: 40px;
        margin: 0 14px 0 0;
    }
    .cb-form__header-title {
        font-size: 18px;
    }
    .cb-form__header-description {
        font-size: 13.5px;
    }
    .cb-form__body {
        padding: 26px;
    }
}
@media (min-width: 1024px) {
    .contato .section__head {
        align-self: center;
    }
    .contato .section__head .sec-lead {
        font-size: 17.5px;
        max-width: 420px;
    }
    .contato__grid {
        grid-template-columns: 5fr 7fr;
        gap: 40px;
    }
    .cb-form__header {
        padding: 20px 28px;
    }
    .cb-form__header-icon {
        width: 42px;
        margin: 0 15px 0 0;
    }
    .cb-form__header-title {
        font-size: 19px;
    }
    .cb-form__header-description {
        font-size: 13.5px;
    }
    .cb-form__body {
        padding: 28px;
    }
}
@media (min-width: 1320px) {
    .contato .section__head .sec-lead {
        font-size: 18px;
    }
    .contato__grid {
        gap: 50px;
    }
    .cb-form__header {
        padding: 20px 30px;
    }
    .cb-form__header-icon {
        width: 43px;
    }
    .cb-form__header-title {
        font-size: 19.5px;
    }
    .cb-form__header-description {
        font-size: 14px;
        line-height: 1.18;
    }
    .cb-form__body {
        padding: 30px;
    }
}
@media (min-width: 1520px) {
    .contato .section__head .sec-lead {
        font-size: 18px;
        max-width: 100%;
    }
    .contato__grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 60px;
    }
    .cb-form__header {
        padding: 20px 32px;
    }
    .cb-form__header-icon {
        width: 44px;
        margin: 0 16px 0 0;
    }
    .cb-form__header-title {
        font-size: 20px;
        margin: 0 0 4px;
    }
    .cb-form__header-description {
        font-size: 14px;
        line-height: 1.16;
    }
    .cb-form__body {
        padding: 32px;
    }
}

.faq {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 55%, #eaf1f8 100%);
    overflow: hidden;
}
.faq::before,
.faq::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.faq::before {
    top: -120px;
    left: -200px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(62, 111, 152, 0.22), transparent 68%);
    filter: blur(2px);
}
.faq::after {
    right: -180px;
    bottom: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 187, 36, 0.22), transparent 70%);
    filter: blur(4px);
}
.faq .container {
    position: relative;
    z-index: 1;
}
.faq__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 64px;
}
.faq__intro {
    position: sticky;
    top: 120px;
}
.faq .section__head {
    margin-bottom: 0;
}
.faq .section__head .sec-lead {
    max-width: 460px;
    margin-inline: 0;
    font-size: 17px;
}
.faq__aside {
    position: relative;
    margin-top: 36px;
    padding: 30px 30px 28px;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
    border-radius: 26px;
    color: #fff;
    box-shadow: 0 32px 64px -28px rgba(29, 56, 80, 0.6);
    overflow: hidden;
}
.faq__aside-deco {
    display: none;
}
.faq__aside-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--amarelo);
    margin-bottom: 14px;
    padding: 6px 12px;
    background: rgba(255, 187, 36, 0.14);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 187, 36, 0.32);
}
.faq__aside-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.28;
    color: #fff;
    margin: 0 0 10px;
}
.faq__aside-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 22px;
}
.faq__list {
    counter-reset: faq;
    display: grid;
    gap: 16px;
}
.faq__item {
    counter-increment: faq;
    position: relative;
    background: #fff;
    border: 1px solid rgba(29, 56, 80, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 50px -28px rgba(29, 56, 80, 0.4);
    overflow: hidden;
    transition:
        border-color 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out),
        transform 0.35s var(--ease-out),
        background-color 0.35s var(--ease-out);
}
.faq__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--azul-3) 0%, var(--azul) 100%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: 1;
}
.faq__item:hover {
    transform: translateY(-3px);
    border-color: rgba(62, 111, 152, 0.22);
    box-shadow: 0 28px 60px -30px rgba(29, 56, 80, 0.55);
}
.faq__item.is-open {
    border-color: rgba(62, 111, 152, 0.3);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    box-shadow: 0 32px 72px -32px rgba(29, 56, 80, 0.6);
}
.faq__item.is-open::before {
    opacity: 1;
}
.faq__title {
    margin: 0;
}
.faq__question {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 86px;
    padding: 24px 28px 24px 32px;
    color: var(--ink);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.faq__question::before {
    content: counter(faq, decimal-leading-zero);
    flex: 0 0 auto;
    font-size: 13.5px;
    font-weight: 900;
    color: var(--azul);
    letter-spacing: 0.08em;
    padding: 9px 12px;
    background: rgba(62, 111, 152, 0.1);
    border-radius: 10px;
    transition:
        background 0.4s var(--ease-out),
        color 0.4s var(--ease-out),
        transform 0.4s var(--ease-back);
    line-height: 1;
}
.faq__item:hover .faq__question::before {
    background: rgba(62, 111, 152, 0.16);
}
.faq__item.is-open .faq__question::before {
    background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-2) 100%);
    color: var(--ink);
    transform: scale(1.08);
}
.faq__question > span:not(.faq__mark) {
    flex: 1;
    min-width: 0;
}
.faq__mark {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f8fd 0%, #e6eef7 100%);
    border: 1px solid rgba(62, 111, 152, 0.18);
    transition:
        background 0.45s var(--ease-back),
        border-color 0.4s var(--ease-out),
        transform 0.55s var(--ease-back),
        box-shadow 0.4s var(--ease-out);
    box-shadow: 0 4px 12px -4px rgba(62, 111, 152, 0.18);
}
.faq__mark::before,
.faq__mark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--azul);
    transform: translate(-50%, -50%);
    transition:
        transform 0.5s var(--ease-back),
        background-color 0.35s var(--ease-out);
}
.faq__mark::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item:hover .faq__mark {
    border-color: rgba(62, 111, 152, 0.34);
    box-shadow: 0 10px 22px -6px rgba(62, 111, 152, 0.32);
    transform: translateY(-1px);
}
.faq__item.is-open .faq__mark {
    background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-2) 100%);
    border-color: var(--amarelo-2);
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 12px 26px -6px rgba(255, 187, 36, 0.7);
}
.faq__item.is-open .faq__mark::before,
.faq__item.is-open .faq__mark::after {
    background: var(--ink);
}
.faq__item.is-open .faq__mark::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--ease-out);
}
.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}
.faq__answer-inner {
    overflow: hidden;
}
.faq__answer p {
    position: relative;
    margin: 0;
    padding: 4px 32px 30px 86px;
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.72;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.45s var(--ease-out) 0.08s,
        transform 0.45s var(--ease-out) 0.08s;
}
.faq__item.is-open .faq__answer p {
    opacity: 1;
    transform: translateY(0);
}
.faq__answer p::before {
    content: "";
    position: absolute;
    left: 46px;
    top: 10px;
    bottom: 18px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--amarelo) 0%, rgba(255, 187, 36, 0) 100%);
}
.faq__answer p strong {
    color: var(--ink);
    font-weight: 800;
}

@media (max-width: 1023px) {
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .faq__intro {
        position: static;
        display: contents;
    }
    .faq .section__head {
        order: 1;
    }
    .faq__list {
        order: 2;
    }
    .faq__aside {
        order: 3;
        margin-top: 0;
    }
    .faq__question {
        font-size: 17px;
        min-height: 76px;
        padding: 20px 22px 20px 24px;
        gap: 16px;
    }
    .faq__question::before {
        font-size: 12.5px;
        padding: 8px 10px;
    }
    .faq__mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .faq__answer p {
        padding: 4px 24px 24px 64px;
        font-size: 15.5px;
        line-height: 1.65;
    }
    .faq__answer p::before {
        left: 34px;
    }
}
@media (max-width: 560px) {
    .faq__item {
        border-radius: 18px;
    }
    .faq__item::before {
        width: 3px;
    }
    .faq__question {
        font-size: 15.5px;
        padding: 18px 18px 18px 20px;
        min-height: 70px;
        gap: 12px;
    }
    .faq__question::before {
        font-size: 11.5px;
        padding: 7px 9px;
        border-radius: 8px;
        letter-spacing: 0.06em;
    }
    .faq__mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .faq__mark::before,
    .faq__mark::after {
        width: 13px;
    }
    .faq__answer p {
        padding: 2px 20px 22px 56px;
        font-size: 14.5px;
    }
    .faq__answer p::before {
        left: 28px;
    }
    .faq__aside {
        padding: 24px 22px 22px;
        border-radius: 20px;
    }
    .faq__aside-title {
        font-size: 19px;
    }
    .faq__aside-text {
        font-size: 13.5px;
    }
    .faq__aside-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }
}

/* === Modal WhatsApp (#wpp para cookies/privacidade) === */
#wpp.modal {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(19, 33, 31, 0.88);
    padding: 24px;
}
#wpp.modal.is-open {
    display: flex !important;
}
#wpp.modal::before {
    display: none;
}
#wpp .modal-header,
#wpp .modal-body {
    width: min(100%, 500px);
    background: #fff;
    text-align: left;
}
#wpp .modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-small) var(--radius-small) 0 0;
}
#wpp .modal-header .icone {
    display: flex;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--whats);
    color: #fff;
}
#wpp .modal-header .icone svg,
#wpp .modal-header .icone img {
    width: 32px;
    height: 32px;
}
#wpp .modal-header .icone svg path {
    fill: currentColor;
}
#wpp .modal-header h2 {
    font-size: 20px;
    margin: 0 0 4px;
    color: var(--azul-escuro);
}
#wpp .modal-header p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    color: var(--ink-soft);
}
#wpp .modal-body {
    padding: 0 20px 20px;
    border-radius: 0 0 var(--radius-small) var(--radius-small);
}
#wpp .modal-body form > div {
    position: relative;
    margin: 0 0 15px;
}
#wpp .modal-body input,
#wpp .modal-body textarea {
    width: 100%;
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: var(--azul-escuro);
    border: 1px solid rgba(19, 33, 31, 0.18);
    border-radius: 5px;
    padding: 0 15px;
    margin: 0;
    transition: 0.35s var(--ease-out);
}
#wpp .modal-body input {
    height: 45px;
}
#wpp .modal-body textarea {
    height: 150px;
    padding-top: 15px;
}
#wpp .modal-body input:focus,
#wpp .modal-body textarea:focus {
    outline: 0;
    border-color: var(--whats);
}
#wpp .modal-body button {
    display: block;
    width: 100%;
}
.modal-whatsapp-icon {
    display: block;
    width: 32px;
    height: 32px;
}
.botao-whatsapp-modal {
    height: 48px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--whats);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}
.botao-whatsapp-modal:hover {
    background: #038141;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    overflow: auto;
    z-index: 9999;
    background: transparent;
    padding: 0;
    max-width: none;
    box-shadow: none;
}
.modal::before {
    content: "";
    box-sizing: border-box;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin: 0 -0.05em 0 0;
}
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
}
.modal__holder {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 95%;
    vertical-align: middle;
    text-align: left;
    overflow: hidden;
    padding: 32px 0;
}
.modal__box {
    overflow: hidden;
    border-radius: var(--radius-small);
    background-color: #fff;
    box-shadow: var(--shadow-lift);
}
.modal__header {
    display: flex;
    align-items: center;
    background-color: var(--whats);
    padding: 16px 5.5vw;
}
.modal__header-icon-area {
    flex-shrink: 0;
}
.modal__header-icon {
    width: 8vw;
    color: #fff;
    fill: currentColor;
    margin: 0 3vw 0 0;
}
.modal__header-title-area {
    flex: 1;
}
.modal__header-title {
    color: #fff;
    font-family: var(--font-base);
    font-size: 4vw;
    font-weight: 800;
    line-height: 1.16;
    margin: 0 0 4px;
}
.modal__header-description {
    color: #fff;
    font-family: var(--font-base);
    font-size: 2.8vw;
    font-weight: 400;
    line-height: 1.16;
}
.modal__close-area {
    flex-shrink: 0;
}
.modal__close {
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
    width: 4vw;
    height: 4vw;
    margin: 0 0 0 3vw;
    opacity: 0.5;
    transition: 0.5s ease;
    padding: 0;
}
.modal__close:hover {
    opacity: 1;
}
.modal__close:before,
.modal__close:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__body {
    background-color: #fff;
    padding: 5.5vw;
}

/* === Privacy banner === */
#privacy-warning {
    position: fixed !important;
    bottom: 16px !important;
    left: 16px;
    right: 16px;
    z-index: 95;
    background: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 20px 60px -15px rgba(29, 56, 80, 0.35);
    border: 1px solid rgba(29, 56, 80, 0.08);
    max-width: 720px;
    margin: 0 auto;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#privacy-warning .privacy-container {
    width: 100%;
}
#privacy-warning .privacy-container > .row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
#privacy-warning .col-md-10 {
    flex: 1 1 280px;
    min-width: 0;
}
#privacy-warning .col-md-2 {
    flex: 0 0 auto;
}
#privacy-warning span {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
    display: block;
}
#privacy-warning a {
    color: var(--azul);
    font-weight: 700;
    text-decoration: underline;
    word-break: break-word;
}
#privacy-warning #privacy-close {
    background: var(--azul);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}
#privacy-warning #privacy-close:hover {
    background: var(--azul-escuro);
    transform: translateY(-2px);
}

@media (max-width: 560px) {
    #privacy-warning {
        left: 10px;
        right: 10px;
        bottom: 10px !important;
        padding: 14px 16px;
        border-radius: 14px;
    }
    #privacy-warning .privacy-container > .row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    #privacy-warning .col-md-10,
    #privacy-warning .col-md-2 {
        flex: 1 1 auto;
        width: 100%;
    }
    #privacy-warning span {
        font-size: 12.5px;
        line-height: 1.5;
    }
    #privacy-warning #privacy-close {
        width: 100%;
        padding: 12px 18px;
        font-size: 14px;
    }
}
@media (max-width: 360px) {
    #privacy-warning {
        left: 8px;
        right: 8px;
        bottom: 8px !important;
        padding: 12px 14px;
    }
    #privacy-warning span {
        font-size: 12px;
    }
}

/* === WhatsApp fixed === */
.whats-fixo {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 90;
}
.whats-fixo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--whats);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 14px 30px -10px rgba(0, 184, 26, 0.6);
    transition: transform 0.3s var(--ease-out);
}
.whats-fixo a:hover {
    transform: scale(1.08);
}
.whats-fixo svg {
    width: 22px;
    height: 22px;
}
.whats-fixo i {
    display: none;
}
.whats-fixo a::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--whats);
    opacity: 0.4;
    z-index: -1;
    animation: pulseWhats 2s infinite;
}

@media (min-width: 450px) {
    .whats-fixo {
        right: 14px;
        bottom: 14px;
    }
    .whats-fixo a {
        width: 50px;
        height: 50px;
    }
    .whats-fixo svg {
        width: 24px;
        height: 24px;
    }
}
@media (min-width: 768px) {
    .whats-fixo {
        right: 18px;
        bottom: 18px;
    }
    .whats-fixo a {
        width: 54px;
        height: 54px;
    }
    .whats-fixo svg {
        width: 27px;
        height: 27px;
    }
}
@media (min-width: 1024px) {
    .whats-fixo {
        right: 24px;
        bottom: 24px;
    }
    .whats-fixo a {
        width: 60px;
        height: 60px;
    }
    .whats-fixo svg {
        width: 30px;
        height: 30px;
    }
    .whats-fixo a::before {
        inset: -4px;
    }
}

body.legal-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.legal-body .container {
    max-width: 1120px;
}
.legal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(29, 56, 80, 0.08);
    backdrop-filter: blur(18px);
}
.legal-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 18px;
}
.legal-header__logo {
    display: inline-flex;
    align-items: center;
}
.legal-header__logo-img {
    display: block;
    width: 112px;
    height: auto;
}
.legal-header__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(29, 56, 80, 0.12);
    border-radius: 14px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: #fff;
    transition:
        color 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        box-shadow 0.25s var(--ease-out);
}
.legal-header__link:hover {
    color: var(--azul);
    border-color: rgba(62, 111, 152, 0.24);
    box-shadow: 0 12px 28px -18px rgba(29, 56, 80, 0.45);
}
.legal-page {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.legal-hero {
    position: relative;
    padding: 92px 0 44px;
}
.legal-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 111, 152, 0.08), transparent 68%);
    pointer-events: none;
}
.legal-hero::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 187, 36, 0.035), transparent 70%);
    pointer-events: none;
}
.legal-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.legal-hero .sec-title {
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 0;
}
.legal-content {
    position: relative;
    padding: 0 0 110px;
}
.legal-card {
    position: relative;
    padding: 58px 64px;
    background: #fff;
    border: 1px solid rgba(29, 56, 80, 0.08);
    border-radius: var(--radius-bento);
    box-shadow: 0 28px 70px -38px rgba(29, 56, 80, 0.35);
}
.legal-card h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 48px 0 18px;
}
.legal-card h3 {
    font-size: 21px;
    font-weight: 900;
    color: var(--azul-escuro);
    margin: 34px 0 12px;
}
.legal-card p {
    color: var(--ink-soft);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.78;
}
.legal-card p + p {
    margin-top: 18px;
}
.legal-card h2 + h3,
.legal-card h3 + p {
    margin-top: 0;
}

/* === Footer === */
.footer {
    background-color: var(--azul-escuro);
    padding: 18px 0;
}
.footer__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.footer__lgpd-link,
.footer__copyright-title,
.footer__copyright-disclaimer,
.footer__author-text {
    color: #fff;
    font-size: 11px;
}
.footer__lgpd-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__lgpd-link {
    transition: 0.5s ease;
    text-decoration: none;
}
.footer__lgpd-link::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    margin: 0 6px 1px 0;
}
.footer__copyright {
    text-align: center;
}
.footer__copyright-title {
    font-size: 13px;
    font-weight: 900;
    margin: 0 0 4px;
}
.footer__copyright-disclaimer {
    line-height: 1.4;
    display: block;
}
.footer__author {
    text-align: right;
}
.footer__author-text {
    margin: 0;
}
.footer__author-link {
    transition: 0.5s ease;
}
.footer__author-logo {
    display: inline-block;
    width: 44px;
    margin: 0 0 -1px 5px;
}

@media (max-width: 900px) {
    .legal-body .container {
        padding-inline: 28px;
    }
    .legal-hero {
        padding: 72px 0 34px;
    }
    .legal-card {
        padding: 42px;
        border-radius: 24px;
    }
    .legal-card p {
        font-size: 16px;
    }
    .legal-card h2 {
        font-size: 26px;
    }
    .legal-card h3 {
        font-size: 19px;
    }
}
@media (max-width: 560px) {
    .legal-body .container {
        padding-inline: 20px;
    }
    .legal-header__inner {
        gap: 16px;
        padding-block: 14px;
    }
    .legal-header__logo-img {
        width: 92px;
    }
    .legal-header__link {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 11px;
        border-radius: 12px;
    }
    .legal-hero {
        padding: 52px 0 28px;
    }
    .legal-hero .sec-label {
        font-size: 24px;
    }
    .legal-hero .sec-title {
        font-size: 32px;
        line-height: 1.05;
    }
    .legal-content {
        padding-bottom: 72px;
    }
    .legal-card {
        padding: 30px 24px;
        border-radius: 18px;
    }
    .legal-card p {
        font-size: 15px;
        line-height: 1.72;
    }
    .legal-card p + p {
        margin-top: 14px;
    }
    .legal-card h2 {
        font-size: 23px;
        margin-top: 36px;
    }
    .legal-card h3 {
        font-size: 18px;
        margin-top: 28px;
    }
}

/* === Media queries === */
@media (min-width: 640px) {
    .form {
        gap: 8px;
    }
    .form__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .form__field {
        font-size: 12.5px;
        padding: 15px 15px 15px 40px;
    }
    .form__field--select::before {
        top: 13px;
        width: 6px;
        height: 6px;
    }
    .form__input,
    .form__select {
        height: 36px;
    }
    .form__select {
        padding: 0 15px 0 39px;
    }
    .form__icon {
        left: 14px;
        top: 12.5px;
        width: 13px;
    }
    .form__label {
        left: 31px;
    }
    .form__label,
    .form__select {
        font-size: 12.5px;
    }
}
@media (min-width: 1024px) {
    .cb-form__header {
        padding: 24px 36px;
    }
    .cb-form__header-icon {
        width: 50px;
        margin: 0 18px 0 0;
    }
    .cb-form__header-title {
        font-size: 22px;
    }
    .cb-form__header-description {
        font-size: 15px;
    }
    .cb-form__body {
        padding: 36px 36px 40px;
    }
    .footer__lgpd-link:hover,
    .footer__author-link:hover {
        opacity: 0.64;
    }
}
@media (min-width: 1320px) {
    .footer {
        padding: 24px 0;
    }
    .footer__container {
        flex-direction: row;
        gap: 0;
    }
    .footer__lgpd-area {
        order: 1;
    }
    .footer__copyright {
        order: 2;
        width: 56%;
    }
    .footer__author {
        order: 3;
    }
    .footer__copyright-title {
        font-size: 14px;
        margin: 0 0 6px;
    }
    .footer__lgpd-link,
    .footer__copyright-title,
    .footer__copyright-disclaimer,
    .footer__author-text {
        font-size: 13px;
    }
    .footer__lgpd-list {
        display: block;
    }
    .footer__lgpd-link::before {
        width: 4px;
        height: 4px;
        margin: 0 10px 1px 0;
    }
    .footer__author-logo {
        width: 48px;
    }
}
@media (min-width: 1560px) {
    .form {
        gap: 12px;
    }
    .form__row {
        gap: 12px;
    }
    .form__field {
        font-size: 14px;
        padding: 15px 15px 15px 45px;
    }
    .form__field--select::before {
        top: 16px;
        right: 16px;
        width: 7px;
        height: 7px;
    }
    .form__input,
    .form__select {
        height: 42px;
    }
    .form__select {
        padding: 0 15px 0 44px;
    }
    .form__textarea {
        height: 112px;
    }
    .form__icon {
        left: 16px;
        top: 14.5px;
        width: 14px;
    }
    .form__label {
        top: 13px;
        left: 36px;
    }
    .form__label,
    .form__select {
        font-size: 14px;
    }
    .form__field:focus ~ .form__label,
    .form__field.valid ~ .form__label {
        transform: scale(0.78) translate(4px, -26px);
    }
    .cb-form__header {
        padding: 28px 44px;
    }
    .cb-form__header-icon {
        width: 56px;
        margin: 0 20px 0 0;
    }
    .cb-form__header-title {
        font-size: 26px;
    }
    .cb-form__header-description {
        font-size: 16px;
    }
    .cb-form__body {
        padding: 44px 44px 48px;
    }
    .footer {
        padding: 32px 0;
    }
    .footer__copyright-title {
        font-size: 16px;
        margin: 0 0 8px;
    }
    .footer__lgpd-link,
    .footer__copyright-title,
    .footer__copyright-disclaimer,
    .footer__author-text {
        font-size: 14px;
    }
    .footer__lgpd-link::before {
        width: 5px;
        height: 5px;
        margin: 0 10px 1px 0;
    }
    .footer__author-logo {
        width: 60px;
    }
    .modal__holder {
        max-width: 580px;
    }
    .modal__header {
        padding: 24px 36px;
    }
    .modal__header-icon {
        width: 50px;
        margin: 0 18px 0 0;
    }
    .modal__header-title {
        font-size: 23px;
        margin: 0 0 6px;
    }
    .modal__header-description {
        font-size: 16px;
    }
    .modal__close {
        width: 22px;
        height: 22px;
        margin: 0 0 0 18px;
    }
    .modal__body {
        padding: 36px;
    }
}
@media (min-width: 450px) {
    .modal__holder {
        max-width: 420px;
    }
    .modal__header {
        padding: 18px 24px;
    }
    .modal__header-icon {
        width: 36px;
        margin: 0 14px 0 0;
    }
    .modal__header-title {
        font-size: 18px;
    }
    .modal__header-description {
        font-size: 12.7px;
    }
    .modal__close {
        width: 16px;
        height: 16px;
        margin: 0 0 0 14px;
    }
    .modal__body {
        padding: 24px;
    }
}
@media (min-width: 768px) {
    .modal__holder {
        max-width: 580px;
    }
    .modal__header {
        padding: 20px 26px;
    }
    .modal__body {
        padding: 26px;
    }
}
@media (max-width: 1320px) {
    .str-div {
        height: 100px;
    }
}
@media (max-width: 1024px) {
    .str-div {
        height: 80px;
    }
}
@media (max-width: 768px) {
    .str-div {
        height: 56px;
    }
    .str-div__line {
        stroke-width: 5px;
    }
}
.contraturno {
    position: relative;
    background: linear-gradient(0deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    padding-top: var(--section-py-top);
    padding-bottom: var(--section-py-bot);
    overflow: hidden;
}
.contraturno__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.contraturno__deco svg {
    position: absolute;
    opacity: 0.08;
}
.contraturno__deco svg:nth-child(1) {
    top: 60px;
    left: 5%;
    width: 70px;
    height: 70px;
    color: var(--amarelo);
}
.contraturno__deco svg:nth-child(2) {
    top: 40%;
    right: 6%;
    width: 90px;
    height: 90px;
    color: var(--ingles);
}
.contraturno__deco svg:nth-child(3) {
    bottom: 60px;
    left: 42%;
    width: 60px;
    height: 60px;
    color: var(--ciencia);
}
.contraturno .container {
    position: relative;
    z-index: 1;
}
.contraturno__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
}
.ctr-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-bento);
    padding: 28px 26px 30px;
    box-shadow: 0 6px 22px -14px rgba(29, 56, 80, 0.18);
    overflow: hidden;
    border-top: 6px solid var(--azul);
    transition:
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}
.ctr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px -18px rgba(29, 56, 80, 0.25);
}
.ctr-card--ped {
    border-top-color: var(--maker);
}
.ctr-card--art {
    border-top-color: var(--multimidia);
}
.ctr-card--esp {
    border-top-color: var(--ciencia);
}
.ctr-card__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    z-index: 2;
}
.ctr-card__num {
    font-family: var(--font-deco);
    font-size: 46px;
    line-height: 1;
    color: var(--amarelo);
    flex-shrink: 0;
}
.ctr-card--ped .ctr-card__num {
    color: var(--maker);
}
.ctr-card--art .ctr-card__num {
    color: var(--multimidia);
}
.ctr-card--esp .ctr-card__num {
    color: var(--ciencia);
}
.ctr-card__title {
    flex: 1;
    min-width: 0;
}
.ctr-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 4px;
}
.ctr-card__title h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}
.ctr-card__media {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 22px;
    aspect-ratio: 16 / 10;
}
.ctr-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out);
}
.ctr-card:hover .ctr-card__media img {
    transform: scale(1.04);
}
.ctr-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}
.ctr-card__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-small);
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    transition:
        background 0.3s var(--ease-out),
        transform 0.3s var(--ease-out);
}
.ctr-card--ped .ctr-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ctr-card--ped .ctr-card__list li {
    background: rgba(54, 104, 145, 0.08);
    margin-bottom: 0;
}
.ctr-card--ped .ctr-card__list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
.ctr-card--art .ctr-card__list li {
    background: rgba(242, 133, 29, 0.1);
}
.ctr-card--esp .ctr-card__list li {
    background: rgba(76, 175, 80, 0.1);
}
.ctr-card__list li:last-child {
    margin-bottom: 0;
}
.ctr-card--ped .ctr-card__list li:hover {
    background: rgba(54, 104, 145, 0.16);
    transform: translateX(4px);
}
.ctr-card--art .ctr-card__list li:hover {
    background: rgba(242, 133, 29, 0.2);
    transform: translateX(4px);
}
.ctr-card--esp .ctr-card__list li:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateX(4px);
}
.ctr-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--amarelo);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(255, 187, 36, 0.18);
}
.ctr-card--ped .ctr-bullet {
    background: var(--maker);
    box-shadow: 0 0 0 4px rgba(54, 104, 145, 0.18);
}
.ctr-card--art .ctr-bullet {
    background: var(--multimidia);
    box-shadow: 0 0 0 4px rgba(242, 133, 29, 0.2);
}
.ctr-card--esp .ctr-bullet {
    background: var(--ciencia);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}
.ctr-card__shape {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}
.ctr-card--ped .ctr-card__shape {
    color: var(--maker);
}
.ctr-card--art .ctr-card__shape {
    color: var(--multimidia);
}
.ctr-card--esp .ctr-card__shape {
    color: var(--ciencia);
}
.ctr-card__shape svg {
    width: 100%;
    height: 100%;
}
.contraturno__cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
@media (min-width: 768px) {
    .contraturno__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        margin-top: 44px;
    }
    .ctr-card {
        padding: 32px 30px 34px;
    }
    .ctr-card__title h3 {
        font-size: 20px;
    }
}
@media (min-width: 1024px) {
    .contraturno__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .ctr-card {
        padding: 36px 32px 38px;
    }
    .ctr-card__num {
        font-size: 54px;
    }
    .ctr-card__title h3 {
        font-size: 21px;
    }
    .ctr-card__list li {
        font-size: 15.5px;
        padding: 13px 16px;
    }
}
@media (min-width: 1280px) {
    .contraturno__grid {
        gap: 16px;
    }
    .ctr-card__list li {
        font-size: 13.5px;
        line-height: 1.2;
    }
}
