/* =========================================================
   ESDIM MEDIA
   ESTILOS GENERALES
========================================================= */

:root {
    --primary: #079b91;
    --primary-dark: #057b76;
    --primary-light: #5fd3d0;

    --navy: #071d2d;
    --navy-light: #0a3149;
    --blue: #1e85ae;

    --accent: #ffc934;
    --accent-hover: #ffda64;

    --dark: #1a1a1a;
    --dark-soft: #242424;

    --white: #ffffff;

    --background: #ffffff;
    --surface: #ffffff;

    --gray: #f5f7f7;
    --gray-2: #e8ecee;

    --text: #152326;
    --text-muted: #697579;

    --container: 1180px;

    --radius: 24px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 10px;

    --shadow:
        0 20px 60px rgba(0, 0, 0, .12);

    --transition:
        .3s cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   RESET / BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-width: 0;

    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    width: 100%;
    min-width: 0;

    margin: 0;

    color: var(--text);
    background: var(--background);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
}

img {
    display: block;

    max-width: 100%;

    height: auto;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    min-width: 0;

    margin-inline: auto;
}

.containerFooter {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    min-width: 0;

    margin-inline: auto;
}


/* =========================================================
   ACCESIBILIDAD GLOBAL
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: transparent;

    transition:
        background-color .25s ease,
        box-shadow .25s ease,
        backdrop-filter .25s ease;
}

.header.scrolled {
    background:
        rgba(7, 29, 45, .94);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, .17);
}

.nav {
    min-height: 88px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: inline-flex;

    flex: 0 0 auto;

    align-items: center;

    padding: 5px;
}

.logo img {
    display: block;

    width: 150px;
    height: auto;
}

.header-actions {
    display: flex;

    flex: 0 0 auto;

    align-items: center;
    justify-content: flex-end;

    min-width: 0;

    gap: 22px;
}

.header-actions .btn-portal {
    min-height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding:
        0 18px;

    border: 0;
    border-radius: 8px;

    color: #071d2d;
    background: var(--accent);

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.header-actions .btn-portal:hover {
    color: #071d2d;
    background: var(--accent-hover);

    transform:
        translateY(-1px);

    box-shadow:
        0 8px 22px
        rgba(255, 201, 52, .22);
}

.header-actions .btn-portal:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.btn-portal-icon {
    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   BOTONES
========================================================= */

.btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding:
        0 26px;

    border: 0;
    border-radius: 10px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    line-height: 1.2;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.btn:hover {
    transform:
        translateY(-2px);
}

.btn-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;
    line-height: 1;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 76% 33%,
            rgba(0, 177, 180, .18),
            transparent 31%
        ),
        radial-gradient(
            circle at 22% 38%,
            rgba(30, 133, 174, .15),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061927 0%,
            #062a42 52%,
            #071d2d 100%
        );
}

.hero::before,
.hero::after {
    content: "";

    position: absolute;

    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;

    top: 70px;
    right: -260px;

    border:
        1px solid
        rgba(70, 193, 198, .12);

    border-radius: 50%;
}

.hero::after {
    width: 560px;
    height: 560px;

    left: -330px;
    bottom: -360px;

    border-radius: 50%;

    background:
        rgba(19, 97, 171, .09);
}

.hero-inner {
    position: relative;

    z-index: 2;

    min-height: 720px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(430px, .98fr);

    align-items: center;

    gap: 78px;

    padding-top: 140px;
    padding-bottom: 80px;
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
    min-width: 0;
}

.eyebrow {
    margin:
        0 0 18px;

    color: #61d7d1;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.5;

    letter-spacing: .2em;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(48px, 5vw, 70px);

    font-weight: 900;

    line-height: .99;

    letter-spacing: -.055em;

    text-transform: uppercase;
}

.hero-title-line {
    display: block;

    margin-top: 5px;

    color: #ffffff;
}

.hero h1 .hero-highlight {
    display: block;

    margin-top: 7px;

    color: var(--accent);
}

.hero-line {
    width: 78px;
    height: 4px;

    margin-top: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #1bbbac,
            #58d5ce
        );
}

.hero-description {
    max-width: 590px;

    margin:
        24px 0 0;

    color:
        rgba(255, 255, 255, .84);

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 15px;

    margin-top: 30px;
}

.hero-btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0cb69e,
            #079891
        );

    box-shadow:
        0 12px 28px
        rgba(8, 155, 145, .25);
}

.hero-btn-primary:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #10c1a8,
            #07877f
        );

    box-shadow:
        0 15px 32px
        rgba(8, 155, 145, .32);
}

.hero-btn-secondary {
    color: #ffffff;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid
        rgba(255, 255, 255, .72);
}

.hero-btn-secondary:hover {
    color: #071d2d;
    background: #ffffff;
}


/* =========================================================
   HERO BENEFICIOS
========================================================= */

.hero-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    margin-top: 38px;
}

.hero-benefit {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255, 255, 255, .88);

    font-size: 12px;
    font-weight: 650;

    line-height: 1.35;
}

.hero-benefit-icon {
    flex: 0 0 31px;

    width: 31px;
    height: 31px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #43cdc3;

    border:
        1px solid
        rgba(67, 205, 195, .42);

    border-radius: 50%;

    font-size: 15px;
}


/* =========================================================
   HERO DIPLOMADO
========================================================= */

.hero-course {
    position: relative;

    min-width: 0;
}

.hero-course-visual {
    position: relative;

    width: 100%;

    padding:
        18px 18px 22px;

    border:
        1px solid
        rgba(255, 255, 255, .11);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 52, 74, .88),
            rgba(6, 27, 43, .88)
        );

    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, .27);
}

.hero-course-image-wrap {
    position: relative;

    z-index: 2;

    width: 100%;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

    box-shadow:
        0 22px 42px
        rgba(0, 0, 0, .32);
}

.hero-course-image {
    width: 100%;

    aspect-ratio: 16 / 8.8;

    object-fit: cover;

    transition:
        transform .45s ease;
}

.hero-course-visual:hover
.hero-course-image {
    transform:
        scale(1.025);
}

.hero-course-content {
    position: relative;

    z-index: 2;

    padding:
        24px 8px 3px;
}

.hero-course-status {
    width: fit-content;

    margin:
        -40px 0 15px;

    padding:
        7px 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0bb79e,
            #078f88
        );

    border:
        3px solid
        #092438;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: .12em;

    text-transform: uppercase;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .22);
}

.hero-course-type {
    margin:
        0 0 4px;

    color:
        rgba(255, 255, 255, .58);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.hero-course h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(28px, 3vw, 38px);

    line-height: 1.08;

    letter-spacing: -.035em;
}

.hero-course-tagline {
    margin:
        8px 0 0;

    color: #54d7ce;

    font-size: 17px;
    font-weight: 800;
}

.hero-course-description {
    max-width: 540px;

    margin:
        15px 0 21px;

    color:
        rgba(255, 255, 255, .76);

    font-size: 14px;

    line-height: 1.6;
}

.hero-course-button {
    min-height: 48px;

    color: #101820;

    background: var(--accent);

    box-shadow:
        0 12px 26px
        rgba(255, 201, 52, .18);
}

.hero-course-button:hover {
    color: #101820;

    background: var(--accent-hover);

    box-shadow:
        0 15px 30px
        rgba(255, 201, 52, .25);
}


/* =========================================================
   DECORACIÓN HERO
========================================================= */

.hero-decoration {
    position: absolute;

    z-index: 1;

    pointer-events: none;

    border-radius: 50%;
}

.hero-decoration-one {
    width: 260px;
    height: 260px;

    top: -55px;
    right: -95px;

    border:
        1px solid
        rgba(54, 198, 204, .18);
}

.hero-decoration-two {
    width: 180px;
    height: 180px;

    top: -16px;
    right: -55px;

    border:
        1px dashed
        rgba(54, 198, 204, .14);
}


/* =========================================================
   CURSOS
========================================================= */

.courses {
    position: relative;

    width: 100%;

    padding:
        88px 0 110px;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #f6f8f8
        );
}

.section-header {
    width: 100%;
    max-width: 730px;

    margin:
        0 auto 48px;

    text-align: center;
}

.section-eyebrow {
    margin:
        0 0 7px !important;

    color: var(--primary) !important;

    font-size: 12px !important;
    font-weight: 900;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.section-header h2 {
    margin: 0;

    color: var(--navy);

    font-size:
        clamp(34px, 5vw, 48px);

    line-height: 1.1;

    letter-spacing: -.04em;
}

.section-line {
    width: 64px;
    height: 4px;

    margin:
        16px auto;

    border-radius: 10px;

    background: var(--primary);
}

.section-header p {
    margin: 0;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.6;
}


/* =========================================================
   COURSE CARD
========================================================= */

.course-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 780px);

    justify-content: center;
}

.course-card {
    width: 100%;

    overflow: hidden;

    background: var(--surface);

    border:
        1px solid #e5ebed;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.course-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 28px 65px
        rgba(6, 28, 44, .17);
}

.course-image-link {
    display: block;

    overflow: hidden;
}

.course-image {
    width: 100%;

    aspect-ratio: 16 / 8.3;

    object-fit: cover;
    object-position: center 20%;

    transition:
        transform .4s ease;
}

.course-card:hover
.course-image {
    transform:
        scale(1.015);
}

.course-content {
    width: 100%;

    padding:
        29px 34px 34px;
}

.course-type {
    margin:
        0 0 4px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.course-content h3 {
    margin: 0;

    color: var(--navy);

    font-size:
        clamp(27px, 4vw, 35px);

    line-height: 1.15;

    letter-spacing: -.03em;
}

.course-tagline {
    margin:
        7px 0 0;

    color: var(--primary);

    font-size: 15px;
    font-weight: 800;
}

.course-description {
    max-width: 630px;

    margin:
        13px 0 25px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.6;
}

.course-actions {
    display: flex;

    align-items: center;

    gap: 14px;
}

.btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #089a88,
            #087b84
        );

    box-shadow:
        0 10px 25px
        rgba(8, 127, 134, .22);
}

.btn-primary:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #078f7e,
            #066d75
        );
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-strip {
    padding:
        38px 0;

    background: var(--accent);
}

.contact-strip-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.contact-strip-copy {
    min-width: 0;
}

.contact-strip h3 {
    margin:
        0 0 8px;

    color: #171717;

    font-size: 1.4rem;

    line-height: 1.2;
}

.contact-strip p {
    margin: 0;

    color:
        rgba(20, 20, 20, .78);

    font-size: 14px;
}

.whatsapp-button {
    min-height: 50px;

    display: inline-flex;

    flex: 0 0 auto;

    align-items: center;

    gap: 9px;

    padding:
        0 23px;

    border-radius: 10px;

    color: var(--white);
    background: var(--dark);

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .2s ease,
        background-color .2s ease;
}

.whatsapp-button:hover {
    color: #ffffff;

    background: var(--primary-dark);

    transform:
        translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding:
        65px 0 30px;

    color: var(--white);
    background: var(--dark);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    gap: 50px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    width: 105px;
    height: auto;
}

.footer h4 {
    margin:
        0 0 18px;

    color: var(--accent);
}

.footer p,
.footer a {
    color:
        rgba(255, 255, 255, .66);

    font-size: .9rem;

    line-height: 1.9;
}

.footer-brand p {
    max-width: 390px;

    margin-top: 18px;
}

.footer-contact {
    justify-self: end;
}

.footer-bottom {
    margin-top: 50px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, .1);

    color:
        rgba(255, 255, 255, .45);

    font-size: .78rem;
}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.float-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #0f9f6e;

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .2);

    transition:
        transform .2s ease,
        background-color .2s ease;
}

.float-whatsapp:hover {
    color: #ffffff;

    background: #0a895e;

    transform:
        translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, .9fr);

        gap: 48px;
    }

    .hero h1 {
        font-size:
            clamp(45px, 5.3vw, 62px);
    }

    .hero-benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET / MÓVIL HORIZONTAL
========================================================= */

@media (max-width: 900px) {

    .hero-inner {
        min-height: auto;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 55px;

        padding-top: 135px;
        padding-bottom: 75px;
    }

    .hero-copy {
        max-width: 720px;

        margin-inline: auto;

        text-align: center;
    }

    .eyebrow {
        text-align: center;
    }

    .hero h1 {
        max-width: 760px;

        margin-inline: auto;

        font-size:
            clamp(47px, 8vw, 68px);

        text-align: center;
    }

    .hero-line {
        margin-inline: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-benefits {
        max-width: 640px;

        margin:
            38px auto 0;

        text-align: left;
    }

    .hero-course {
        width: 100%;
        max-width: 650px;

        margin-inline: auto;
    }

    .contact-strip-inner {
        gap: 24px;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 680px) {

    .container {
        width:
            calc(100% - 32px);
    }

    .containerFooter {
        width:
            calc(100% - 32px);
    }


    /* HEADER */

    .nav {
        min-height: 76px;
    }

    .logo img {
        width: 120px;
    }

    .header-actions .btn-portal {
        min-height: 40px;

        padding:
            0 13px;

        font-size: 11px;
    }

    .btn-portal-icon {
        display: none;
    }


    /* HERO */

    .hero-inner {
        gap: 45px;

        padding-top: 115px;
        padding-bottom: 58px;
    }

    .eyebrow {
        margin-bottom: 16px;

        font-size: 11px;

        letter-spacing: .16em;
    }

    .hero h1 {
        font-size:
            clamp(39px, 11.7vw, 56px);

        line-height: 1;
    }

    .hero-title-line {
        margin-top: 4px;
    }

    .hero h1 .hero-highlight {
        margin-top: 5px;
    }

    .hero-line {
        width: 62px;

        margin-top: 21px;
    }

    .hero-description {
        margin-top: 21px;

        font-size: 16px;

        line-height: 1.58;
    }

    .hero-actions {
        width: 100%;

        flex-direction: column;

        margin-top: 27px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            17px 13px;

        margin-top: 30px;
    }

    .hero-benefit {
        font-size: 11px;
    }

    .hero-benefit-icon {
        flex-basis: 29px;

        width: 29px;
        height: 29px;
    }


    /* HERO COURSE */

    .hero-course-visual {
        padding:
            12px 12px 19px;

        border-radius: 18px;
    }

    .hero-course-image-wrap {
        border-radius: 11px;
    }

    .hero-course-image {
        aspect-ratio: 16 / 10;
    }

    .hero-course-content {
        padding:
            20px 7px 0;
    }

    .hero-course-status {
        margin:
            -34px 0 14px;

        padding:
            6px 9px;

        font-size: 9px;

        border-width: 2px;
    }

    .hero-course h2 {
        font-size:
            clamp(27px, 7.5vw, 34px);
    }

    .hero-course-tagline {
        font-size: 15px;
    }

    .hero-course-description {
        margin-bottom: 19px;

        font-size: 13px;
    }

    .hero-course-button {
        width: 100%;
    }


    /* CURSOS */

    .courses {
        padding:
            62px 0 72px;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-header h2 {
        font-size:
            clamp(30px, 9vw, 40px);
    }

    .section-header p {
        font-size: 15px;
    }

    .course-grid {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .course-card {
        border-radius: 16px;
    }

    .course-card:hover {
        transform: none;
    }

    .course-image {
        aspect-ratio: 4 / 3;

        object-position: center;
    }

    .course-content {
        padding:
            23px 21px 25px;
    }

    .course-content h3 {
        font-size:
            clamp(25px, 7vw, 31px);
    }

    .course-description {
        margin-bottom: 22px;

        font-size: 15px;
    }

    .course-actions {
        width: 100%;
    }

    .course-actions .btn {
        width: 100%;
    }


    /* CONTACTO */

    .contact-strip {
        padding:
            31px 0;
    }

    .contact-strip-inner {
        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }

    .whatsapp-button {
        width: 100%;

        justify-content: center;
    }


    /* FOOTER */

    .footer {
        padding:
            50px 0 25px;
    }

    .footer-grid {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 30px;
    }

    .footer-spacer {
        display: none;
    }

    .footer-contact {
        justify-self: start;
    }

    .footer-bottom {
        margin-top: 36px;

        font-size: 12px;
    }

    .float-whatsapp {
        right: 16px;
        bottom: 16px;

        width: 50px;
        height: 50px;
    }
}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {

    .container,
    .containerFooter {
        width:
            calc(100% - 28px);
    }

    .nav {
        gap: 12px;
    }

    .logo img {
        width: 106px;
    }

    .header-actions .btn-portal {
        min-height: 39px;

        padding:
            0 11px;

        font-size: 10.5px;
    }

    .hero-inner {
        padding-top: 105px;
    }

    .hero h1 {
        font-size:
            clamp(36px, 11.5vw, 50px);

        letter-spacing: -.05em;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-benefits {
        gap:
            15px 8px;
    }

    .hero-benefit {
        gap: 8px;

        font-size: 10.5px;
    }

    .hero-course-image {
        aspect-ratio: 4 / 3;
    }

    .section-header h2 {
        font-size:
            clamp(28px, 8.7vw, 36px);
    }

    .course-content {
        padding:
            22px 19px 23px;
    }

    .course-type {
        font-size: 12px;
    }

    .course-content h3 {
        font-size:
            clamp(24px, 7vw, 29px);
    }
}


/* =========================================================
   CELULARES MUY PEQUEÑOS
========================================================= */

@media (max-width: 360px) {

    .container,
    .containerFooter {
        width:
            calc(100% - 24px);
    }

    .logo img {
        width: 94px;
    }

    .header-actions .btn-portal {
        min-height: 38px;

        padding:
            0 8px;

        font-size: 9.5px;
    }

    .hero h1 {
        font-size:
            clamp(33px, 11vw, 43px);
    }

    .eyebrow {
        font-size: 10px;

        letter-spacing: .12em;
    }

    .hero-benefit {
        font-size: 10px;
    }

    .hero-benefit-icon {
        flex-basis: 27px;

        width: 27px;
        height: 27px;
    }
}


/* =========================================================
   REDUCIR ANIMACIONES
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}