:root {
    --negro: #000000;
    --blanco: #ffffff;
    --morado: #5E0080;
    --amarillo: #F4EE4E;
    --gris: #F0F0F0;
    --verde: green;
}

html {
    box-sizing: border-box;
    /*conversor de px a rem*/
    font-size: 62.5%;
    /*border box*/
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


/*
Encabezados
font-family: 'Bebas Neue', cursive;
Primario
font-family: 'Source Sans Pro', sans-serif; 
*/

body {
    font-size: 1.6rem;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.3;
}

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


/*Encabezados*/

h1,
h2,
h3 {
    font-family: 'Bebas Neue', cursive;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3.3rem;
}

h3 {
    font-size: 3rem;
}


/**/


/*Generales*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.815);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
    z-index: 1000;
}

.modal.is-visible {
    visibility: visible;
    opacity: 1;
}

.modal-dialog-celular {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: var(--blanco);
    overflow: auto;
    cursor: default;
    padding: 0rem;
    z-index: -10;
}

.modal-dialog>* {
    padding: 1rem;
}

.modal-header,
.modal-footer {
    background: var(--negro);
    color: var(--blanco);
}

.modal-footer {
    margin-top: 3rem;
    background-color: var(--blanco);
}

.modal-footer a {
    color: var(--negro);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header .close-modal {
    font-size: 1.5rem;
}

.modal p+p {
    margin-top: 1rem;
}

.modal input[type="email"],
.modal input[type="password"] {
    background-color: var(--blanco);
    padding: 1rem;
    border: 1px solid grey;
    margin: 1.3rem 0;
    width: 100%;
}

.modal label {
    font-weight: bold;
}

.modal button:nth-child(2) {
    padding: .5rem 1rem;
    border: 1px solid var(--gris);
    border-radius: .7rem;
    transition: .2s all ease-in;
    background-color: transparent;
    color: var(--gris);
    transition: .2s all ease-in;
    cursor: pointer;
}

.modal button:nth-child(1) {
    padding: 1rem;
    border: 1px solid var(--gris);
    border-radius: .7rem;
    transition: .2s all ease-in;
    background-color: var(--amarillo);
    color: var(--negro);
    transition: .2s all ease-in;
    cursor: pointer;
}

.enlaces-celular a {
    display: block;
    font-size: 3rem;
    font-weight: bold;
}

.enlaces-celular a:last-of-type {
    margin-bottom: 3rem;
}

.enlaces-celular a:first-of-type {
    margin-top: 3rem;
}


/* ANIMATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

[data-animation] .modal-dialog {
    opacity: 0;
    transition: all 0.5s var(--bounceEasing);
}

[data-animation].is-visible .modal-dialog {
    opacity: 1;
    transition-delay: 0.2s;
}

[data-animation="slideInOutDown"] .modal-dialog {
    transform: translateY(100%);
}

[data-animation="slideInOutTop"] .modal-dialog {
    transform: translateY(-100%);
}

[data-animation="slideInOutLeft"] .modal-dialog {
    transform: translateX(-100%);
}

[data-animation="slideInOutRight"] .modal-dialog {
    transform: translateX(100%);
}

[data-animation="zoomInOut"] .modal-dialog {
    transform: scale(0.2);
}

[data-animation="rotateInOutDown"] .modal-dialog {
    transform-origin: top left;
    transform: rotate(-1turn);
}

[data-animation="mixInAnimations"].is-visible .modal-dialog {
    animation: mixInAnimations 2s 0.2s linear forwards;
}

[data-animation="slideInOutDown"].is-visible .modal-dialog,
[data-animation="slideInOutTop"].is-visible .modal-dialog,
[data-animation="slideInOutLeft"].is-visible .modal-dialog,
[data-animation="slideInOutRight"].is-visible .modal-dialog,
[data-animation="zoomInOut"].is-visible .modal-dialog,
[data-animation="rotateInOutDown"].is-visible .modal-dialog {
    transform: none;
}

@keyframes mixInAnimations {
    0% {
        transform: translateX(-100%);
    }
    10% {
        transform: translateX(0);
    }
    20% {
        transform: rotate(20deg);
    }
    30% {
        transform: rotate(-20deg);
    }
    40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-15deg);
    }
    60% {
        transform: rotate(10deg);
    }
    70% {
        transform: rotate(-10deg);
    }
    80% {
        transform: rotate(5deg);
    }
    90% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.slider-composition {
    align-items: center;
    display: flex;
    height: auto;
    width: 100%;
    justify-content: center;
}


/*Animation*/

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-37rem * 4))
    }
}


/*Estilos*/

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-37rem * 4));
        transform: translateX(calc(-37rem * 4));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-37rem * 4));
        transform: translateX(calc(-37rem * 4));
    }
}

.slider {
    -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: auto;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .slider::before,
    .slider::after {
        background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
        content: "";
        height: 30rem;
        position: absolute;
        width: 35rem;
        z-index: 2;
    }
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 50s linear infinite;
    animation: scroll 50s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(35rem * 8);
}

.slider .slide {
    height: auto;
    width: 35rem;
    margin-right: 2rem;
}

input[id^="spoiler"] {
    display: none;
}


/* Estilo botón clicable */

input[id^="spoiler"]+label {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    padding: 5px 20px;
    background-color: rgb(225, 225, 225);
    border-radius: .3rem;
    padding: 1rem;
    cursor: pointer;
    transition: .3s ease-in;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    input[id^="spoiler"]+label {
        margin-top: 0rem;
    }
}

input[id^="spoiler"]+label:hover {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    padding: 5px 20px;
    background-color: var(--gris-claro);
    padding: 1rem;
    cursor: pointer;
    color: var(--negro);
    transition: .3s ease-in;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    input[id^="spoiler"]+label:hover {
        margin-top: 0rem;
    }
}


/* Estilo botón cuando su INPUT está seleccionado */

input[id^="spoiler"]:checked+label {
    color: #333;
    background: #ccc;
    transition: .3s ease-in;
    margin-top: 1rem;
}


/* Estilo caja SPOILER (inicialmente oculto) */

input[id^="spoiler"]~.spoiler {
    width: 90%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 10px auto 0;
    transition: .3s ease-in;
}


/* Estilo caja SPOILER cuando su INPUT está seleccionado */

input[id^="spoiler"]:checked+label+.spoiler {
    height: auto;
    opacity: 1;
    margin-bottom: 2rem;
    transition: .3s ease-in;
}


/* Estilo botón cuando su INPUT está seleccionado */

input[id^="spoiler"]:checked+label {
    color: #333;
    background: #ccc;
    transition: .3s ease-in;
}


/* Estilo caja SPOILER (inicialmente oculto) */

input[id^="spoiler"]~.spoiler {
    width: 90%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 10px auto 0;
    transition: .3s ease-in;
}


/* Estilo caja SPOILER cuando su INPUT está seleccionado */

input[id^="spoiler"]:checked+label+.spoiler {
    height: auto;
    opacity: 1;
    margin-bottom: 2rem;
    transition: .3s ease-in;
}

.tooltip {
    position: relative;
    width: 100%;
}

.tooltip:hover .tooltip-box {
    opacity: 1;
}

.tooltip-box {
    opacity: 0;
    position: absolute;
    background-color: #000000cc;
    z-index: 500;
    padding: 1rem;
    border-radius: 1rem;
    width: 15rem;
    height: auto;
    top: auto;
    bottom: auto;
    color: var(--blanco);
    font-size: 1.3rem;
    transition: .2s all ease-in;
}

.tooltip-box p {
    border-bottom: 1px solid var(--gris-claro);
    display: inline-block;
}

.mostrar-128px {
    display: block;
}

@media (min-width: 1080px) {
    .mostrar-128px {
        display: none;
    }
}

.mostrar-768px {
    display: none;
}

@media (min-width: 1080px) {
    .mostrar-768px {
        display: block;
    }
}

.alinear-abajo {
    align-items: flex-end;
}

span {
    color: var(--morado);
    text-transform: uppercase;
    font-weight: 700;
}

.separador {
    margin: 8rem 0;
}

.alinear-vertical {
    align-items: center;
}

.centrar-texto {
    text-align: center;
}

.texto-derecha {
    text-align: end;
}

a {
    text-decoration: none;
    color: var(--negro);
}

.amarillo {
    color: var(--amarillo);
}

img {
    width: 100%;
}


/*Dividir*/

@media (min-width: 1080px) {
    .dividir {
        display: flex;
        justify-content: space-between;
    }
}

.flex {
    display: flex;
    justify-content: space-between;
}

.start {
    display: flex;
    justify-content: flex-start;
}

.evenly {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.center {
    display: flex;
    justify-content: center;
}

.dos-partes {
    flex-basis: calc(50% - 2rem);
}

.tres-partes {
    flex-basis: calc(33.3% - 2rem);
}

.cuatro-partes {
    flex-basis: calc(25% - 2rem);
}

.cinco-partes {
    flex-basis: calc(20% - 2rem);
}

.diez {
    flex-basis: calc(10% - 2rem);
}

.diez-0 {
    flex-basis: calc(10%);
}

.veinte {
    flex-basis: calc(20% - 2rem);
}

.veinte-0 {
    flex-basis: calc(20%);
}

.treinta {
    flex-basis: calc(30% - 2rem);
}

.treinta-0 {
    flex-basis: calc(30%);
}

.treinta-1 {
    flex: 2;
}

.cuarenta {
    flex-basis: calc(40% - 2rem);
}

.cuarenta-0 {
    flex-basis: calc(40%);
}

.cuarenta-1 {
    flex-basis: calc(40% - 1rem);
}

.cincuenta {
    flex-basis: calc(50% - 2rem);
}

.cincuenta-0 {
    flex-basis: calc(50%);
}

.sesenta {
    flex-basis: calc(60% - 2rem);
}

.sesenta-0 {
    flex-basis: calc(60%);
}

.setenta {
    flex-basis: calc(70% - 2rem);
}

.setenta-0 {
    flex-basis: calc(70%);
}

.ochenta {
    flex-basis: calc(80% - 2rem);
}

.ochenta-0 {
    flex-basis: calc(80%);
}

.noventa {
    flex-basis: calc(90% - 2rem);
}

.noventa-0 {
    flex-basis: calc(90%);
}

.cien {
    flex-basis: calc(100% - 2rem);
}

.cien-0 {
    flex-basis: calc(100%);
}


/*Final Generales*/


/*Botonera*/

.btn-general {
    background-color: var(--morado);
    padding: 1rem 1.5rem;
    border: none;
    text-transform: uppercase;
    color: var(--blanco);
    transition: .3s all ease-in;
    display: inline-block;
    margin: 1rem 0;
}

.btn-general:hover {
    background-color: var(--amarillo);
    color: var(--negro);
}

input[type="submit"] {
    background-color: var(--morado);
    padding: 1rem 1.5rem;
    border: none;
    text-transform: uppercase;
    color: var(--blanco);
    transition: .3s all ease-in;
    display: inline-block;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    margin-top: 2rem;
}

input[type="submit"]:hover {
    background-color: var(--amarillo);
    color: var(--negro);
}


/*Final Botonera*/

.barra-estatica {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.barra {
    background-color: var(--negro);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logotipo a {
    font-size: 3rem;
    color: var(--blanco);
    margin-bottom: 1rem;
}

.enlaces a {
    color: var(--blanco);
    margin-right: 1rem;
    text-align: 2rem;
    transition: .2s all ease-in;
}

.enlaces a:hover {
    color: var(--amarillo);
}

@media (min-width: 1080px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.site-header1 {
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1080px) {
    .site-header1 img {
        width: 40rem;
        margin-bottom: 3rem;
    }
}

.site-header1 h3 {
    margin-bottom: 0;
    font-weight: 400;
}

.site-header2 {
    background-color: #F2F2F2;
}

.site-header h1 {
    font-size: 6rem;
    color: var(--negro);
    font-weight: 400;
    margin-top: 0;
}

.site-header1 .logo-arcos {
    background-color: var(--negro);
    padding: 1rem;
    width: 20rem;
    margin-right: 3rem;
}

.site-header1 .logo-mercado {
    width: 20rem;
}

.site-header p {
    color: var(--negro);
}

.oficios h3 {
    font-weight: 400;
    font-size: 2.5rem;
}

.oficios p {
    font-size: 2.3rem;
    font-weight: 700;
}

.fondo-gris {
    background-color: var(--gris);
    padding: 1rem;
}

.img-barra img {
    width: 90rem;
}

.gris-1 h3 {
    color: var(--morado);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0;
}

.gris-1 h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 1rem;
}

.gris-1 li {
    font-size: 2rem;
    list-style: none;
}

.gris-1 li svg {
    color: var(--verde);
}

.arco-germany h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

.arco-germany .opciones li {
    list-style: none;
}

.medidas-sierra {
    background-color: var(--gris);
    padding: 1rem;
}

@media (min-width: 1080px) {
    .medidas-sierra {
        height: 15rem;
    }
}

.sierra img {
    display: none;
}

@media (min-width: 1080px) {
    .sierra img {
        display: inline-block;
        width: 10rem;
    }
}

.sierra-site {
    background-color: var(--gris);
    padding: 1rem;
}

@media (min-width: 1080px) {
    .sierra-site {
        margin-top: 19rem;
    }
}

.medidas-sierra p {
    font-size: 2rem;
}

.encabezado-multi p {
    color: var(--morado);
    font-size: 2rem;
}

.encabezado-multi h2 {
    margin-bottom: 0;
}

.encabezado-multi h2 {
    margin-top: 0;
}

.encabezado-multi h2:nth-child(3) {
    margin-left: 7rem;
    margin-bottom: 2rem;
}

.multi p {
    margin: 0;
    background-color: var(--negro);
    padding: 1rem;
    text-align: center;
    color: var(--blanco);
    margin-bottom: 1.5rem;
}

.card img {
    margin: 0;
    padding: 0;
}

.acciones svg {
    color: var(--verde);
    font-size: 3rem;
}

.mas-modelos h3 {
    color: var(--amarillo);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

.fondo-negro {
    background-color: var(--negro);
    padding: 1rem;
}

@media (min-width: 1080px) {
    .fondo-negro {
        height: 20rem;
    }
}

.mas-modelos p {
    font-size: 1.9rem;
    color: var(--amarillo);
}

.mas-modelos h2 {
    color: var(--blanco);
}

@media (min-width:1080px) {
    .mas-modelos {
        margin-top: 15rem;
        background-color: var(--negro);
    }
}

.bkg-negro {
    background-color: var(--negro);
}

.descripcion-producto h3 {
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2rem;
}

.acero {
    background-color: var(--blanco);
    padding-top: 2rem;
}

.acero h2 {
    color: var(--negro);
    font-size: 3.7rem;
}

.acero p {
    color: var(--negro);
    font-size: 2rem;
    font-weight: 400;
}

.barra-productos {
    text-align: center;
    background-color: var(--gris);
    padding: 2rem;
    position: sticky;
    position: -webkit-sticky;
    top: 5.9rem;
    z-index: 1;
    width: 100%;
}

.barra-productos a {
    margin-right: 1rem;
    text-decoration: underline;
    font-size: 1.6rem;
    color: var(--morado);
    font-weight: bold;
}

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

.contenedor-anuncios fieldset {
    padding: 0 1rem;
}

.footer {
    background-color: rgb(223, 223, 223);
    padding: 1rem;
}

.footer a {
    font-size: 1.7rem;
    display: block;
    color: var(--morado);
}

.logo-footer a {
    font-size: 2.5rem;
    font-weight: bold;
}

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

.medios svg {
    margin-right: 1rem;
}

.medios svg:hover {
    font-size: 2rem;
}

.medios svg:first-of-type {
    margin-left: 1rem;
}

.contenedor-formulario {
    max-width: 90rem;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

label {
    display: block;
    font-weight: bold;
}

.inputs {
    display: inline-block;
    width: 100%;
    background-color: var(--gris);
    border: 1px solid var(--morado);
    padding: 1rem;
    margin-bottom: 1rem;
}

input:focus,
input:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

textarea:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

@media (min-width: 1080px) {
    .formulario {
        width: 90rem;
    }
}

.opciones h2 {
    background-color: var(--amarillo);
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
}

.btn-whatsapp {
    position: fixed;
    top: 1;
    right: 0;
    bottom: 0;
    left: 1;
    display: inline-block;
    z-index: 10000000;
    align-items: center;
}

.btn-whatsapp a {
    display: inline-block;
    background-color: rgb(0, 159, 5);
    color: var(--blanco);
    padding: 1rem;
    border-radius: .6rem;
    margin: 1rem;
    z-index: 10000000;
}

.btn-whatsapp svg {
    font-size: 2rem;
}

.exito p {
    color: forestgreen;
}

.error p {
    color: red;
}

.productos-menu p {
    font-weight: normal;
    font-size: 2rem;
    text-align: center;
    display: inline-block;
    background-color: var(--negro);
    color: var(--blanco);
    width: 100%;
    padding: 1.3rem;
}

.navegacion-celular a {
    display: block;
    font-size: 1.7rem;
    color: var(--morado);
    margin-bottom: 1rem;
    text-align: center;
}

.logotipo em {
    color: var(--verde);
    font-style: normal;
}

.logotipo em:nth-child(1) {
    color: red;
    font-style: normal;
}

.traductor span {
    color: var(--negro);
    text-transform: lowercase;
    font-weight: 400;
}

.contacto-medios svg {
    font-size: 4rem;
}

.logotipo img {
    width: 23rem;
}

.segueta img {
    width: 10rem;
}

.medidas {
    margin: 0 auto;
}

.medidas li {
    font-size: 2.7rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 3rem;
    text-align: center;
}