/* =========================================================================
   GRUPO THERMAS — Design System (padrão Termas dos Laranjais)
   Cores oficiais: laranja #f76707, azul marinho #013e7f, ciano #2abdef
   Tipografia: Fredoka One (display) + Montserrat (body)
   ========================================================================= */

:root {
    /* Cores Termas */
    --c-deep: #013e7f;       /* azul marinho */
    --c-blue: #013e7f;
    --c-blue-2: #005a9c;
    --c-sky: #2abdef;        /* ciano */
    --c-orange: #f76707;     /* laranja Termas */
    --c-orange-2: #e85904;
    --c-yellow: #f4901e;     /* laranja claro / Central de Informações */
    --c-white: #ffffff;

    /* Cores dos cards de categoria (padrão Termas) */
    --c-radical: #e81717;     /* vermelho */
    --c-kids: #f4901e;        /* laranja */
    --c-relax: #02ba5b;       /* verde */
    --c-familia: #2abdef;     /* ciano */

    /* Neutros */
    --c-cream: #f5f5f5;
    --c-sand: #fdf6ec;
    --c-text: #0e1f33;
    --c-text-soft: #595959;
    --c-text-mute: #868e96;
    --c-line: rgba(14, 31, 51, 0.1);

    /* Tipografia */
    --f-display: "Fredoka", system-ui, sans-serif;
    --f-sub: "Fredoka", system-ui, sans-serif;
    --f-body: "Montserrat", system-ui, sans-serif;

    /* Espaçamento (escala rem) */
    --s-1: 0.25rem;
    --s-2: 0.5rem;
    --s-3: 0.75rem;
    --s-4: 1rem;
    --s-5: 1.5rem;
    --s-6: 2rem;
    --s-7: 3rem;
    --s-8: 4rem;
    --s-9: 6rem;
    --s-10: 8rem;

    /* Layout */
    --container: 1280px;
    --gutter: clamp(1rem, 3vw, 2rem);
    --header-h: 90px;
    --radius-sm: 0.4rem;
    --radius: 0.8rem;
    --radius-lg: 1.2rem;
    --c-shadow: 0 0.4rem 1.6rem rgba(1, 62, 127, 0.08);
    --c-shadow-lg: 0 1.2rem 3.2rem rgba(1, 62, 127, 0.12);
    --c-turquoise: #1abc9c;

    /* Animações */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 200ms;
    --t-med: 400ms;
    --t-slow: 800ms;
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* Truque do Termas: font-size do body escala rem global */
    font-size: 10px;
}

@media (max-width: 1430px) {
    html { font-size: 9px; }
}
@media (max-width: 1199px) {
    html { font-size: 8.5px; }
}
@media (max-width: 991px) {
    html { font-size: 8px; }
}
@media (max-width: 767px) {
    html { font-size: 10px; }
}

body {
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.5;
    color: var(--c-text);
    background: var(--c-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { max-width: 100%; display: block; }
img { -webkit-user-drag: none; }

/* SVG genéricos — quando não tem width/height explícito, seguem o font-size */
svg:not([width]):not([height]) {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--c-orange); color: var(--c-white); }

/* -------- UTILITÁRIOS -------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--f-sub);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 4rem;
    height: 0.2rem;
    background: var(--c-orange);
}

.section-eyebrow--light { color: var(--c-deep); }

.section-title {
    font-family: var(--f-display);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    line-height: 1.1;
    color: var(--c-deep);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-family: var(--f-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--c-text-soft);
    line-height: 1.6;
    max-width: 720px;
}

.section-header {
    margin-bottom: 4rem;
}
.section-header--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}
.section-header--center .section-eyebrow { justify-content: center; }

.section-eyebrow-line {
    display: inline-block;
    width: 4rem;
    height: 0.2rem;
    background: var(--c-orange);
    flex-shrink: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--c-sky) 0%, var(--c-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.4rem 0.6rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-family: var(--f-body);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-white);
}

.hero__eyebrow-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-orange);
    flex-shrink: 0;
}

.hero__scroll-line {
    display: block;
    width: 2px;
    height: 4rem;
    margin: 0 auto 0.75rem;
    background: linear-gradient(180deg, transparent, var(--c-white));
    border-radius: 2px;
}

.hero__scroll-text {
    display: block;
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(1, 62, 127, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.bg-cream { background: var(--c-cream); }
.bg-blue-deep { background: var(--c-deep); }
.bg-orange { background: var(--c-orange); }
.bg-white { background: var(--c-white); }

/* -------- BOTÕES (PADRÃO TERMAS — pill) -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 3rem;
    font-family: var(--f-sub);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 5rem;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    border: 0.2rem solid transparent;
    background-color: transparent;
    text-decoration: none !important;
    outline: 0 !important;
}

.btn--primary {
    background-color: var(--c-orange);
    color: var(--c-white);
    border-color: var(--c-orange);
    box-shadow: 0 0.8rem 1.5rem rgba(247, 103, 7, 0.3);
}
.btn--primary:hover {
    background-color: var(--c-white);
    color: var(--c-orange);
    border-color: var(--c-orange);
}

.btn--ghost {
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
    background-color: var(--c-white);
    color: var(--c-deep);
    border-color: var(--c-white);
}

.btn--border-orange {
    color: var(--c-orange);
    border-color: var(--c-orange);
    background-color: transparent;
}
.btn--border-orange:hover {
    background-color: var(--c-orange);
    color: var(--c-white);
}

.btn--border-white {
    color: var(--c-white);
    border-color: var(--c-white);
}
.btn--border-white:hover {
    background-color: var(--c-white);
    color: var(--c-deep);
}

.btn--border-deep {
    color: var(--c-deep);
    border-color: var(--c-deep);
}
.btn--border-deep:hover {
    background-color: var(--c-deep);
    color: var(--c-white);
}

.btn--sm {
    padding: 1rem 2rem;
    font-size: 1.3rem;
}

.btn svg { transition: transform var(--t-med) var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--c-orange);
    color: var(--c-white);
    border-radius: 0.5rem;
    z-index: 9999;
    transition: top var(--t-med) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* -------- REVEAL ON SCROLL -------- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade,
.reveal-scale {
    opacity: 0;
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}
.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.92); }
.reveal-fade { transform: none; }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-fade.is-visible,
.reveal-scale.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.no-js .reveal-up, .no-js .reveal-left, .no-js .reveal-right, .no-js .reveal-fade, .no-js .reveal-scale,
.js .is-fallback {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-left, .reveal-right, .reveal-fade, .reveal-scale {
        opacity: 1; transform: none; transition: none;
    }
    * { animation-duration: 0.01ms !important; }
}

/* -------- HEADER (PADRÃO TERMAS — flutuante branco) -------- */
.header {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0.5rem;
    box-shadow: 0 0.4rem 2rem rgba(1, 62, 127, 0.08);
    transition: top var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

.header.is-scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}

.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo img {
    height: 8rem;
    width: auto;
    transition: transform var(--t-med) var(--ease);
}

.header__logo:hover img { transform: scale(1.04); }

.nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--f-sub);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-deep);
    border-radius: 5rem;
    transition: color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

.nav__link:hover { color: var(--c-orange); }

.nav__link.is-active { color: var(--c-orange); }

.nav__link--cta {
    background-color: var(--c-orange);
    color: var(--c-white);
    margin-left: 1rem;
    transition: all 0.3s var(--ease);
}
.nav__link--cta:hover {
    background-color: var(--c-white);
    color: var(--c-orange);
}

.nav__item {
    position: relative;
}

.nav__link--has-children svg {
    transition: transform 0.3s var(--ease);
}

.nav__item:hover .nav__link--has-children svg {
    transform: rotate(180deg);
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    min-width: 24rem;
    background: var(--c-white);
    border-radius: 0.8rem;
    padding: 0.8rem;
    box-shadow: 0 1.2rem 3rem rgba(1, 62, 127, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-family: var(--f-sub);
    font-size: 1.5rem;
    color: var(--c-deep);
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
    text-transform: none;
    letter-spacing: 0;
}
.nav__submenu a:hover {
    background: var(--c-cream);
    color: var(--c-orange);
}

.hamburger {
    display: none;
    width: 4.4rem;
    height: 4.4rem;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    background: var(--c-orange);
}

.hamburger span {
    display: block;
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    height: 0.2rem;
    background: var(--c-white);
    border-radius: 0.2rem;
    transition: transform var(--t-med) var(--ease),
                opacity var(--t-med) var(--ease),
                top var(--t-med) var(--ease);
}

.hamburger span:nth-child(1) { top: 1.6rem; }
.hamburger span:nth-child(2) { top: 2.1rem; }
.hamburger span:nth-child(3) { top: 2.6rem; }

.hamburger.is-active { background: var(--c-orange); }
.hamburger.is-active span { background: var(--c-white); }
.hamburger.is-active span:nth-child(1) { top: 2.1rem; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 2.1rem; transform: rotate(-45deg); }

@media (max-width: 960px) {
    .hamburger { display: block; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(380px, 85vw);
        height: 100vh;
        height: 100svh;
        background: var(--c-deep);
        transform: translateX(100%);
        transition: transform var(--t-med) var(--ease);
        padding: 10rem 2rem 2rem;
        box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .nav__link {
        padding: 1.2rem 1.5rem;
        font-size: 1.6rem;
        color: var(--c-white);
        border-radius: 0.5rem;
    }
    .nav__link.is-active { color: var(--c-yellow); }
    .nav__link--cta { margin: 1rem 0 0; text-align: center; }

    .nav__submenu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--t-med) var(--ease);
        border-radius: 0.5rem;
        box-shadow: none;
    }
    .nav__item.is-open .nav__submenu { max-height: 50rem; }
    .nav__submenu a { color: var(--c-white); padding: 0.8rem 1.2rem; }
    .nav__submenu a:hover { color: var(--c-yellow); background: transparent; }
}

/* -------- HERO (padrão Termas — vídeo + ondas SVG) -------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14rem 0 6rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    will-change: transform;
    background-color: var(--c-deep);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        rgba(0, 0, 0, 0.5),
        url("../assets/termas-ref/video-filter.png") repeat;
    background-blend-mode: normal;
}

.hero__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-family: var(--f-display);
    font-size: clamp(4rem, 7vw, 6.5rem);
    line-height: 1.1;
    color: var(--c-white);
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.3);
}

.hero__title-accent {
    display: block;
    color: var(--c-yellow);
}

.hero__lede {
    font-size: 1.6rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero__lede strong { color: var(--c-white); font-weight: 600; }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero__scroll {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: arrowDown 1.2s ease-out infinite;
}

.hero__scroll svg { width: 2.4rem; height: auto; fill: var(--c-white); }

@keyframes arrowDown {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 1.2rem); opacity: 0.3; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

/* Ondas SVG no topo do hero (padrão Termas — duas ondas) */
.hero__waves {
    position: absolute;
    top: -16.5rem;
    left: 0;
    right: 0;
    height: 30rem;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
    overflow: hidden;
    display: none;
}

@media (min-width: 1200px) {
    .hero__waves { display: block; }
}

.hero__waves svg {
    width: 200%;
    height: 100%;
    display: block;
}

.hero__wave {
    animation: moveForever 12s linear infinite;
}

.hero__wave--2 {
    animation: moveForever 15s linear infinite -5s;
    margin-top: -1rem;
}

@keyframes moveForever {
    0% { transform: translate(-85rem, 0); }
    100% { transform: translate(0, 0); }
}

/* -------- FOOTER (padrão Termas — denso, institucional) -------- */
.footer {
    background: var(--c-deep);
    color: var(--c-white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    /* Mini onda no topo do footer */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: url("../assets/termas-ref/ondas.png") repeat-x center bottom;
    background-size: 60rem auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.footer__brand { max-width: 360px; }

.footer__logo {
    height: 8rem;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.3rem;
    font-weight: 300;
}

.footer__col h4 {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    font-weight: 300;
    padding: 0.4rem 0;
    transition: color 0.3s, padding-left 0.3s;
}

.footer__col a:hover {
    color: var(--c-yellow);
    padding-left: 0.5rem;
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-white);
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.footer__socials a:hover {
    background: var(--c-orange);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer__bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.footer__top-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: var(--c-orange);
    color: var(--c-white);
    transition: background 0.3s, transform 0.3s;
}
.footer__top-link:hover {
    background: var(--c-orange-2);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer__brand { grid-column: 1 / -1; max-width: none; }
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
@media (max-width: 360px) {
    .footer__top { grid-template-columns: 1fr; }
}

/* -------- HELPERS -------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* -------- MOBILE GLOBAL -------- */
@media (max-width: 960px) {
    .header {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .header__inner {
        padding: 1rem var(--gutter);
        gap: 1rem;
    }

    .header__logo img {
        height: 4.8rem;
    }

    .hero {
        padding: 12rem 0 4.5rem;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(2.6rem, 9vw, 4.2rem);
        margin-bottom: 1.5rem;
    }

    .hero__lede {
        font-size: clamp(1.35rem, 4vw, 1.6rem);
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 36rem;
        margin: 0 auto;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .btn {
        white-space: normal;
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
        text-align: center;
    }

    .section-eyebrow {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .section-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .section-subtitle {
        font-size: clamp(1.25rem, 3.8vw, 1.4rem);
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .footer__logo {
        height: 5.5rem;
    }

    .footer {
        padding: 5rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .header__inner {
        padding: 0.85rem 1.25rem;
    }

    .header__logo img {
        height: 4rem;
    }

    .hamburger {
        width: 4rem;
        height: 4rem;
    }

    .hero {
        padding: 11rem 0 3.5rem;
    }

    .hero__scroll {
        display: none;
    }

    .btn {
        padding: 1.1rem 1.5rem;
        font-size: 1.3rem;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 360px) {
    .header__logo img {
        height: 3.6rem;
    }

    .hero__title {
        font-size: clamp(2.2rem, 11vw, 3rem);
        letter-spacing: 0.02em;
    }
}

@media (max-width: 960px) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}