:root {
    --primario: #1073BA;
    --secundario: #00DA55;
    --gris: #3B3B3B;
    --gris-claro: #e1e1e1;
    --blanco: #fff;
    --negro: #1F1E1E;

    --separacion: 5rem;

    --fuente-principal: 'Roboto', sans-serif;
    --fuente-secundaria: 'Lato', sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--fuente-principal);
    font-size: 1.6rem;
    line-height: 1.5;
}

/* Globals */

.contenedor {
    max-width: 120rem;
    width: 90%;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 900;
    font-family: var(--fuente-secundaria);
    margin: calc( var(--separacion) / 2) 0;
}

h1 {
    font-size: 4.4rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.8rem;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilidades */
.text-center {
    text-align: center;
}

/* Degradados */

.degradado-verde {
    color: transparent;
    background: linear-gradient(to right, var(--primario) 0%, var(--secundario) 100% );
    -webkit-background-clip: text;
    background-clip: text;
}

/* Header */
.header {
    background: var(--negro);
    padding: calc( var(--separacion) * 3) 0;
    color: var(--blanco);
}

.header img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px){
    .contenido-header{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.texto-header {
    text-align: center;
    padding-top: var(--separacion);
}

@media (min-width: 768px){
    .texto-header {
        display: flex;
        flex-direction: column;
        text-align: left;
        justify-content: space-between;
        padding: 0;
    }
}

.texto-header p {
    margin: 0;
}

.tagline-producto {
    font-size: 3rem;
    font-weight: 900;
}

.nombre-producto {
    font-size: 6rem;
    margin: 0;
}

@media (min-width: 768px){
    .nombre-producto {
        font-size: 10rem;
        line-height: 1;
    }
}

.precio-producto span {
    font-size: 6rem;
    font-weight: 900;
}

/* Iconos */
.iconos {
    padding: var(--separacion) 0;
}

@media (min-width: 768px){
    .iconos {
        display: flex;
        gap: 2rem;
    }
}

.icono {
    text-align: center;
    margin-bottom: calc( var(--separacion) / 2 );
}

.icono:last-of-type {
    margin: 0;
}

@media (min-width: 768px){
    .icono {
        margin: 0;
    }
}

.icono img {
    width: 5rem;
    margin: 0 auto;
}

.icono h3 {
    color: var(--primario);
    text-transform: uppercase;
    margin-top: calc( var(--separacion) / 2 );
}

/* Sobre TechP */
.sobre-tech {
    background-position: right;
    background-repeat: repeat, no-repeat;
    background-size: 100%, 110rem;
}

.notavif.notwebp .sobre-tech {
    background-image: linear-gradient( to bottom, transparent 50%, var(--primario) 0% ), url(../img/imagen-mujer.jpg);
}
.webp .sobre-tech {
    background-image: linear-gradient( to bottom, transparent 50%, var(--primario) 0% ), url(../img/imagen-mujer.webp);
}
.avif .sobre-tech {
    background-image: linear-gradient( to bottom, transparent 50%, var(--primario) 0% ), url(../img/imagen-mujer.avif);
}
@media (min-width: 768px) { 
    .sobre-tech {
        background-repeat: repeat, no-repeat;
    }
    .notavif.notwebp .sobre-tech {
        background-image: linear-gradient( to left, transparent 50%, var(--primario) 0% ), url(../img/imagen-mujer.jpg);
    }
    .webp .sobre-tech {
        background-image: linear-gradient( to left, transparent 50%, var(--primario) 0% ), url(../img/imagen-mujer.webp);
    }
    .avif .sobre-tech {
        background-image: linear-gradient( to left, transparent 50%, var(--primario) 0% ), url(../img/imagen-mujer.avif);
    }
}
@media (min-width: 1600px) {
    .sobre-tech {
        background-size: 100%, 210rem;
    }
}
.sobre-tech-grid {
    display: grid;
    grid-template-rows: repeat(2, 40rem);
    row-gap: var(--separacion);
}

@media (min-width: 768px) { 
    .sobre-tech-grid {
        grid-template-rows: unset;
        row-gap: unset;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4rem;
        padding: calc( var(--separacion ) * 2) 0;
    }
}

.texto-sobre-tech {
    grid-row: 2 / 3;
    color: var(--blanco);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-bottom: var(--separacion);
}
@media (min-width: 768px) { 
    .texto-sobre-tech {
        padding-bottom: 0;
    }
}
.texto-sobre-tech h2 {
    font-size: 4rem;
}
.texto-sobre-tech p {
    line-height: 2;
}

@media (min-width: 768px){
    .texto-sobre-tech p {
        font-size: 2rem;
    }
}

/* Modelos */
.modelos {
    padding: var(--separacion) 0;
}

.header-modelos {
    font-size: 6rem;
    margin-bottom: var(--separacion);
}

.listado-modelos{
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 992px){
    .listado-modelos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 20rem);
        gap: 4rem;
    }
}

.modelo {
    background: var(--gris-claro);
    margin-bottom: 2rem;
    padding-left: 4rem;
    color: var(--primario);
    border-radius: 2rem;
    min-height: 20rem;
    background-repeat: no-repeat;
    background-position: 150% center;
    background-size: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition-property: transform;
    transition-duration: .25s;
    background-repeat: no-repeat;
}


@media (min-width: 768px){
    .modelo {
        background-position: 90% center;
        background-size: 15rem;
    }

}

.modelo:hover {
    transform: scale(1.1);
}

@media (min-width: 992px){
    .modelo {
        margin-bottom: 0;
    }
}

.modelo h3 {
    font-size: 2.4rem;
}

.modelo .precio {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0;
}

.modelo:first-of-type {
    margin-bottom: 0;
}

.modelo-x {
    background-image: url('../img/modelo-x.svg');
}

.modelo-y {
    background-image: url('../img/modelo-y.svg');
}

.modelo-z {
    background: var(--primario);
    color: var(--blanco);
    background-image: url('../img/modelo-z.svg');
    background-repeat: no-repeat;
    background-position: 150%;
    background-size: 15rem;
}

@media (min-width: 768px){
    .modelo-z {
        background-position: 90% center;
        background-size: 15rem;
    }
}

@media (min-width: 992px){
    .modelo-z {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        background-size: 25rem;
    }

    .modelo-z h3 {
        font-size: 4rem;
    }
}

.modelo-z .precio {
    font-size: 6rem;
}

/* Newsletter */

.newsletter {
    background-image: linear-gradient(to bottom, transparent 50%, var(--blanco) 0%), url('../img/newsletter.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%, 70rem;
}

@media (min-width: 768px){
    .newsletter {
        background-image: linear-gradient(to right, transparent 50%, var(--blanco) 0%), url('../img/newsletter.jpg');
        background-position: center, -21rem 0rem;
        background-size: 100rem;
        padding: 10rem 0;
    }
}

@media (min-width: 2200px){
    .newsletter {
        background-size: 100%, 200rem;
        background-size: center, 0% -30rem;
    }
}

.contenido-newsletter { 
    display: grid;
    grid-template-rows:  repeat(2, 30rem);
    gap: var(--separacion);
}

@media (min-width: 768px){
    .contenido-newsletter {
        grid-template-rows: unset;
        grid-template-columns: repeat(2, 1fr);
    }
}

.texto-newsletter {
    margin-top: -5rem;
    grid-row: 2 / 3;
}

@media (min-width: 768px){
    .texto-newsletter {
        grid-row: unset;
        grid-column: 2 / 3;
    }
}

.formulario input[type="text"] {
    width: 100%;
    padding: 1rem;
}

.formulario input[type="submit"] {
    width: 100%;
    padding: 2rem;
    background: var(--primario);
    color: var(--blanco);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
}

.footer p {
    text-align: center;
    font-family: var(--fuente-secundaria);
    text-transform: uppercase;
    font-size: 1.5rem;
    color: var(--primario);
    padding: 3rem 0;
    margin-top: 7rem;
    margin-bottom: 0;
}

@media (min-width: 425px){
    .footer p {
        margin-top: 1rem;
    }
}