@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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');

* {
    scrollbar-width: thin;
    scrollbar-color: #FFE003 #ebebeb;
}

*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: #ebebeb;
}

*::-webkit-scrollbar-thumb {
    background-color: #FFE003;
    border-radius: 8px;
    border: 0px none #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', sans-serif;
}

a {
    text-decoration: none;
}

.text-accent {
    color: #FFE003;
}

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

.logo {
    width: 13.25rem;
}

header.sticky .logo {
    width: 10.25rem;
    transition: width 0.5s ease-in;
}

.contenedor {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    padding: 0 2rem;
}

header {
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}


header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

nav.meta {
    background-color: #1d2024;
    padding: 0.75rem 0;
    transition: padding 0.5s ease-in;
}

header.sticky nav.meta {
    background-color: #1d2024;
    padding: 0.2rem 0;
    transition: padding 0.5s ease-in;
}

nav.meta > .contenedor {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

nav.meta > .contenedor > .contacto > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.75rem;
}

nav.meta > .contenedor > .contacto > ul > li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 0.5rem;
    transition: font-size 0.5s ease-in;
}

header.sticky nav.meta > .contenedor > .contacto > ul > li {
    font-size: 0.75rem;
    transition: font-size 0.5s ease-in;
}

nav.meta > .contenedor > .contacto > ul > li a {
    color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
}

nav.meta > .contenedor > .contacto > ul > li p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
}

nav.meta > .contenedor > .contacto > ul > li a:hover {
    color: #FFE003;
    transition: color 0.4s ease-in;
}

nav.meta > .contenedor > .contacto > ul > li a span {
    font-weight: 500;
}

nav.meta > .contenedor > .contacto > ul > li svg {
    width: 1rem;
    fill: #e4c900;
    margin-right: 0.72rem;
    transition: width 0.5s ease-in;
}

header.sticky nav.meta > .contenedor > .contacto > ul > li svg {
    width: 0.8rem;
    transition: width 0.5s ease-in;
}

nav.meta > .contenedor > .redes-sociales > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 0.1rem;
    transition: colum-gap 0.5s ease-in;
}

header.sticky nav.meta > .contenedor > .redes-sociales > ul {
    column-gap: 0.2rem;
    transition: colum-gap 0.5s ease-in;
}

nav.meta > .contenedor > .redes-sociales > ul > li {
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

nav.meta > .contenedor > .redes-sociales > ul > li a {
    background-color: #FFE003;
    width: 4.25rem;
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -0.75rem 0;
    transition: all 0.5s ease-in;
}

header.sticky nav.meta > .contenedor > .redes-sociales > ul > li a {
    width: 2.5rem;
    height: 2.5rem;
    margin: -0.2rem 0;
    transition: all 0.5s ease-in;
}

nav.meta > .contenedor > .redes-sociales > ul > li a:hover {
    background-color: #e4c900;
    transition: 0.4s ease-in;
}

nav.meta > .contenedor > .redes-sociales > ul > li > a svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fff;
}

nav.principal {
    background-color: #fff;
    padding: 1.25rem 0;
}

nav.principal > .contenedor {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.menu-mobile {
    position: relative;
}
.menu-mobile ul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
    background-color: #fff;
    width: 100%;
    border-top: 1px solid #e1e1e1;
    position: absolute;
    left: 0;
    top: 1.2rem;
    padding: 2rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}
.menu-mobile ul > li {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.menu-mobile ul > span.separador {
    background-color: #4f4f4f;
    height: 0.1rem;
    width: 3rem;
}

.menu-mobile ul > li.menu-enlace a {
    color: inherit;
    padding: 0.8rem 0;
    position: relative;
}

.menu-mobile ul > li.menu-btn a {
    color: #fff;
    font-size: 0.88rem;
    text-transform: initial;
    font-weight: 400;
    letter-spacing: 0.11rem;
    background-color: #0cb153;
    padding: 0.6rem 1rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.48rem;
    border-radius: 0.3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}

.menu-mobile ul > li.menu-btn a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}

.menu-mobile ul > li.menu-btn a:hover {
    background-color: #0d8a43;
    box-shadow: 0;
    transition: background-color 0.4s ease-in;
}

.menu-mobile ul > li.menu-enlace a:hover {
    color: #e4c900;
    transition: color 0.4s ease-in;
}

.menu-mobile ul > li.menu-enlace a.active:before,
.menu-mobile ul > li.menu-enlace a:hover:before {
    content: '';
    width: 100%;
    border-bottom: 0.2rem solid #e4c900;
    position: absolute;
    right: 0;
    bottom: 0;
}

.menu-mobile ul > li.menu-enlace a.active:after,
.menu-mobile ul > li.menu-enlace a:hover:after {
    content: '';
    width: 0px;
    border-top: 0.4rem solid #e4c900;
    border-bottom: 0rem solid transparent;
    border-left: 0.4rem solid transparent;
    border-right: 0.4rem solid transparent;
    position: absolute;
    right: 0.3rem;
    bottom: -0.3rem;
}
nav.principal > .contenedor > .menu > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.5rem;
}

nav.principal > .contenedor > .menu > ul > li {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

nav.principal > .contenedor > .menu > ul > span.separador {
    background-color: #4f4f4f;
    height: 2rem;
    width: 0.05rem;
}

nav.principal > .contenedor > .menu > ul > li.menu-enlace a {
    color: inherit;
    padding: 0.8rem 0;
    position: relative;
}

nav.principal > .contenedor > .menu > ul > li.menu-btn a {
    color: #fff;
    font-size: 0.88rem;
    text-transform: initial;
    font-weight: 400;
    letter-spacing: 0.11rem;
    background-color: #0cb153;
    padding: 0.6rem 1rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.48rem;
    border-radius: 0.3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}

nav.principal > .contenedor > .menu > ul > li.menu-btn a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}

nav.principal > .contenedor > .menu > ul > li.menu-btn a:hover {
    background-color: #0d8a43;
    box-shadow: 0;
    transition: background-color 0.4s ease-in;
}

nav.principal > .contenedor > .menu > ul > li.menu-enlace a:hover {
    color: #e4c900;
    transition: color 0.4s ease-in;
}

nav.principal > .contenedor > .menu > ul > li.menu-enlace a.active:before,
nav.principal > .contenedor > .menu > ul > li.menu-enlace a:hover:before {
    content: '';
    width: 100%;
    border-bottom: 0.2rem solid #e4c900;
    position: absolute;
    right: 0;
    bottom: 0;
}

nav.principal > .contenedor > .menu > ul > li.menu-enlace a.active:after,
nav.principal > .contenedor > .menu > ul > li.menu-enlace a:hover:after {
    content: '';
    width: 0px;
    border-top: 0.4rem solid #e4c900;
    border-bottom: 0rem solid transparent;
    border-left: 0.4rem solid transparent;
    border-right: 0.4rem solid transparent;
    position: absolute;
    right: 0.3rem;
    bottom: -0.3rem;
}

#destacado {
    background-image: url(../img/background_destacado2-100.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 12rem;
    position: relative;
}

#destacado::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: .6;
    z-index: 0;
}

#destacado .contenedor {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

#destacado h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 3.8rem;
    font-weight: 200;
}

#destacado h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 10.45rem;
    font-weight: 700;
    padding-bottom: 1.15rem;
}

#destacado p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1.8;
    padding-bottom: 2.5rem;
    max-width: 42rem;
}

#destacado p strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

#destacado a {
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15rem;
    background-color: #ffe003;
    padding: 1rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
    transition: 0.4s ease-in;
}

#destacado a:hover {
    box-shadow: none;
    color:#fff;
    background-color: #1d2024;
    transition: 0.4s ease-in;
}

#destacado a svg {
    width: 2rem;
    height: 2rem;
    fill: #000;
    transition: 0.4s ease-in;
}

#destacado a:hover svg {
    fill: #fff;
    transition: 0.4s ease-in;
}

#la-empresa {
    background-image: url(../img/background-empresa.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 12rem;
    padding-bottom: 6rem;
}

#la-empresa .contenedor {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    column-gap: 4.5rem;
}

#la-empresa .contenedor > div[class^="col-"] {
    flex: calc(50% - 4.5rem);
    display: flex;
    flex-direction: column;
}

#la-empresa .contenedor > .col-0 {
    flex: 100% !important;
}

#la-empresa .contenedor > .col-0 h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    padding-bottom: 1.15rem;
    margin-bottom: 3.75rem;
    position: relative;
    text-align: left;
}

#la-empresa .contenedor > .col-0 h2:after {
    content: '';
    width: 4rem;
    border-bottom: 0.15rem solid #e4c900;
    bottom: 0;
    left: 0;
    position: absolute;
}

#la-empresa .contenedor > .col-1 {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

#la-empresa .contenedor > .col-1 figure {
    width: 100%;
}

#la-empresa .contenedor > .col-1 figure img {
    border-bottom-left-radius: 4rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}

#la-empresa .contenedor > .col-2 {
    align-items: flex-start;
    justify-content: center;
}

#la-empresa .contenedor > .col-2 .titulo {
    padding: 5.25rem 2.25rem 2.95rem 2.25rem;
    background-color: #1d2024;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
    margin-bottom: 2.75rem;
}

#la-empresa .contenedor > .col-2 .titulo h2 {
    font-family: 'Barlow', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

#la-empresa .contenedor > .col-2 .titulo h3 {
    font-family: 'Roboto', sans-serif;
    color: #e4c900;
    font-size: 14.75rem;
    font-weight: 500;
    position: absolute;
    margin-left: -6.5rem;
    top: -9.25rem;
}

#la-empresa .contenedor > .col-2 .descripcion {
    text-align: left;
    padding-left: 1.75rem;
    margin-bottom: 2rem;
    border-left: 0.3rem solid #e4c900;
}

#la-empresa .contenedor > .col-2 .descripcion p {
    font-family: 'Roboto', sans-serif;
    color: #5e5e5e;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2rem;
}

#la-empresa .contenedor > .col-2 .descripcion p:nth-last-child(1) {
    margin-bottom: 0;
}

#la-empresa .contenedor > .col-2 a.boton-mapa {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15rem;
    background-color: #000000;
    padding: 1rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}

#la-empresa .contenedor > .col-2 a.boton-mapa:hover {
    box-shadow: none;
    background-color: #1d2024;
    transition: 0.4s ease-in;
}

#la-empresa .contenedor > .col-2 a.boton-mapa svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}

#productos {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 8rem;
}

#productos .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#productos .contenedor > .titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 3rem;
    margin-bottom: 3.25rem;
}

#productos .contenedor > .titulo h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#productos .contenedor > .titulo p {
    font-family: 'Roboto', sans-serif;
    color: #5e5e5e;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.4;
}

#productos .contenedor > .lista-de-productos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 3rem;
}

#productos .contenedor > .lista-de-productos .item {
    flex: calc(25% - 3rem);
    background-color: #1d2024;
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0.15rem 0.15rem 1rem -0.2rem rgba(0, 0, 0, 0.3);
}

#productos .contenedor > .lista-de-productos .item img {
    border-bottom-left-radius: 1.5rem;
}

#productos .contenedor > .lista-de-productos .item .descripcion {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 1.25rem 2rem;
    text-align: center;
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#entrega-y-logistica {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

#entrega-y-logistica .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#entrega-y-logistica .contenedor > h2 {
    color: #FFE003;
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#entrega-y-logistica .contenedor > h3 {
    color: #1d2024;
    font-family: 'Barlow', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.75rem;
}

#entrega-y-logistica .contenedor > h3 svg {
    fill: #1d2024;
    width: 3.5rem;
    height: 3.5rem;
    bottom: -0.2rem;
    position: relative;
}

#entrega-y-logistica .contenedor > p {
    font-family: 'Roboto', sans-serif;
    color: #5e5e5e;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.75rem;
}

#entrega-y-logistica .contenedor > .linea {
    width: 4rem;
    border-bottom: 0.15rem solid #FFE003;
    margin-bottom: 2.25rem;
}

#entrega-y-logistica .contenedor > .flota-propia {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    margin-bottom: 2.25rem;
}

#entrega-y-logistica .contenedor > .flota-propia li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    color: #000000;
    font-family: 'Barlow', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}

#entrega-y-logistica .contenedor > .flota-propia li .lista-circulo {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #FFE003;
    border-radius: 50%;
}

#entrega-y-logistica .contenedor > h5 {
    color: #000;
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
}

#entrega-y-logistica .contenedor > .telefonos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    margin-bottom: 3.5rem;
}

#entrega-y-logistica .contenedor > .telefonos li a {
    color: #1d2024;
    font-family: 'Barlow', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
}

#entrega-y-logistica .contenedor > .telefonos li a:hover {
    color: #000;
    transition: 0.4s ease-in;
}

#entrega-y-logistica .contenedor > .telefonos span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    color: #848484;
    font-family: 'Barlow', sans-serif;
    font-size: 3.5rem;
    font-weight: 200;
}

#entrega-y-logistica .contenedor > a.boton-consultar-zonas {
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15rem;
    background-color: #ffe003;
    padding: 1rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
    transition: 0.4s ease-in;
}

#entrega-y-logistica .contenedor > a.boton-consultar-zonas:hover {
    box-shadow: none;
    color:#fff;
    background-color: #1d2024;
    transition: 0.4s ease-in;
}

#entrega-y-logistica .contenedor > a.boton-consultar-zonas svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #000;
    transition: 0.4s ease-in;
}

#entrega-y-logistica .contenedor > a.boton-consultar-zonas:hover svg {
    fill: #fff;
    transition: 0.4s ease-in;
}

#contacto {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

#contacto .contenedor {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 5rem;
    position: relative;
}

#contacto .contenedor > .col-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: calc(60% - 5rem);
}

#contacto .contenedor > .col-1 h2 {
    color: #1d2024;
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

#contacto .contenedor > .col-1 p {
    font-family: 'Roboto', sans-serif;
    color: #5e5e5e;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

#contacto .contenedor > .col-1 .contacto {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

#contacto .contenedor > .col-1 .contacto li {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 0.75rem;
}

#contacto .contenedor > .col-1 .contacto .linea {
    position: relative;
    height: 3rem;
    border-right: 0.1rem solid #adadad;
    margin: 0 1.5rem;
}

#contacto .contenedor > .col-1 .contacto li > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 0.05rem;
}

#contacto .contenedor > .col-1 .contacto li .titulo {
    font-family: 'Roboto', sans-serif;
    color: #1d2024;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.15rem;
}

#contacto .contenedor > .col-1 .contacto li a {
    font-family: 'Roboto', sans-serif;
    color: #383838;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

#contacto .contenedor > .col-1 .contacto li svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: #1d2024;
    margin-top: 0.75rem;
}


#contacto .contenedor > .col-1 > .redes-sociales {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
}

#contacto .contenedor > .col-1 > .redes-sociales > li {
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#contacto .contenedor > .col-1 > .redes-sociales > li a {
    background-color: #1d2024;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contacto .contenedor > .col-1 > .redes-sociales > li a:hover {
    background-color: #000;
    transition: 0.4s ease-in;
}

#contacto .contenedor > .col-1 > .redes-sociales > li > a svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fff;
}

#contacto .contenedor > .col-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: calc(40% - 5rem);
}

#contacto .contenedor > .col-2 .bg-right {
    background-color: #e4c900;
    width: 100%;
    height: 100%;
    left: 78%;
    top: 0;
    position: absolute;
    z-index: 1;
}


#contacto .contenedor > .col-2 .mapa-ubicacion {
    width: 100%;
    z-index: 2;
}

#contacto .contenedor > .col-2 .mapa-ubicacion img {
    border-bottom-right-radius: 4rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
}

footer {
    background-color: #1d2024;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer > .contenedor {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    column-gap: 1.5rem;
}

footer > .contenedor .logo {
    width: 6rem;
    position: relative;
}

footer > .contenedor .logo svg {
    position: absolute;
    left: 0;
    bottom: 0;
}

footer > .contenedor .legal p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 1.25rem 1rem 1.25rem 0rem;
}

#formulario-contacto {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.form-control {
    flex: calc(50% - 1.5rem);
    position: relative;
}

.form-control.full-width {
    flex: 100%;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #757575;
    font-family: 'Roboto', sans-serif;
    color: #000;
    font-size: 1.15rem;
    font-weight: 400;
    position: relative;
    margin-bottom: 2rem;
}

input[type="submit"] {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15rem;
    background-color: #000;
    padding: 1rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgba(0, 0, 0, 0.3);
    border: none;
}

input[type="submit"]:hover {
    box-shadow: none;
    background-color: #1d2024;
    transition: 0.4s ease-in;
    cursor: pointer;
}

:focus-visible {
    outline: none;
    box-shadow: 0.3rem 0.5rem 0.6rem -0.4rem rgb(0 0 0 / 30%);
    transition: 0.2s ease-in;
}

::placeholder {
    font-weight: 300;
    color: #1d2024;
}

#btn-ir-arriba {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #FFE003;
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0.2rem 0.2rem 0.8rem -0.2rem rgba(0, 0, 0, 0.3);
}

#btn-ir-arriba svg {
    fill: #000;
    width: 2rem;
    height: 2rem;
}

#btn-ir-arriba:hover {
    cursor: pointer;
    background-color: #e4c900;
}

#btn-ir-arriba:active {
    background-color: #e4c900;
}

#btn-ir-arriba.show {
    opacity: 1;
    visibility: visible;
}

label.error {
    color: #e52966;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    position: absolute;
    left: 0;
    bottom: 0.75rem;
}

#contacto .contenedor > .col-1 .form-response {
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(255 255 255 / 80%);
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contacto .contenedor > .col-1 .form-response > p {
    text-align: center;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
}

#contacto .contenedor > .col-1 .form-response > p > span {
    font-weight: 500;
}

#contacto .contenedor > .col-1 .form-response .icon svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

#contacto .contenedor > .col-1 .form-response .icon.success svg {
    fill: #36b888;
}

#contacto .contenedor > .col-1 .form-response .icon.error svg {
    fill: #e52966;
}

.btn-menu-mobile {
    width: 2rem;
    height: 1.45rem;
    display: none;
}
.btn-menu-mobile #lanzador {
    position: absolute;
    left: -9999px;
}
.btn-menu-mobile label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;  
    cursor: pointer;
}
.menu-mobile-linea {
    height: 2px;
    background-color: #000;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}
#lanzador:checked ~ label .menu-mobile-linea:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
#lanzador:checked ~ label .menu-mobile-linea:nth-child(2) {
    opacity: 0;
}
#lanzador:checked ~ label .menu-mobile-linea:nth-child(3) {
    transform: translateY(-9px)rotate(-45deg);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    nav.meta > .contenedor > .contacto > ul {
        column-gap: 0.15rem !important;
    }
    nav.meta > .contenedor > .contacto > ul > li svg {
        width: 1.25rem !important;
    }
    nav.meta > .contenedor > .contacto > ul > li a {
        width: 3rem !important;
        height: 3rem !important;
        margin: -0.75rem 0;
    }
    nav.meta > .contenedor > .redes-sociales > ul > li a {
        width: 3rem;
        height: 3rem;
    }
    nav.principal > .contenedor {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    nav.principal > .contenedor h3 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    nav.principal > .contenedor > .menu {
        display: none;
    }
    .btn-menu-mobile {
        display: inline-block;
    }
    #destacado h4 {
        font-size: 1.8rem !important;
    }
    #destacado h2 {
        font-size: 4.45rem !important;
    }
    #destacado p {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
    }
    #destacado a {
        font-size: 1rem !important;
        letter-spacing: 0 !important;
        padding: 1rem !important;
        column-gap: 0.5rem !important;
    }
    #la-empresa .contenedor > div[class^="col-"] {
        flex: 100% !important;
    }
    #la-empresa .contenedor > .col-1 {
        order: 1 !important;
        margin-top: 2rem !important;
    }
    #la-empresa .contenedor > .col-2 {
        order: 0 !important;
    }
    #la-empresa .contenedor > .col-2 .titulo {
        padding: 2.95rem 2.25rem !important;
    }
    #la-empresa .contenedor > .col-2 .titulo h3 {
        font-size: 6.5rem !important;
        position: relative !important;
        margin-left: -1rem !important;
        top: unset !important;
    }
    #productos .contenedor > .titulo {
        text-align: center !important;
    }
    #productos .contenedor > .lista-de-productos .item {
        flex: calc(100% - 3rem) !important;
    }
    #entrega-y-logistica .contenedor > h3 {
        font-size: 2.75rem !important;
    }
    #entrega-y-logistica .contenedor > h3 svg {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    #entrega-y-logistica .contenedor > p {
        text-align: center;
    }
    #entrega-y-logistica .contenedor > .flota-propia {
        flex-direction: column;
        row-gap: 2rem;
    }
    #entrega-y-logistica .contenedor > h5 {
        font-size: 1.25rem;
    }
    #entrega-y-logistica .contenedor > .telefonos {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 1rem;
    }
    #entrega-y-logistica .contenedor > .telefonos span {
        display: none;
    }
    #contacto .contenedor > .col-1 {
        flex: 100% !important;
    }
    #contacto .contenedor > .col-1 h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    #contacto .contenedor > .col-1 p {
        text-align: center;
    }
    .form-control {
        flex: 100%;
    }
    #contacto .contenedor > .col-1 .contacto {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }
    #contacto .contenedor > .col-1 .contacto li {
        text-align: center;
    }
    #contacto .contenedor > .col-1 .contacto li svg {
        display: none;
    }
    #contacto .contenedor > .col-1 .contacto li > div {
        align-items: center;
    }
    #contacto .contenedor > .col-1 .contacto li .titulo {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    #contacto .contenedor > .col-1 .contacto li a {
        font-size: 1.25rem;
    }
    footer > .contenedor .logo {
        width: 12rem;
    }
    footer > .contenedor .legal p {
        font-size: 0.8rem;
        padding: 0.5rem 1rem 0.5rem 0;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {    
    nav.meta > .contenedor > .contacto > ul {
        column-gap: 0.25rem;
    }
    nav.meta > .contenedor > .contacto > ul > li p {
        display: none;
    }
    nav.meta > .contenedor > .contacto > ul > li svg {
        width: 1.5rem;
        fill: #000;
        margin: 0;
    }
    header.sticky nav.meta > .contenedor > .contacto > ul > li svg {
        width: 1rem;
    }
    nav.meta > .contenedor > .contacto > ul > li a {
        background-color: #FFE003;
        width: 4.25rem;
        height: 4.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -0.75rem 0;
    }
    header.sticky nav.meta > .contenedor > .contacto > ul > li a {
        width: 3rem;
        height: 3rem;
        margin: -0.2rem 0;
    }
    header.sticky nav.meta > .contenedor > .redes-sociales > ul > li a {
        width: 3rem;
        height: 3rem;
    }
    nav.principal > .contenedor > .menu > ul > li.menu-btn a p {
        display: none;
    }
    nav.principal > .contenedor > .menu > ul > li.menu-btn a {
        padding: 1rem;
    }
    nav.principal > .contenedor > .menu > ul > li.menu-btn a svg {
        width: 2rem;
        height: 2rem;
    }
    nav.principal > .contenedor > .menu > ul {
        column-gap: 0.5rem;
    }
    #la-empresa {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #la-empresa .contenedor > .col-1 {
        flex: calc(27% - 4.5rem) !important;
    }
    #la-empresa .contenedor > .col-2 {
        flex: calc(73% - 4.5rem) !important;
    }
    #productos {
        padding-top: 0rem;
        padding-bottom: 5rem;
    }
    #productos .contenedor {
        align-items: flex-start;
    }
    #productos .contenedor > .titulo {
        align-items: flex-start;
    }
    #productos .contenedor > .lista-de-productos .item {
        flex: calc(33% - 3rem);
    }
    #entrega-y-logistica {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #entrega-y-logistica .contenedor > .telefonos li a {
        font-size: 2.75rem;
    }
    #contacto {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #contacto .contenedor > .col-2 {
        display: none;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
    html {
        font-size: 14px;
    }
}