/*###################################################*/
/*...................................................*/
/* root variables (responsive font size installed)   */
/*...................................................*/
/*###################################################*/

:root {
    /* font size */
    --fs-b: 14px;
    
    /* custom colors */
    --brColor: hsla(0, 0%, 5%, 1);
    --text: hsla(0, 30%, 96%, 1);
    
    /* theme colors */
    --primary: hsla(25, 96%, 50%, 1);
    --primary-mono: hsla(25, 94%, 67%, 1);
    --contrast: hsla(217, 81%, 31%, 1);
    --contrast-mono: hsla(217, 90%, 81%, 1);
    
    /* Navbar Height */
    --nav-height: 6rem;

    /* z-index layer map */
    --z-nav: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-toast: 400;
    --z-fab: 500;

	/* Fonts */
	--font-display: 'Plus Jakarta Sans', sans-serif;
  	--font-body: 'Inter', sans-serif;

    /*-------------------------------*/
    /* font mechanism                */
    /*-------------------------------*/
    @media (min-width: 768px)  { --fs-b: 16px; }
    @media (min-width: 991px)  { --fs-b: 18px; }
    @media (min-width: 1300px) { --fs-b: 22px; }
    /*-------------------------------*/
    /* end font mechanism            */
    /*-------------------------------*/
}

/*###################################################*/
/*...................................................*/
/* end root variables                                */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* general properties                                */
/*...................................................*/
/*###################################################*/

html {
    /* scroll smooth from nav control */
    scroll-behavior: smooth;
    /* distancia extra de scroll */
    scroll-padding-top: 200px;
    /* font size general control using variable */
    font-size: var(--fs-b);
    /* font-family  */
     
}

body {
    background-color: var(--brColor);
    color: var(--text);
    margin: 0;
    padding: 0;
    
    /* Text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* ajustando y centrando el contenido en un ancho máximo */
    & > section >.content{
        width: 100%;
        max-width: 1824px;
        margin: 1px auto !important;
        padding: 1rem;
        float: none !important;
        min-height: 100dvh;
        /* cellphone landscape up */
        @media (width >= 576px) {
            min-height: calc(100dvh - var(--nav-height));
        }
        /* end cellphone landscape up */

    }
    & > section:nth-of-type(2n) {
        background-color: hsla(0, 0%, 7%, 1);

    }
}

/*-------------------------------*/
/* margins */
/*-------------------------------*/

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

/* ---top--- */
.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}
/* ---end top--- */

/* ---bottom--- */
.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}
/* ---end bottom--- */

/* ---left--- */
.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}
/* ---end left--- */

/* ---right--- */
.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.mr-4 {
    margin-right: 4rem;
}
/* ---end right--- */

/*-------------------------------*/
/* end margins */
/*-------------------------------*/

/*-------------------------------*/
/* paddings */
/*-------------------------------*/

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}
/* ---top--- */
.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}
/* ---end top--- */

/* ---bottom--- */
.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}
/* ---end bottom--- */

/* ---left--- */
.pl-1 {
    padding-left: 1rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pl-4 {
    padding-left: 4rem;
}
/* ---end left--- */

/* ---right--- */
.pr-1 {
    padding-right: 1rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pr-3 {
    padding-right: 3rem;
}

.pr-4 {
    padding-right: 4rem;
}
/* ---end right--- */

/*-------------------------------*/
/* end paddings */
/*-------------------------------*/

/*-------------------------------*/
/* special styles */
/*-------------------------------*/

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

/*-------------------------------*/
/* end special styles */
/*-------------------------------*/

/* ============================================
   Sistema tipográfico
   ============================================ */

/* Plus Jakarta Sans — headings, UI, navegación */
h1, h2, h3, h4, h5, h6,
button, .btn,
label,
nav a,
.eyebrow {
  font-family: var(--font-display);
}

/* Inter — lectura, formularios, texto de apoyo */
p, li, blockquote,
input, textarea, select,
small, .caption {
  font-family: var(--font-body);
}

/*###################################################*/
/*...................................................*/
/* end general properties                            */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* Section Headers                                   */
/*...................................................*/
/*###################################################*/
.sectionHeader {
    padding: 0.5rem;
    padding-top: clamp(4rem, 12vh, 8rem);

    @media (min-width: 768px) {
        padding: 2rem;
    }
}

.sectionHeaderMeta {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: min(100%, 18rem);
    margin: 0 0 2.35rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: hsla(0, 30%, 96%, 0.34);
}

.sectionHeaderMetaText {
    flex: 0 0 auto;
}

.sectionHeaderRule {
    display: block;
    flex: 1 1 2rem;
    min-width: 2rem;
    height: 1px;
    background: hsla(0, 0%, 100%, 0.08);
}

.sectionHeaderEyebrow {
    margin: 0 0 1.1rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sectionHeaderTitle {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.12;
    color: hsla(0, 0%, 100%, 1);

    @media (min-width: 768px) {
        font-size: clamp(2rem, 2vw, 4rem);
        line-height: 1.08;
    }
}

.sectionHeader > .sectionHeaderIntro,
.sectionHeader > .sectionHeaderSubTitle,
.sectionHeader > .queEsSubheadline,
.sectionHeader > .habilidadesIntro,
.sectionHeader > .modeloIntro,
.sectionHeader > .implSubtitle,
.sectionHeader > .beneficiosIntro,
.sectionHeader > .pruebaSocialIntro,
.modeloCrecimiento .mcIntroParagraph,
.sectionHeader > .preciosIntro {
    @media (min-width: 991px) {
        max-width: 640px;
        margin: 0.75rem 0 0;
        font-family: var(--font-body);
        font-size: clamp(0.78rem, 0.9vw, 0.9rem);
        font-weight: 400;
        line-height: 1.65;
        color: hsla(0, 30%, 96%, 0.45);
    }
}
/*###################################################*/
/*...................................................*/
/* End Section Headers                               */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* nav                                               */
/*...................................................*/
/*###################################################*/

/*-------------------------------*/
/* nav container                 */
/*-------------------------------*/
.nav {
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    height: var(--nav-height);
    display: none;
    align-items: center;
    background: hsla(0, 0%, 5%, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);

    @media (min-width: 768px) {
        display: flex;
    }
}
/*-------------------------------*/
/* end nav container             */
/*-------------------------------*/

/*-------------------------------*/
/* nav contents layout           */
/*-------------------------------*/
.navContents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1824px;
    margin: 0 auto;
    padding: 0 2rem;
}
/*-------------------------------*/
/* end nav contents layout       */
/*-------------------------------*/

/*-------------------------------*/
/* nav logo area                 */
/*-------------------------------*/
.navLogo {
    & a {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        text-decoration: none;
    }
}

.navLogoMin {
    height: 2rem;
    width: auto;
}

.navLogoFull {
    height: 1.8rem;
    width: auto;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-width 0.4s ease;

    &.visible {
        max-width: 8rem;
        opacity: 1;
    }

    /* Tablet: hide wordmark to save space */
    @media (min-width: 768px) {
        max-width: 0;
        opacity: 0;

        &.visible {
            max-width: 0;
            opacity: 0;
        }
    }

    /* Desktop: restore .visible reveal */
    @media (min-width: 992px) {
        max-width: 0;
        opacity: 0;

        &.visible {
            max-width: 8rem;
            opacity: 1;
        }
    }
}
/*-------------------------------*/
/* end nav logo area             */
/*-------------------------------*/

/*-------------------------------*/
/* nav links                     */
/*-------------------------------*/
.navLinks {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;

    & li a {
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        transition: color 0.2s ease;

        &:hover,
        &.active,
        &[aria-current="location"] {
            color: var(--primary);
        }
    }
}
/*-------------------------------*/
/* end nav links                 */
/*-------------------------------*/

/*-------------------------------*/
/* nav CTA button                */
/*-------------------------------*/
.navCta {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: hsla(0, 0%, 100%, 1);
    border: 1px var(--primary) solid;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;

    &:hover {
        opacity: 0.85;
        background: var(--primary);
    }

    @media (min-width: 768px) {
        padding: 0.35rem 0.75rem;
    }

    @media (min-width: 992px) {
        padding: 0.5rem 1.25rem;
    }
}
/*-------------------------------*/
/* end nav CTA button            */
/*-------------------------------*/

/*###################################################*/
/*...................................................*/
/* end nav                                           */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* mobile nav                                        */
/*...................................................*/
/*###################################################*/

/*-------------------------------*/
/* hamburger button              */
/*-------------------------------*/
.mobileNavBtn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: var(--z-fab);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    --line-gap: 5px;
    --line-height: 2px;
    --x-offset: calc((var(--line-gap) + var(--line-height)) / 2);
    background: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 48px;
    min-height: 48px;
    box-shadow: 0 2px 12px hsla(0, 0%, 0%, 0.3);
    transition: transform 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;

    &:active {
        transform: scale(0.95);
    }

    /* Open state → animate lines to X */
    &.open {
        & .mobileNavLine1 {
            transform: translateY(var(--x-offset)) rotate(45deg);
            animation: mobileLineOpen1 0.4s ease 0.2s backwards;
        }

        & .mobileNavLine2 {
            transform: translateY(calc(-1 * var(--x-offset))) rotate(-45deg);
            animation: mobileLineOpen2 0.4s ease 0.2s backwards;
        }
    }

    @media (min-width: 768px) {
        display: none;
    }
}

/* Variant inside dialog */
.mobileNavBtn--inside {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: hsla(0, 0%, 100%, 0.15);
}
/*-------------------------------*/
/* end hamburger button          */
/*-------------------------------*/

/*-------------------------------*/
/* hamburger lines               */
/*-------------------------------*/
.mobileNavLine1,
.mobileNavLine2 {
    display: block;
    width: 22px;
    height: var(--line-height);
    background-color: hsla(0, 0%, 100%, 1);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

@keyframes mobileLineOpen1 {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(var(--x-offset)) rotate(45deg); }
}

@keyframes mobileLineOpen2 {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(calc(-1 * var(--x-offset))) rotate(-45deg); }
}
/*-------------------------------*/
/* end hamburger lines           */
/*-------------------------------*/

/*-------------------------------*/
/* dialog panel                  */
/*-------------------------------*/
.mobileMenu {
    position: fixed;
    inset: auto 0 0 0;
    width: 100%;
    max-width: 100vw;
    max-height: 85vh;
    margin: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    border: none;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: hsla(0, 0%, 7%, 1);
    color: var(--text);
    box-shadow: 0 -4px 20px hsla(0, 0%, 0%, 0.4);
    overflow: hidden;
    overscroll-behavior: contain;

    /* Exit state */
    opacity: 0;
    transform: translateY(100%);

    /* Transitions (with allow-discrete for display/overlay) */
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        display 0.4s allow-discrete,
        overlay 0.4s allow-discrete;

    /* Open state */
    &[open] {
        opacity: 1;
        transform: translateY(0);
    }

    /* Entry animation */
    @starting-style {
        &[open] {
            opacity: 0;
            transform: translateY(100%);
        }
    }

    &::backdrop {
        background: transparent;
        transition:
            display 0.4s allow-discrete,
            overlay 0.4s allow-discrete;
    }

    @media (min-width: 768px) {
        display: none;
    }
}
/*-------------------------------*/
/* end dialog panel              */
/*-------------------------------*/

/*-------------------------------*/
/* handle indicator              */
/*-------------------------------*/
.mobileMenuHandle {
    width: 40px;
    height: 4px;
    background: hsla(0, 0%, 100%, 0.25);
    border-radius: 2px;
    margin: 0.75rem auto 0.5rem;
}
/*-------------------------------*/
/* end handle indicator          */
/*-------------------------------*/

/*-------------------------------*/
/* menu content                  */
/*-------------------------------*/
.mobileMenuContent {
    padding: 0.5rem 1.25rem 1.5rem;
    max-height: calc(85vh - 3rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
/*-------------------------------*/
/* end menu content              */
/*-------------------------------*/

/*-------------------------------*/
/* menu logo                     */
/*-------------------------------*/
.mobileMenuLogo {
    display: flex;
    justify-content: center;
    padding: 0.75rem 0 1.25rem;

    & img {
        height: 2.5rem;
        width: auto;
    }
}
/*-------------------------------*/
/* end menu logo                 */
/*-------------------------------*/

/*-------------------------------*/
/* navigation links              */
/*-------------------------------*/
.mobileMenuLinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(5.75rem, auto);
    gap: 0.65rem;
}

.mobileMenuLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 5.75rem;
    padding: 0.9rem;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    background: hsla(0, 0%, 100%, 0.06);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    text-align: center;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;

    &::before {
        content: "";
        width: 0.42rem;
        height: 0.42rem;
        flex: 0 0 auto;
        border-radius: 999px;
        background: var(--primary);
        opacity: 0;
        transform: scale(0.75);
        transition: opacity 200ms ease, transform 200ms ease;
    }

    &.active,
    &[aria-current="location"] {
        color: var(--primary);
        border-color: color-mix(in srgb, var(--primary) 45%, transparent);

        &::before {
            opacity: 1;
            transform: scale(1);
        }
    }

    &:active {
        background: hsla(0, 0%, 100%, 0.12);
    }

    &[data-menu-size="wide"] {
        grid-column: 1 / -1;
    }
}
/*-------------------------------*/
/* end navigation links          */
/*-------------------------------*/

/*-------------------------------*/
/* CTA button                    */
/*-------------------------------*/
.mobileMenuCta {
    display: block;
    margin-top: 1rem;
    padding: 0.85rem 1.25rem;
    background: var(--primary);
    color: hsla(0, 0%, 100%, 1);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: opacity 200ms ease;

    &:active {
        opacity: 0.85;
    }
}
/*-------------------------------*/
/* end CTA button                */
/*-------------------------------*/


/*###################################################*/
/*...................................................*/
/* end mobile nav                                    */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* hero                               */
/*...................................................*/
/*###################################################*/

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end hero                                          */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* que-es                                            */
/*...................................................*/
/*###################################################*/

.que-es {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end que-es                                        */
/*...................................................*/
/*###################################################*/



/*###################################################*/
/*...................................................*/
/* habilidades                                       */
/*...................................................*/
/*###################################################*/

.habilidades {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end habilidades                                   */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* modeloPedagogico                                  */
/*...................................................*/
/*###################################################*/

.modeloPedagogico {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end modeloPedagogico                              */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* implementacion                                    */
/*...................................................*/
/*###################################################*/

.implementacion {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end implementacion                                */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* beneficios                                        */
/*...................................................*/
/*###################################################*/

.beneficios {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end beneficios                                    */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* faq                                               */
/*...................................................*/
/*###################################################*/

.faq {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end faq                                           */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* pruebaSocial                                      */
/*...................................................*/
/*###################################################*/

.pruebaSocial {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end pruebaSocial                                  */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* modeloCrecimiento                                 */
/*...................................................*/
/*###################################################*/

.modeloCrecimiento {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end modeloCrecimiento                             */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* precios                                           */
/*...................................................*/
/*###################################################*/

.precios {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end precios                                       */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* siguientePaso                                     */
/*...................................................*/
/*###################################################*/

.siguientePaso {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end siguientePaso                                 */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* footer                                            */
/*...................................................*/
/*###################################################*/

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*###################################################*/
/*...................................................*/
/* end footer                                        */
/*...................................................*/
/*###################################################*/

/*###################################################*/
/*...................................................*/
/* footer                                            */
/*...................................................*/
/*###################################################*/

/*-------------------------------*/
/* footer container              */
/*-------------------------------*/
.footer {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;

    @media (min-width: 768px) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2.5rem 4rem;
    }

    @media (min-width: 1300px) {
        padding: 2.5rem 6rem;
    }
}
/*-------------------------------*/
/* end footer container          */
/*-------------------------------*/

/*-------------------------------*/
/* footer legal section          */
/*-------------------------------*/
.footerLegal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footerLegalIcon {
    font-size: 1.25rem;
    color: var(--text);
}

.footerLegalTitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(248, 242, 242, 0.5);
    margin: 0;
    text-align: center;
}

.footerLegalLinks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.footerLegalBtn {
    display: block;
    padding: 0.65rem 1.25rem;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: background-color 200ms ease;

    &:hover {
        background: rgba(255, 255, 255, 0.11);
    }
}
/*-------------------------------*/
/* end footer legal section      */
/*-------------------------------*/

/*-------------------------------*/
/* footer brand section          */
/*-------------------------------*/
.footerBrand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;

    @media (min-width: 768px) {
        align-items: flex-end;
    }
}

.footerBrandLogo {
    height: 2.5rem;
    width: auto;
}
/*-------------------------------*/
/* end footer brand section      */
/*-------------------------------*/

/*-------------------------------*/
/* footer powered by             */
/*-------------------------------*/
.footerPowered {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footerPoweredLabel {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(248, 242, 242, 0.4);
}

.footerPoweredLogo {
    height: 1.4rem;
    width: auto;
    opacity: 0.8;
}
/*-------------------------------*/
/* end footer powered by         */
/*-------------------------------*/

/*###################################################*/
/*...................................................*/
/* end footer                                        */
/*...................................................*/
/*###################################################*/
