/* Roboto */
@font-face {
    font-family: 'Roboto Variable';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Roboto Mono */
@font-face {
    font-family: 'Roboto Mono Variable';
    font-style: normal;
    font-display: swap;
    font-weight: 100 700;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/roboto-mono:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Fuentes */
    --roboto: 'Roboto Variable', sans-serif;
    --roboto-mono: 'Roboto Mono Variable', sans-serif;

    /* Colores */
    /* Primarios */
    --primario: #F9420B;
    --negro-texto: #3C3E40;
    /* Neutros */
    --blanco: #FFF;
    --negro: #000;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    /* 10px = 1rem */
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: var(--roboto-mono);
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
    position: relative;
    min-height: 100svh;
    gap: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--negro-texto);
}

.contenedor {
    width: min(90%, 130rem);
    margin: 0 auto;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

header a {
    margin-top: 50px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-plugs {
    object-fit: contain;
}

.descripcion {
    text-align: center;
    color: var(--negro-texto);
    width: 70%;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.descripcion h1 {
    font-size: clamp(3.5rem, 4vw + 1rem, 6rem);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.descripcion p {
    width: 80%;
    font-size: 2rem;
    font-weight: 300;
}

footer {
    overflow: hidden;
}

footer .info {
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 15px 0;
}

footer .info a {
    transition: all .3s ease;
}

footer .info a:hover {
    color: var(--primario);
}

footer hr {
    border: none;
    height: 1px;
    background-color: #CCCCCC;
    margin: 0;
}

.redes {
    display: flex;
    gap: 10px;
}

.redes a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    padding: 7px;
    height: auto;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    text-decoration: none;
}

.redes svg {
    width: 100%;
    color: #3C3E40;
}

.redes a:hover {
    scale: 1.1;
}

@media (max-width: 1024px) {
    .descripcion {
        width: 100%;
    }

    .descripcion p {
        width: 100%;
    }

    body {
        height: max-content;
        gap: 0;
    }

    main {
        min-height: calc(100svh - 93px);
    }

    footer .info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bg-plugs {
        width: 1024px;
    }
}

@media (max-width: 768px) {
    main {
        min-height: calc(100svh - 68px);
    }

    header a {
        margin-top: 25px;
    }

    .bg-plugs {
        width: 800px;
    }
}

@media (max-width: 480px) {
    .bg-plugs {
        width: 600px;
    }
}

@media (max-height: 666px) {
    body {
        gap: 50px;
    }
}