/* =========================================================
   TECHBYTE LANDING
   style.css
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;

    background-color: #000000;
    background-image: url("background.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;

    overflow-x: hidden;
}


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 50px 50px 30px;
}


/* =========================================================
   BLOQUE CENTRAL
   ========================================================= */

.selector {
    flex: 1;

    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    width: 100%;
    max-width: 430px;

    height: 115px;

    margin-bottom: 35px;

    background-image: url("logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    font-size: 0;
}


/*
   Si tu HTML todavía tiene:

   <div class="logo">
       <span>TECH</span><b>BYTE</b>
   </div>

   ocultamos ese texto porque ahora usamos el PNG.
*/

.logo span,
.logo b {
    display: none;
}


/* =========================================================
   TITULO
   ========================================================= */

#headline {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 7px;

    text-transform: uppercase;
}


/* =========================================================
   IDIOMAS
   ========================================================= */

.languages {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 18px;
}


/* BOTONES */

.language {
    position: relative;

    width: 260px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 500;

    letter-spacing: 1.5px;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.01)
        ),
        rgba(0,0,0,0.72);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* HOVER */

.language:hover {
    border-color: #ff101b;

    background:
        linear-gradient(
            135deg,
            rgba(255,0,15,0.16),
            rgba(0,0,0,0.75)
        );

    box-shadow:
        0 0 15px rgba(255,0,15,.22),
        0 0 35px rgba(255,0,15,.12);

    transform: translateY(-2px);
}


/* =========================================================
   BANDERAS
   ========================================================= */

.flag {
    display: block;

    width: 46px;
    height: 32px;

    font-size: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    flex-shrink: 0;
}


/* ESTADOS UNIDOS */

.language:first-child .flag {
    background-image: url("usa-flag.png");
}


/* ARGENTINA */

.language:last-child .flag {
    background-image: url("argentina-flag.png");
}


/* =========================================================
   SEPARADOR ROJO
   ========================================================= */

.divider {
    width: 520px;
    max-width: 85%;

    margin: 36px auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}

.divider i {
    display: block;

    height: 1px;

    flex: 1;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,0,15,.65)
    );
}

.divider i:last-child {
    background: linear-gradient(
        90deg,
        rgba(255,0,15,.65),
        transparent
    );
}

.divider span {
    display: block;

    width: 8px;
    height: 8px;

    background: #ff101b;

    box-shadow:
        0 0 8px rgba(255,0,15,.8),
        0 0 18px rgba(255,0,15,.4);
}


/* =========================================================
   TECHNOLOGY WITHOUT LIMITS
   ========================================================= */

.tagline {
    color: rgba(255,255,255,.55);

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 6px;

    text-transform: uppercase;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding-top: 40px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    color: rgba(255,255,255,.62);

    font-size: 11px;
    line-height: 1.6;

    letter-spacing: 1px;
}


/* =========================================================
   DIRECCION
   ========================================================= */

.company {
    position: relative;

    display: flex;
    flex-direction: column;

    padding-left: 42px;
}


/* ICONO UBICACION */

.company::before {
    content: "";

    position: absolute;

    left: 0;
    top: 2px;

    width: 25px;
    height: 32px;

    background-image: url("location-pin-red.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.company strong {
    margin-bottom: 2px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.copyright {
    display: flex;
    flex-direction: column;

    text-align: right;

    color: rgba(255,255,255,.55);
}


/* =========================================================
   EFECTO EXTRA DEL LOGO
   ========================================================= */

.logo {
    filter:
        drop-shadow(0 0 5px rgba(255,255,255,.03))
        drop-shadow(0 0 15px rgba(255,0,0,.04));
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 900px) {

    .page {
        padding: 35px 25px 25px;
    }

    .logo {
        max-width: 380px;
        height: 100px;
    }

    footer {
        max-width: 800px;
    }
}


/* =========================================================
   CELULARES
   ========================================================= */

@media (max-width: 650px) {

    body {
        background-position: center bottom;
        background-size: auto 100%;
    }

    .page {
        min-height: 100svh;

        padding:
            35px
            20px
            25px;
    }

    .selector {
        justify-content: center;
    }


    /* LOGO */

    .logo {
        width: 85%;
        max-width: 330px;

        height: 85px;

        margin-bottom: 30px;
    }


    /* TITULO */

    #headline {
        margin-bottom: 22px;

        font-size: 11px;

        letter-spacing: 4px;
    }


    /* BOTONES */

    .languages {
        flex-direction: column;

        gap: 13px;
    }

    .language {
        width: 100%;
        max-width: 330px;

        height: 68px;
    }


    /* BANDERAS */

    .flag {
        width: 42px;
        height: 29px;
    }


    /* SEPARADOR */

    .divider {
        width: 300px;

        margin-top: 30px;
    }


    /* TAGLINE */

    .tagline {
        font-size: 9px;

        letter-spacing: 3px;
    }


    /* FOOTER */

    footer {
        margin-top: 50px;

        padding-top: 25px;

        flex-direction: column;
        align-items: center;

        gap: 20px;

        text-align: center;
    }

    .company {
        align-items: center;

        padding-left: 0;
        padding-top: 38px;
    }

    .company::before {
        left: 50%;
        top: 0;

        transform: translateX(-50%);

        width: 22px;
        height: 28px;
    }

    .copyright {
        text-align: center;
    }
}


/* =========================================================
   PANTALLAS MUY BAJAS
   ========================================================= */

@media (max-height: 700px) and (min-width: 651px) {

    .page {
        padding-top: 25px;
        padding-bottom: 20px;
    }

    .logo {
        height: 80px;

        margin-bottom: 20px;
    }

    .language {
        height: 65px;
    }

    .divider {
        margin-top: 24px;
    }

    footer {
        padding-top: 25px;
    }
}