@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --fuenteTitulos: 'Montserrat', san-serif;
    --fuenteParrafo: 'Roboto', arial;

    --primario: #af1515;
    --secundario: #f36e6e;
    --blanco: #Ffffff;
    --grisClaro: #F3F3F3;
    --gris: #CCCCCC;
    --negro: #000000;
}

html {
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fuenteParrafo);
    font-size: 1.5rem;
    line-height: 2;
}

body {
    height: 100vh;
    background-color:  var(--grisClaro);
}

/* Globakes */

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

a {
    text-decoration: none;
    font-size: 1.5rem;
}

@media (min-width: 1400px) {
    a {
        font-size: 1.8rem;
    }
}

p {
    font-family: var(--fuenteParrafo);
    font-size: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1400px) {
    p {
        font-size: 1.8rem;
    }
}

h1, h2, h3, h4 {
    font-family: var(--fuenteTitulos);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 2rem;
}
h4 {
    font-size: 2rem;
}

@media (min-width: 1400px) {
    h1 {
        font-size: 6rem;
    }
    
    h2 {
        font-size: 5rem;
    }
    
    h3 {
        font-size: 5rem;
    }
    h4 {
        font-size: 5rem;
    }    
}

/* Cabecera */

header {
    width: 100%;
    top: 0;
    left: 0;

}

.header__superior {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.logotipo img {
    width: 15rem;

}

.mensaje {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mensaje h6,
.mensaje i {
    font-size: 2rem;
}

/* Barra Menú */

.container__menu {
    width: 100%;
    height: 7rem;
    background: var(--secundario);
    padding: 0 2rem;
}

.menu {
    max-width: 120rem;
    margin: auto;
    height: 100%;
}

nav {
    height: 100%;
}

nav > ul {
    height: 100%;
    display: flex;
    width: 100%;
}

nav ul li {
    height: 100%;
    list-style: none;
    padding-left: 11rem;
    position: relative;

}

nav > ul > li:first-child > a {
    background-image: url(../imagenes/hogar.png);
    background-size: 2.4rem;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 2rem 4rem;
}

nav > ul > li:first-child:hover > a {
    background-image: url(../imagenes/hogar.png);
    background-size: 2.4rem;
    background-repeat: no-repeat;
    background-position: center center;
}

nav > ul > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 1.4rem;
    color: var(--blanco);
    text-transform: uppercase;
    font-size: 1.4rem;
    transition: all 300ms ease;
}

nav > ul > li > a:hover {
    transform: scale(1.1);
    background: var(--primario);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

#selected {
    transform: scale(1.1);
    background-color: var(--primario);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.icon__menu {
    font-size: 2.6rem;
    color: var(--blanco);
    cursor: pointer;
    width: 2.6rem;
    height: 100%;
    display: none;
    padding-top: 2rem;
    align-items: center;
}

#label__check {
    width: 2.6rem;
    height: 100%;
    display: none;
}

#check__menu {
    display: none;
}

@media (max-width: 768px) {
    nav > ul {
        flex-direction: column;
        background-color: var(--secundario);
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    nav ul li {
        padding-left: 0;
    }

    nav > ul > li > a:hover {
        transform: scale(1);
    }

    nav > ul > li:first-child a {
        background-position: 2rem;
    }

    #selected {
        transform: scale(1);
    }

    #label__check {
        display: block;
    }

    .icon__menu {
        display: flex;
    }

    #check__menu:checked ~ nav > ul {
        height: 30rem;
        visibility: visible;
        opacity: 1;
    }
}

/* Sección Portada */

.portada {
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(-90deg, rgba(0,0,0, 0.5), rgba(0,0,0,0.5)), url(../imagenes/portada.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portada__texto h1 {
    margin: 0;
    text-transform: uppercase;
    color: var(--blanco);
    text-align: center;
    font-size: 3rem;
    padding: 0 1rem;

}

@media (min-width: 768px) {
    .portada__texto h1 {
        font-size: 5rem;
    }
}

@media (min-width: 992px) {
    .portada {
        height: 70vh;
    }

    .portada img {
        height: 70vh;
    }

    .portada__texto h1 {
        font-size: 5rem;

    }
}

@media (min-width: 1400px) {
    .portada__texto h1 {
        font-size: 7rem;
    }
}

/*Sección Informacion Páginas */

.anabolicos {
    margin-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    height: auto;
}

.anabolicos h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
}

.anabolicos__info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.anabolicos__info-img img {
    width: 90%;
    display: block;
    margin: 0 auto;
    border-radius: 3rem;
    box-shadow: 0 5px 10px var(--negro);
}

.hidden {
    transform: scale(0.8);
    opacity: 0;
    transition: all 1.2s ease-out;
}
.mostrar {
    transform: scale(1);
    opacity: 1;
}

.anabolicos__info p {
    text-align: justify;
    font-size: 1.5rem;
    padding: 0 2rem;
    padding-bottom: 2rem;
   
}

.anabolicos__info p:first-child {
    padding-top: 2rem;
}

@media (min-width: 768px) {

    .anabolicos__info-img img {
        width: 80%;
        height: 50vh;
    }
}

@media (min-width: 992px){

    .anabolicos__info {
        flex-direction: row;
    }

    .anabolicos__info-img {
        width: 50%;
    }

    .anabolicos__info-img img {
        height: 50vh;
    }

    .anabolicos__info-texto {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-items: center;
        justify-content: center;
    }
}

@media (min-width: 1400px) {

    .anabolicos__info-texto p {
        font-size: 1.8rem;
    }
}

/*Sección Ofertas */

.ofertas {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.ofertas h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    padding-bottom: 2rem;
}

button {
    display: block;
    margin: 0 auto;
    padding: 1rem 5rem;
    background-color: var(--primario);
    box-shadow: 8px 10px 10px 1px rgba(0,0,0,0.5);
}

button a {
    color: var(--blanco);
    font-size: 1.5rem;
}
button:active {
    transform: translateY(10px);
    box-shadow: 8px 0px 10px 1px (rgba(0,0,0,0.5));
}

@media (min-width: 1400px) {

    button a {
        font-size: 1.8rem;
    }
}

/* Sección Catálogo */

.catalogo {
    padding: 5rem 0;
    text-align: center;
}

.catalogo h2 {
    text-transform: uppercase;
    font-size: 3rem;
    padding-bottom: 5rem;
}

.catal {
    display: flex;
    flex-wrap: wrap;
    gap: 8rem;
    align-items: center;
    justify-content: center;


}

.tarjeta {
    position: relative;
    width: 30rem;
    height: 40rem;

}

.tarjeta .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    overflow: hidden;
    transition: .5s;
}

.tarjeta .front {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px var(--negro);
}

.tarjeta .front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
    background-size: cover;
}

.tarjeta .front h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 8rem;
    line-height: 4rem;
    color: var(--blanco);
    background: rgba(0,0,0,.4);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta .back {
    transform: perspective(600px) rotateY(180deg);
    background: var(--secundario);
}

.tarjeta .back button {
   margin-top: 18rem;
}

.tarjeta:hover .front {
    transform: perspective(600px) rotateY(180deg);
}

.tarjeta:hover .back {
    transform: perspective(600px) rotateY(360deg);
}

/* Sección Asesoría */

.asesoria {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.asesoria h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
    padding-bottom: 3rem;
}

.asesoria__info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.asesoria__info-img img {
    width: 90%;
    display: block;
    margin: 0 auto;
    border-radius: 3rem;
    box-shadow: 0 5px 10px var(--negro);
}

.asesoria__info-texto p {
    font-size: 1.5rem;
    text-align: justify;
    padding: 0 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .asesoria__info {
        flex-direction: row;
        padding: 0 2rem;
        margin-bottom: 5rem;
    }

    .asesoria__info-img {
        width: 50%;
    }

    .asesoria__info-img img {
        width: 100%;
    }

    .asesoria__info-texto {
        width: 50%;
    }

    .asesoria__info-texto p:first-child {
        padding-top: 6rem;
    }

}

@media (min-width: 1400px) {
    .asesoria__info-texto p:first-child {
        padding-top: 11rem;
    }

    .asesoria__info-texto p {
        font-size: 1.8rem;
    }
}

/* Scrolltop boton flotante */

.btn-scrolltop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    background: var(--secundario);
    color: var(--blanco);
    border: 1px solid var(--blanco);
    border-radius: 100%;
    cursor: pointer;
    transform: translateY(100px);
    transition: 0.3s;
}

.btn-scrolltop-on {
    transform: translateY(0);
}

/* Whatsapp boton flotante */

.btn-wsp {
    position: fixed;
    width: 5.5rem;
    height: 5.5rem;
    line-height: 5.5rem;
    bottom: 10rem;
    right: 2rem;
    background: #0df053;
    color: var(--blanco);
    border-radius: 5rem;
    text-align: center;
    font-size: 3rem;
    box-shadow: 0px 1px 10px rgba(0,0,00.3);
    z-index: 100;
}

.btn-wsp:hover {
    text-decoration: none;
    background: var(--blanco);

}
.btn-wsp i {
    font-size: 3rem;

}
.btn-wsp i:hover {
    color: #0df053;
 }

 /*Pie de Página */

 .fotter {
    background: var(--gris);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
 }

 .fotter__logo {
    width: 100%;
    height: auto;
    padding-top: 5rem;
 }

 .fotter__logo-img img {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-bottom: 2rem;
 }

 .fotter__logo-copy {
    display: flex;
    justify-content: center;
 }

 .fotter__logo-copy span {
    font-family: var(--fuenteParrafo);
    font-size: 1.5rem;
 }

 .fotter__logo-copy p {
    font-size: 1.5rem;
 }

 .fotter__menu {
    display: flex;
    justify-content: center;
 }

 .fotter__menu ul {
    list-style: none;
    text-align: center;
 }

 .fotter__menu ul li a {
    color: var(--negro);
    font-size: 1.5rem;
 }

 .fotter__menu ul li a:hover {
    color: var(--primario);
 }

 .footer__creado {
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
 }

 .footer__creado a {
    font-size: 1.5rem;
    color: var(--negro);
}

.footer__creado a:hover {
    color: var(--primario);
}

@media (min-width: 992px) {
    .fotter {
        flex-direction: row;
        gap: 2rem;
        justify-content: space-between;
        padding-right: 2rem;
    }

    .fotter__logo {
        width: 33%;
        padding-top: 2rem;
    }

    .fotter__menu {
        width: 33%;
        align-items: center;
    }

    .footer__creado  {
        align-items: center;
    }
}

/* Página Políticas de Privacidad */

.politicas {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.politicas p {
    text-align: justify;
    padding: 0 2rem;
    font-size: 1.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 1400px) {
    .politicas p {
        font-size: 1.8rem;
    }
}

/* Página Terminos y Condiciones */

.politicas h2 {
    text-align: justify;
    text-transform: uppercase;
    font-size: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Página Ofertas */

/* Sección tutolo Ofertas */

.ofertas2 {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.ofertas2__titulo h2 {
    text-align: center;
    font-size: 4rem;
    color: var(--primario);
    font-weight: 700;
    text-transform: uppercase;
    animation: blur .75s ease-out infinite;
    text-shadow: 0px 0px 5px var(--blanco),
    0px 0px 7px var(--blanco);
}

@keyframes blur{
    from{
        text-shadow:0px 0px 10px #fff,
        0px 0px 10px #fff, 
        0px 0px 25px #fff,
        0px 0px 25px #fff,
        0px 0px 25px #fff,
        0px 0px 25px #fff,
        0px 0px 25px #fff,
        0px 0px 25px #fff,
        0px 0px 50px #fff,
        0px 0px 50px #fff,
        0px 0px 150px #000000,
        0px 10px 100px #000000,
        0px 0px 50px #000000,
        0px 10px 100px #000000,
        0px 10px 100px #000000,
        0px 10px 100px #000000,
        0px -10px 100px #000000,
        0px -10px 100px #000000;}
  }

  @media (min-width: 1400px) {
    .ofertas2__titulo h2 {
        font-size: 10rem;
    }
  }

  /* Sección Productos */

.productos {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.productos__venta {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.productos__venta-img img {
    width: 70%;
    display: block;
    margin: 0 auto;
    border-radius: 5%;
    box-shadow: 8px 10px 10px 1px rgba(0,0,0,0.5);
}

.productos__venta-info h3 {
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    color: var(--primario);
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.productos__venta-info h4 {
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 2rem;
}

.productos__venta-info p {
    font-size: 1.5rem;
    text-align: justify;
    padding-bottom: 2rem;  
    padding-left: 2rem;
    padding-right: 2rem;
}

.productos__venta-info b {
    font-size: 1.5rem;
}

.productos__venta-info ul li {
    font-size: 1.5rem;
    text-align: justify;
    margin: 0 3.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {

    .productos__venta {
        flex-direction: row;
    }  
      
    .productos__venta-img {
        width: 50%;
    }

    .productos__venta-img img {
        width: 50%;
    }

    .productos__venta-info {
        width: 50%;
    }

    .productos__venta-info h3 {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .productos__venta-info h4 {
        text-align: left;
    }

    .productos__venta-info p {
        text-align: justify;
        padding-left: 0;
    }

    .productos__venta-info ul li {
        margin: 0 2rem;
    }

    .productos__venta-info .boton_productos {
        margin: 0;    
    } 
}

@media (min-width: 1400px) {
    .productos__venta-info h3 {
        font-size: 3rem;
    }    

    .productos__venta-info h4 {
        font-size: 2.5rem;
    }

    .productos__venta-info p {
        font-size: 1.8rem;
    }

    .productos__venta-info b {
        font-size: 1.8rem;
    }

    .productos__venta-info ul li {
        font-size: 1.8rem;
    }
}



.elemento hr   {
    border: 0;
    height: 4px;
    background-image: linear-gradient(90deg, #fff, #f36e6e, #fff);    
    text-align: center;
    margin: 0 auto;
  }

/* Páguina Quiénes Somos */
/* Sección Privacidad y Seguridad */

.privacidad {
    width: 100%;
    height: auto;
}

.privacidad h2 {
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 2rem;
}

.privacidadSeguridad {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.info1 p,
.info2 p {
    font-size: 1.5rem;
    text-align: justify;
    padding: 0 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .privacidadSeguridad {
        flex-direction: row;
    }
}

@media (min-width: 1400px) {
    .privacidad h2 {
        font-size: 4rem;
    }

    .info1 p,
    .info2 p {
        font-size: 1.8rem;
    }
}

/* Página Catálogo */

/* Sección  Portada */

.portada__texto h2 {
    color: var(--blanco);
    text-align: center;
    text-transform: uppercase;
}

/* Página Contacto */

/* Sección Formulario */

.contacto {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.contactanos {
    display: grid;
    grid-template-rows: 1fr;
    padding-top: 3rem;
    padding-bottom: 5rem;
    width: 100%;
}

.contacto-textos {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contacto-textos h2 {
    text-align: center;
    font-size: 3rem;
    padding-bottom: 2rem;
    text-shadow: 1px 1px 10px #000000;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contacto-textos h3 {
    text-align: center;    
    padding-bottom: 2rem;
    font-size: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.color {
    color: var(--primario);
}

.contacto-textos a {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    color: var(--negro);
    padding: 0 2rem;
    font-weight: bold;
    text-align: center;
}
.contacto-textos i {
    color: var(--primario);
    padding-right: 1rem;
}

.formulario {
    width: 100%;
    padding: 0 2rem;
}

.formulario form .campo,
.formulario form textarea {
    width: 100%;
    padding: 1.5rem 1rem;
    font-size: 1.5rem;
    border: 1px solid var(--negro);
    margin-bottom: 2rem;
    border-radius: 3px;
    outline: 0px;
}

.formulario form textarea {
    max-width: 100%;
    min-height: 14rem;
    max-height: 15rem;
}

@media (min-width: 992px) {
    .contactanos {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-textos h2,
    .contacto-textos h3,
    .contacto-textos a {
        text-align: left;
    }

    .formulario {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Página Suplementos Nutricionales */

/*Sección Botones */

.botones {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.botones-s {
    margin-bottom: 2rem;
}

/* Sección Regresar */

.regresar__info {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 5rem 0;
}

.regresar__info a {
    font-size: 2rem;
    color: var(--primario);
    font-weight: bold;
    border: 1px solid var(--primario);
    padding: 2rem;
    border-radius: 5%;
}

@media (min-width: 992px){
    .regresar__info {
        text-align: right;
        padding-right: 2rem;
    }
}

/*Página Testosteronas y Anabólicos */
/* Seccion Menu */

.menuProductos {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.menuProductos__img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.menuProductos__img img {
    width: 70%;
}

.menuProductos__img a:hover img {
    filter: blur(.2rem);
}

@media (min-width: 992px) {
    .menuProductos__img {
        flex-direction: row;
        justify-content: space-around;
    }

    .menuProductos__img img {
        width: 100%;
    }
}

/* Páginas Xt-Labs */

.xtlabs {
    width: 100%;
    height: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.xtlabs__informacion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.xtlabs__informacion-img img {
    width: 70%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.xtlabs__informacion-texto p {
    text-align: justify;
    padding: 0 2rem 2rem 2rem;
}

@media (min-width: 992px) {
    .xtlabs__informacion {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .xtlabs__informacion-img {
        width: 50%;
    }

    .xtlabs__informacion-img img {
        width: 50%;
    }

    .xtlabs__informacion-texto {
        width: 50%;
        padding: 0;
    }
}

.botones {
    width: 100%;
    height: auto;
}

.botones__xtlabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .botones__xtlabs {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}