/* ==========================================================
   AQN-WEB 2.0
   mainresponsive.css
   Responsive refinements
   ========================================================== */


/* ==========================================================
   01. DESKTOP MEDIO / LAPTOP
   1200px y menos
   ========================================================== */

@media (max-width: 1200px) {

    :root {
        --container: 1080px;
    }

    .section {
        padding-left: 26px;
        padding-right: 26px;
    }

    .header__inner {
        padding-left: 26px;
        padding-right: 26px;
    }

    .hero {
        padding-left: 26px;
        padding-right: 26px;
    }

    .hero__inner {
        gap: 70px;
    }

    .hero__brand-logo {
        max-width: 500px;
    }

    .hero__title {
        font-size: clamp(3rem, 5vw, 4.9rem);
    }

    .nav__links {
        gap: 34px;
    }

    .value-item {
        padding-left: 24px;
        padding-right: 24px;
    }

    .section__inner--split {
        gap: 70px;
    }

    .products-showcase {
        gap: 44px;
    }

    .contact-layout {
        gap: 80px;
    }

    .footer__inner {
        gap: 48px;
    }
}



/* ==========================================================
   02. TABLET HORIZONTAL / DESKTOP PEQUEÑO
   1024px y menos
   ========================================================== */

@media (max-width: 1024px) {

    :root {
        --header-height: 82px;
    }

    .section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .header__inner {
        height: var(--header-height);
    }

    .header--scrolled .header__inner {
        height: 70px;
    }

    .header__logo-img {
        height: 52px;
    }

    .header--scrolled .header__logo-img {
        height: 44px;
    }

    .nav__links {
        gap: 25px;
    }

    .nav__link {
        font-size: 0.67rem;
        letter-spacing: 0.13em;
    }

    .nav__link--contact {
        padding: 10px 15px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top:
            calc(var(--header-height) + 80px);

        padding-bottom: 105px;
    }

    .hero__inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.9fr);

        gap: 55px;
    }

    .hero__brand-logo {
        max-width: 450px;
    }

    .hero__title {
        font-size: clamp(2.9rem, 5vw, 4.4rem);
    }

    .hero__subtitle {
        font-size: 1.05rem;
    }

    .hero__scroll {
        bottom: 26px;
    }


    /* VALUES */

    .value-strip__inner {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .value-item {
        min-height: 155px;
    }

    .value-item:nth-child(2)::after {
        display: none;
    }

    .value-item:nth-child(1),
    .value-item:nth-child(2) {
        border-bottom:
            1px solid var(--border-light);
    }


    /* GENERIC SPLIT */

    .section__inner--split {
        gap: 55px;
    }

    .section__title {
        font-size: clamp(2.5rem, 5vw, 3.8rem);
    }


    /* MEDIA */

    .media-card {
        min-height: 500px;
    }

    .media-card--sustainability {
        min-height: 540px;
    }


    /* PRODUCTS */

    .products-showcase {
        gap: 26px;
    }

    .product-card__visual {
        height: 385px;
    }

    .product-card--5 .product-card__image {
        max-height: 285px;
    }

    .product-card--10 .product-card__image {
        max-height: 330px;
    }

    .product-card--20 .product-card__image {
        max-height: 370px;
    }


    /* CONTACT */

    .contact-layout {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(0, 1fr);

        gap: 55px;
    }


    /* FOOTER */

    .footer__inner {
        grid-template-columns:
            1.2fr 0.8fr 1fr 0.75fr;

        gap: 34px;
    }
}



/* ==========================================================
   03. TABLET VERTICAL / MOBILE GRANDE
   900px y menos
   ========================================================== */

@media (max-width: 900px) {

    :root {
        --header-height: 78px;
    }

    html {
        scroll-padding-top: 82px;
    }


    /* HEADER / MOBILE MENU */

    .header__inner {
        padding-left: 22px;
        padding-right: 22px;
    }

    .header__nav {
        position: fixed;
        inset: 0;

        z-index: 1100;

        display: flex;

        width: 100%;
        height: 100vh;
        height: 100svh;

        padding: 24px;

        background:
            rgba(6, 24, 42, 0.985);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;

        transform: translateX(100%);

        transition:
            opacity 0.36s ease,
            visibility 0.36s ease,
            transform 0.5s var(--ease-premium);
    }

    .header__nav.header__nav--mobile {
        opacity: 1;
        visibility: visible;

        transform: translateX(0);
    }

    .nav__mobile-header {
        position: absolute;

        top: 24px;
        left: 24px;
        right: 24px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__mobile-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav__mobile-logo-img {
        width: auto;
        height: 74px;
    }

    .nav__mobile-close {
        position: absolute;
        top: 4px;
        right: 0;

        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #ffffff;

        background:
            rgba(255, 255, 255, 0.06);

        border:
            1px solid rgba(255, 255, 255, 0.09);

        border-radius: 50%;

        cursor: pointer;

        font-size: 1rem;
    }

    .nav__links {
        width: 100%;

        margin: auto;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 26px;
    }

    .nav__link {
        padding: 9px 0;

        font-size: 0.83rem;
        letter-spacing: 0.18em;
    }

    .nav__link--contact {
        margin-top: 8px;

        padding: 14px 24px;
    }

    .header__toggle {
        position: relative;
        z-index: 1200;

        width: 38px;
        height: 38px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        background: transparent;

        cursor: pointer;
    }

    .header__toggle span {
        width: 22px;
        height: 1.5px;

        display: block;

        background: #ffffff;

        border-radius: var(--radius-pill);

        transition:
            transform var(--transition-base),
            opacity var(--transition-fast);
    }

    .header__toggle--active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* HERO */

    .hero {
        min-height: auto;

        padding:
            calc(var(--header-height) + 65px)
            24px
            95px;
    }

    .hero::before {
        width: 60%;
    }

    .hero__inner {
        grid-template-columns: 1fr;

        gap: 48px;

        text-align: center;
    }

    .hero__visual {
        align-items: center;
    }

    .hero__brand-logo {
        max-width: 430px;

        margin: 0 auto;
    }

    .hero__visual-line {
        width: 54%;
        margin-top: 28px;
    }

    .hero__content {
        max-width: 650px;
        margin: 0 auto;
    }

    .hero__eyebrow {
        margin-bottom: 18px;
    }

    .hero__title {
        font-size:
            clamp(3rem, 8vw, 4.5rem);
    }

    .hero__subtitle {
        max-width: 560px;

        margin-right: auto;
        margin-left: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__origin {
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }


    /* VALUES */

    .value-strip {
        padding-left: 24px;
        padding-right: 24px;
    }

    .value-item {
        padding: 32px 22px;
    }


    /* SPLIT SECTIONS */

    .section__inner--split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .section__inner--reverse
    .section__content {
        order: 1;
    }

    .section__inner--reverse
    .section__visual {
        order: 2;
    }

    .section__content,
    .contact-content {
        max-width: 720px;
    }

    .section__visual {
        width: 100%;
    }

    .section__title {
        font-size:
            clamp(2.8rem, 7vw, 4rem);
    }


        /* ABOUT */

    .section--about {
        padding-bottom: 58px;
    }

    .media-card {
        max-width: 720px;

        min-height: 480px;
    }

    .media-card--about
    .media-card__photo {
        min-height: 450px;
    }


    /* PRODUCTS */

    .section--products {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .products-showcase {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 16px;

        margin-top: 60px;
    }

    .product-card__visual {
        height: 350px;

        padding-left: 5px;
        padding-right: 5px;
    }

    .product-card--5 .product-card__image {
        max-height: 260px;
    }

    .product-card--10 .product-card__image {
        max-height: 300px;
    }

    .product-card--20 .product-card__image {
        max-height: 340px;
    }

    .product-card__content {
        max-width: 240px;
    }

    .product-card__title {
        font-size: 0.96rem;
    }

    .product-card__text {
        font-size: 0.82rem;
    }

    .products-cta {
        margin-top: 65px;
    }


        /* SUSTAINABILITY */

    .section--sustainability
    .section__inner {
        gap: 65px;
    }

    .media-card--sustainability {
        max-width: 720px;
        min-height: 500px;
    }


    /* SOCIAL */

    .social-heading {
        align-items: flex-start;

        gap: 30px;

        margin-bottom: 42px;
    }

    .social-heading__title {
        font-size:
            clamp(2.7rem, 7vw, 3.8rem);
    }

    .social-grid {
        gap: 18px;
    }


    /* CONTACT */
    .contact-layout {
        gap: 60px;
    }

    .contact-card {
        max-width: 720px;
    }


    /* FOOTER */

    .footer__inner {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 48px 60px;
    }

    .footer__brand {
        max-width: 330px;
    }
}



/* ==========================================================
   04. MOBILE
   768px y menos
   ========================================================== */

@media (max-width: 768px) {

    :root {
        --header-height: 74px;
    }

    .section {
        padding:
            82px 20px;
    }


    /* HEADER */

    .header__inner {
        padding:
            0 18px;
    }

    .header__logo-img {
        height: 47px;
    }

    .header--scrolled
    .header__logo-img {
        height: 42px;
    }

    .header--scrolled
    .header__inner {
        height: 68px;
    }


    /* HERO */

    .hero {
        padding:
            calc(var(--header-height) + 58px)
            20px
            80px;
    }

    .hero__inner {
        gap: 36px;
    }

    .hero__brand-logo {
        max-width: 360px;
        width: 86%;
    }

    .hero__visual-line {
        width: 60%;
        margin-top: 22px;
    }

    .hero__eyebrow {
        font-size: 0.66rem;
    }

    .hero__title {
        margin-bottom: 22px;

        font-size:
            clamp(2.55rem, 10vw, 3.8rem);

        line-height: 1;
    }

    .hero__subtitle {
        margin-bottom: 30px;

        font-size: 1rem;
        line-height: 1.68;
    }

    .hero__actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 11px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__origin {
        margin-top: 32px;
    }

    .hero__origin-line {
        width: 30px;
    }

    .hero__origin p {
        font-size: 0.65rem;
    }


    /* VALUES */

    .value-strip {
        padding: 0 20px;
    }

    .value-strip__inner {
        grid-template-columns: 1fr;
    }

    .value-item {
        min-height: auto;

        padding: 26px 4px;

        gap: 17px;
    }

    .value-item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .value-item:nth-child(1),
    .value-item:nth-child(2) {
        border-bottom: none;
    }

    .value-item__icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .value-item__title {
        font-size: 0.92rem;
    }

    .value-item__text {
        max-width: 410px;

        font-size: 0.82rem;
    }


    /* TYPOGRAPHY */

    .section__eyebrow {
        margin-bottom: 15px;

        font-size: 0.65rem;
    }

    .section__title {
        margin-bottom: 21px;

        font-size:
            clamp(2.35rem, 9vw, 3.45rem);

        line-height: 1.04;
    }

    .section__lead {
        margin-bottom: 20px;

        font-size: 1rem;
        line-height: 1.65;
    }

    .section__content > p:not(
        .section__eyebrow,
        .section__lead
    ) {
        font-size: 0.93rem;
        line-height: 1.72;
    }


        /* ABOUT */

    .section__signature {
        margin-top: 28px;
    }

    .section__signature p {
        font-size: 0.66rem;
    }

    .media-card {
        min-height: 390px;

        border-radius: 24px;
    }

    .media-card--about {
        width: calc(100% + 16px);
        margin-left: -8px;
    }

    .media-card--about
    .media-card__photo {
        min-height: 430px;

        border-radius: 4px;
    }

    .media-card__caption {
        margin-top: 15px;
        padding: 0 2px;
    }


    .media-card__caption p {
        gap: 8px;
    }


    .media-card__caption strong,
    .media-card__caption span {
        font-size: 0.61rem;
    }


    .media-card__caption strong::before {
        width: 28px;
    }


    .media-card__caption span::before {
        margin-right: 8px;
    }


    /* PRODUCTS */
    .products-heading__logo {
        width: auto;
        height: 64px;

        margin-bottom: 14px;
    }

    .section--products
    .section-heading--center {
        padding-top: 18px;
    }

    .section--products {
        padding-top: 54px;
        padding-bottom: 64px;
    }

    .section-heading--center {
        max-width: 520px;
    }

    .products-showcase {
        grid-template-columns: 1fr;

        gap: 42px;

        margin-top: 12px;
    }

    .product-card {
        max-width: 440px;

        margin: 0 auto;

        width: 100%;
    }

    .product-card__visual {
        height: 310px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .product-card--5 .product-card__image {
        max-height: 280px;
    }

    .product-card--10 .product-card__image {
        max-height: 305px;
    }

    .product-card--20 .product-card__image {
        max-height: 310px;
    }

    .product-card__badge {
        top: -6px;
    }

    .product-card__content {
        max-width: 330px;

        margin-top: 14px;
    }

    .product-card__volume {
        font-size: 1.55rem;
    }

    .product-card__title {
        font-size: 1rem;
    }

    .product-card__text {
        font-size: 0.87rem;
    }

    .products-cta {
        margin-top: 18px;
        padding-top: 24px;

        flex-direction: column;

        gap: 10px;

        text-align: center;
    }

        /* SUSTAINABILITY */

    .section--sustainability {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .sustainability-list {
        margin-top: 35px;
    }

    .sustainability-item {
        grid-template-columns:
            38px 1fr;

        gap: 14px;

        padding: 20px 0;
    }

    .sustainability-item h3 {
        font-size: 0.95rem;
    }

    .sustainability-item p {
        font-size: 0.82rem;
    }

    .section--sustainability .section__visual {
        width: calc(100% + 24px);
        margin-left: -12px;
    }

    .media-card--sustainability {
        width: 100%;
        max-width: none;

        min-height: 480px;

        border-radius: 4px;
    }

    .media-card__watermark {
        font-size: 4.8rem;
    }


    /* SOCIAL */

    .section--social {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .social-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        margin-bottom: 35px;
    }

    .social-heading__title {
        font-size:
            clamp(2.3rem, 9vw, 3.35rem);
    }

    .social-heading__text {
        font-size: 0.94rem;
    }

    .social-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .social-card {
        width: 100%;
        max-width: 520px;

        margin: 0 auto;
    }

    .social-card__overlay {
        opacity: 1;

        align-items: flex-end;
        justify-content: flex-start;

        background:
            linear-gradient(
                to top,
                rgba(6, 24, 42, 0.5),
                transparent 45%
            );
    }

    .social-card__button {
        min-height: 42px;

        padding:
            0 16px;

        font-size: 0.68rem;

        transform: none;
    }

    .social-footer {
        margin-top: 30px;
    }


    /* CONTACT */

    .section--contact {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contact-layout {
        gap: 48px;
    }

    .contact-info {
        margin-top: 34px;
    }

    .contact-info__item {
        padding: 15px 0;
    }

    .contact-info__icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

    .contact-card {
        padding: 26px 20px;

        border-radius: 4px;
    }

    .contact-card__header {
        margin-bottom: 26px;
    }

    .contact-card__header p {
        font-size: 1.13rem;
    }

    .form-group {
        margin-bottom: 17px;
    }


    /* FOOTER */

    .footer {
        padding:
            68px 20px 28px;
    }

    .footer__inner {
        grid-template-columns: 1fr;

        gap: 38px;

        text-align: left;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__logo img {
        height: 55px;
    }

    .footer__bottom {
        margin-top: 50px;
        padding-top: 22px;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }


    /* FLOATS */

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float__icon {
        width: 52px;
        height: 52px;

        font-size: 1.3rem;
    }

    .scroll-top {
        right: 21px;
        bottom: 79px;

        width: 40px;
        height: 40px;
    }
}



/* ==========================================================
   05. MOBILE COMPACTO
   560px y menos
   ========================================================== */

@media (max-width: 560px) {

    .section {
        padding:
            74px 18px;
    }


    /* HERO */

    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero__brand-logo {
        width: 90%;
        max-width: 330px;
    }

    .hero__title {
        font-size:
            clamp(2.35rem, 11vw, 3.25rem);
    }

    .hero__subtitle {
        max-width: 400px;

        font-size: 0.94rem;
    }

    .hero__actions .btn {
        min-height: 50px;

        padding-left: 20px;
        padding-right: 20px;

        font-size: 0.82rem;
    }


    /* ABOUT */

    .media-card {
        min-height: 350px;
    }

    .media-card--about
    .media-card__photo {
        min-height: 400px;
    }


    /* PRODUCTS */

        .products-showcase {
        gap: 38px;
    }

    .product-card__visual {
        height: 290px;
    }

    .product-card--5 .product-card__image {
        max-height: 260px;
    }

    .product-card--10 .product-card__image {
        max-height: 280px;
    }

    .product-card--20 .product-card__image {
        max-height: 290px;
    }


    /* SUSTAINABILITY */

    .media-card--sustainability {
        min-height: 450px;
    }


    /* FOOTER */

    .footer__block h3 {
        margin-bottom: 15px;
    }

    .footer__block ul {
        gap: 8px;
    }
}



/* ==========================================================
   06. MOBILE PEQUEÑO
   420px y menos
   ========================================================== */

@media (max-width: 420px) {

    :root {
        --header-height: 70px;
    }

    .section {
        padding:
            68px 16px;
    }


    /* HEADER */

    .header__inner {
        padding:
            0 15px;
    }

    .header__logo-img {
        height: 43px;
    }

    .header--scrolled
    .header__logo-img {
        height: 39px;
    }


    /* MOBILE NAV */

    .header__nav {
        padding:
            20px 16px;
    }

    .nav__mobile-header {
        top: 18px;
        left: 16px;
        right: 16px;
    }

    .nav__mobile-logo-img {
        height: 64px;
    }

    .nav__mobile-close {
        width: 38px;
        height: 38px;
    }

    .nav__links {
        gap: 22px;
    }

    .nav__link {
        font-size: 0.78rem;
    }


    /* HERO */

    .hero {
        padding:
            calc(var(--header-height) + 52px)
            16px
            72px;
    }

    .hero__inner {
        gap: 30px;
    }

    .hero__brand-logo {
        width: 94%;
        max-width: 300px;
    }

    .hero__visual-line {
        width: 70%;
        margin-top: 17px;
    }

    .hero__eyebrow {
        font-size: 0.62rem;
    }

    .hero__title {
        font-size:
            clamp(2.15rem, 11.5vw, 2.95rem);

        letter-spacing: -0.045em;
    }

    .hero__subtitle {
        font-size: 0.9rem;
    }

    .hero__origin {
        gap: 10px;

        margin-top: 27px;
    }

    .hero__origin p {
        font-size: 0.6rem;
        letter-spacing: 0.13em;
    }


    /* VALUES */

    .value-strip {
        padding:
            0 16px;
    }

    .value-item {
        padding:
            23px 2px;
    }

    .value-item__text {
        font-size: 0.79rem;
    }


    /* TYPOGRAPHY */

    .section__title {
        font-size:
            clamp(2.1rem, 10vw, 2.85rem);
    }

    .section__lead {
        font-size: 0.95rem;
    }

    .section__content > p:not(
        .section__eyebrow,
        .section__lead
    ) {
        font-size: 0.89rem;
    }


    /* MEDIA */

    .media-card {
        min-height: 315px;

        border-radius: 20px;
    }

    .media-card--about {
        width: calc(100% + 12px);
        margin-left: -6px;
    }

    .media-card--about
    .media-card__photo {
        min-height: 380px;

        border-radius: 4px;
    }

    .media-card__placeholder span {
        font-size: 0.65rem;
    }

    .media-card__caption {
        margin-top: 13px;
        padding: 0;
    }


    .media-card__caption p {
        flex-wrap: wrap;

        gap: 6px 8px;
    }


    .media-card__caption strong,
    .media-card__caption span {
        font-size: 0.58rem;
    }


    .media-card__caption strong::before {
        width: 24px;
    }


    /* PRODUCTS */

    .products-heading__logo {
        height: 58px;

        margin-bottom: 12px;
    }

    .section--products {
        padding-top: 72px;
        padding-bottom: 72px;
    }

        .products-showcase {
        margin-top: 8px;
    }

    .product-card__visual {
        height: 270px;
    }

    .product-card--5 .product-card__image {
        max-height: 245px;
    }

    .product-card--10 .product-card__image {
        max-height: 265px;
    }

    .product-card--20 .product-card__image {
        max-height: 270px;
    }

    .product-card__content {
        margin-top: 12px;
    }

    .product-card__volume {
        font-size: 1.42rem;
    }

    .product-card__title {
        font-size: 0.95rem;
    }

    .product-card__text {
        max-width: 290px;

        margin: 0 auto;

        font-size: 0.83rem;
    }


    /* SUSTAINABILITY */

    .sustainability-item {
        grid-template-columns:
            33px 1fr;

        gap: 11px;
    }

    .sustainability-item__number {
        font-size: 0.65rem;
    }

    .section--sustainability .section__visual {
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .media-card--sustainability {
        min-height: 420px;

        border-radius: 4px;
    }

    .media-card__watermark {
        font-size: 3.8rem;
    }


    /* CONTACT */

    .contact-info__content strong {
        font-size: 0.82rem;
    }

    .contact-card {
        padding:
            23px 17px;
    }

    .form-group input,
    .form-group textarea {
        padding:
            13px 14px;
    }


    /* FOOTER */

    .footer {
        padding:
            58px 16px
            24px;
    }

    .footer__inner {
        gap: 34px;
    }

    .footer__logo img {
        height: 50px;
    }

    .footer__bottom {
        font-size: 0.68rem;
    }
}



/* ==========================================================
   07. MUY BAJO DE ALTURA
   laptops / móviles landscape
   ========================================================== */

@media (max-height: 700px) and (min-width: 769px) {

    .hero {
        min-height: auto;

        padding-top:
            calc(var(--header-height) + 55px);

        padding-bottom: 75px;
    }

    .hero__brand-logo {
        max-width: 430px;
    }

    .hero__title {
        font-size:
            clamp(2.8rem, 4.5vw, 4.2rem);
    }

    .hero__origin {
        margin-top: 30px;
    }

    .hero__scroll {
        display: none;
    }
}



/* ==========================================================
   08. MOBILE LANDSCAPE
   ========================================================== */

@media (max-height: 520px) and (max-width: 900px) {

    .header__nav {
        overflow-y: auto;
    }

    .nav__mobile-header {
        position: relative;

        top: auto;
        left: auto;
        right: auto;

        margin-bottom: 40px;
    }

    .nav__links {
        margin:
            0 auto;

        padding-bottom: 35px;
    }

    .hero {
        padding-top:
            calc(var(--header-height) + 45px);
    }
}



/* ==========================================================
   09. SAFE AREA
   iPhone / devices with notch
   ========================================================== */

@supports (
    padding: max(0px)
) {

    @media (max-width: 900px) {

        .header__nav {
            padding-top:
                max(
                    24px,
                    env(safe-area-inset-top)
                );

            padding-right:
                max(
                    24px,
                    env(safe-area-inset-right)
                );

            padding-bottom:
                max(
                    24px,
                    env(safe-area-inset-bottom)
                );

            padding-left:
                max(
                    24px,
                    env(safe-area-inset-left)
                );
        }

        .whatsapp-float {
            right:
                max(
                    16px,
                    env(safe-area-inset-right)
                );

            bottom:
                max(
                    16px,
                    env(safe-area-inset-bottom)
                );
        }
    }
}