/******************************
*   Tipografias
******************************/
@import url('all.css');
@import url('typo.css');

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;
    --rojo:  193, 9, 36;
    --text: 45, 45, 45;
}


::selection {
    color: rgb(var(--blanco));
    background: rgba(var(--negro), .8);
}
::-moz-selection {
    color: rgb(var(--blanco));
    background: rgba(var(--negro), .8);
}
::-webkit-selection {
    color: rgb(var(--blanco));
    background: rgba(var(--negro), .8);
}

/******************************
*   Reset
******************************/
* {
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Proxima Nova';
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--text)); 
}
figure {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: 20px;
}
li + li { margin-top: 15px; }
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    font-style: normal;
}
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgb(var(--dark));
    background: rgb(var(--blanco));
    border-radius: 100px;
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: ;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: rgba(var(--dark), .6); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }
strong { font-weight: bold; }
p { margin: 0; }
p + *,
* + p,
* + ol,
* + ul,
h2 + *,
h3 + *,
h4 + *,
h5 + *,
h6 + * { margin-top: 20px; }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: 40px; }

ul > li::marker,
ul > li > ul > li::marker { color: rgb(var(--name)); }

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 70px);
    position: relative;
}
.m__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.full__h { min-height: calc(100vh - 70px); }
main section  {
    padding: 80px 0;
    position: relative;
}

/* Head Section */
.h__sect + *,
* + .h__sect { margin-top: 60px; }
.h__sect { text-align: center; }
.h__sect h2,
.h__sect h3 {
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
}
.h__sect h2::after,
.h__sect h3::after {
    display: block;
    content: '';
    width: 100px;
    height: 2px;
    background: rgb(var(--rojo));
    margin: 0 auto;
}
.h__sect p { font-size: 18px; }

/* CTA */
* + .c__cta { margin-top: 40px; }
.c__cta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}
button.cta {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cta,
a.cta {
    display: inline-block;
    white-space: nowrap;
    min-width: 130px;
    text-align: center;
    line-height: 1;
    padding: 12px 20px;
    color: rgb(var(--blanco), 1);
    position: relative;
}

/******************************
*   Home
******************************/
/* Inicio */
.inicio { padding: 0; }

/* Retails */
.cont__retails {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.cont__retails a { display: flex; }
.cont__retails a figure {
    height: 40px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cont__retails a figure img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.cont__retails a:nth-child(1) figure,
.cont__retails a:nth-child(2) figure,
.cont__retails a:nth-child(12) figure,
.cont__retails a:nth-child(13) figure,
.cont__retails a:nth-child(15) figure { height: 50px; }


/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {

.cont__retails { gap: 60px; }
.cont__retails a figure { height: 50px; }
.cont__retails a:hover figure {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 10px rgba(var(--negro), .3));
    will-change: filter;
}

.cont__retails a:nth-child(1) figure,
.cont__retails a:nth-child(2) figure,
.cont__retails a:nth-child(12) figure,
.cont__retails a:nth-child(13) figure,
.cont__retails a:nth-child(15) figure { height: 60px; }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
html { scroll-padding: 105px; }
h1 { font-size: 48px; }
h2 { font-size: 40px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }
main { min-height: calc(100vh - 105px); }
.full__h { min-height: calc(100vh - 105px); }
.h__sect p { font-size: 20px; }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}





header ul,
footer ul,
header ol,
footer ol {
    padding-inline-start: 0;
    list-style: none;
}
header li + li,
footer li + li { margin-top: 0; }


/******************************
*   Header
******************************/
.header {
    -webkit-box-shadow: 0 5px 10px 0 rgb(var(--negro), .3);
    box-shadow: 0 5px 10px 0 rgb(var(--negro), .3);
    background: rgb(var(--negro));
    color: rgb(var(--blanco));
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 300;
}
.header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 70%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(var(--rojo),0) 0%, rgba(var(--rojo), 1) 100%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.header.active::before { opacity: 0; }
.cont__menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 5px;
}
.logo {
    width: 120px;
    position: relative;
    z-index: 1;
}
.logo a {
    display: flex;
    overflow: hidden;
}
.logo a span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.menu nav ul li a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
}

.btn__mob {
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: relative;
}
.btn__mob > div {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn__mob > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--blanco), 1);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__mob > div span + span { margin-top: 6px; }
.btn__mob.active > div span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__mob.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__mob.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}


/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.menu {
    position: absolute;
    top: 0;
    left: -100%;
    max-width: 500px;
    width: calc(100% - 70px);
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    background: linear-gradient(to bottom, rgb(var(--negro)) 60%, rgb(var(--rojo)) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--negro), .6);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.menu div nav { padding: 70px 15px; }
.menu nav ul li + li { border-top: 1px solid rgba(var(--blanco), .2) }
.active .menu { left: 0; }
.active .menu::before {
    opacity: 1;
    pointer-events: all;
}

}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
.cont__menu {
    padding-left: 30px;
    padding-right: 20px;
}
.logo { width: 180px; }

.menu nav ul {
    display: flex;
    align-items: center;
}
.menu nav ul li a { padding: 40px 30px; }

.btn__mob { display: none; }


}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}


/******************************
*   Footer
******************************/
.footer {
    background: linear-gradient(to bottom, rgb(var(--rojo)) 0%, rgb(var(--negro)) 90%);
    color: rgb(var(--blanco));
    text-align: center;
    padding: 30px 0;
}
.footer a { text-decoration: underline; }
.fil__foo {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.foo__col:nth-child(1) figure {
    width: 60px;
    min-width: 60px;
}
 

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
.fil__foo { justify-content: space-between; }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
.footer .container { width: 90%; }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}