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

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;

    --green-900: 1, 18, 4;      /* verde casi negro */
    --green-800: 2, 22, 6;      /* verde muy oscuro */
    --green-700: 6, 44, 7;      /* verde oscuro */
    --green-600: 13, 69, 15;    /* verde oscuro medio */
    --green-500: 43, 142, 36;   /* verde medio */
    --green-400: 102, 185, 0;   /* verde medio claro */
    --green-300: 150, 193, 28;  /* verde claro */

    --yellow-400: 255, 238, 46;

    --plyr-color-main: #2b8e24;
}


::selection {
    color: rgb(var(--green-900));
    background: rgb(var(--green-300));
}
::-moz-selection {
    color: rgb(var(--green-900));
    background: rgb(var(--green-300));
}
::-webkit-selection {
    color: rgb(var(--green-900));
    background: rgb(var(--green-300));
}

/******************************
*   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(--blanco), 1); 
    background: rgb(var(--green-700));
}
figure {
    pointer-events: none;
    -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-family: 'Heinrich';
    font-weight: normal;
    font-style: normal;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgb(var(--oscuro), 1);
    background: rgb(var(--blanco), 1);
    border-radius: 0px;
    -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: rgb(var(--name), 1); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

p { margin: 0; }
* + p,
* + ol,
* + ul { 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), 1); }

/******************************
*   Loader
******************************/

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 70px);
    position: relative;
}
main section  {
    padding: 60px 0;
    position: relative;
}

/* Head Section */
* + .h__sect,
.h__sect + * { margin-top: 60px; }
.h__sect { text-align: center; }
.sect__tit {
    /* font-size: 15vw; */
    font-size: clamp(56px, 10vw, 90px);
    line-height: 0.95;
    text-transform: uppercase;
}
.sect__tit span { color: rgb(var(--green-300)); }
.sect__tit i {
    display: block;
    font-family: 'Cocogoose';
    font-weight: normal;
    font-style: normal;
    font-size: clamp(18px, 6vw, 32px);
}
.sect__tit sup,
.sect__tit sub { font-size: 25%; }

.sect__tit sup { top: -2.5em; }

.sect__tit sub {
    font-size: 30%;
    font-family: 'Proxima Nova';
}

/* CTA */
* + .c__cta { margin-top: 60px; }
.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;
    text-align: center;
    line-height: 1;
    padding: 12px 20px;
    color: rgb(var(--blanco), 1);
    background: rgb(var(--verde_d), 1);
    border-radius: 8px;
    position: relative;
}
.cta > * { display: inline-block; }
.cta span + *,
.cta * + span { margin-left: 10px; }


/* Slider */
.swiper-slide { height: auto; }

/******************************
*   Home
******************************/
.c__hiden {
    overflow: hidden;
    padding: 60px 0;
}
.cont__slider .swiper { overflow: visible; }
* + .referen { margin-top: 30px; }
.referen {
    text-align: center;
    font-size: 80%;
}

.swipper-controls {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.button-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}
.button-prev { left: 0; }
.button-next { right: 0; }
.arrow {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
}

/* Hero */
.hero { padding: 0; }

/* Portafolio */
.portafolio {
    padding: 0;
    background: linear-gradient(to top,  rgba(var(--green-500),0.4) 3%,rgba(var(--green-500), 0) 100%);
}
.portafolio * + .h__sect,
.portafolio .h__sect + * { margin-top: 20px; }
.cont__prod {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.bg__prod {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 0;
    opacity: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    filter: drop-shadow(0px 0px 15px rgba(var(--negro), .7));
    will-change: filter;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.bg__prod::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(var(--green-300), 1) 70%, rgba(var(--green-300), 0) 100%);
}
.prod__info { position: relative; }
.prod__info > * { display: block; }
.prod__info > * + * { margin-top: 20px; }
.prod__info figure {
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    transform-origin: 50% 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    filter: drop-shadow(0px -10px 10px rgba(var(--green-900), .4));
    will-change: filter;
}
.prod__info span {
    font-family: 'Cocogoose';
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
}
.swiper-slide-active .bg__prod {
    height: calc(100% - 30px);
    opacity: 1;
}
.swiper-slide-active figure {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* Olores */
.olores {
    padding: 0;
    background: rgba(var(--green-500), .4); 
}
.olores .sect__tit sup {
    display: inline-block;
    -webkit-transform: translateX(-6px);
    -moz-transform: translateX(-6px);
    -ms-transform: translateX(-6px);
    -o-transform: translateX(-6px);
    transform: translateX(-6px);
}
.olores .sect__tit sub {
    font-size: 30%;
    font-family: 'Proxima Nova';
    display: inline-block;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

/* Manchas */
.manchas {
    padding: 0;
    background: linear-gradient(to bottom,  rgba(var(--green-500),0.4) 1%,rgba(var(--green-500), 0) 100%); 
}

/* Retailers */
.retails {
    color: rgb(var(--green-900));
    background: rgb(var(--blanco));
}
.retails .container { width: 100%; }
.g__retail {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.i__retail a { display: block; }
.i__retail a figure { height: 40px; }
.i__retail a figure img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.i__retail a[href="#"] { pointer-events: none; }


.card__info {
    background: rgb(var(--green-600));
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    filter: drop-shadow(0px 0px 10px rgba(var(--green-900), .4));
    will-change: filter;
    height: 100%;
}
.card__info::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom,  rgba(var(--green-400),0) 0%,rgba(var(--green-400), .5) 100%);
}
.info__cont {
    position: relative;
    padding: 20px;
    font-family: 'Cocogoose';
    font-weight: normal;
    font-style: normal;
    font-size: 5vw;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info__cont span {
    color: rgb(var(--yellow-400));
    display: block;
}
.info__cont > * { display: block; }
.info__cont > * + * { margin-top: 10px; }
.info__cont figure {
    position: relative;
    width: 100%;
    padding-top: calc(70% + 20px);
    overflow: hidden;
    margin-bottom: -20px;
    filter: drop-shadow(-10px 0px 10px rgba(var(--green-900), .6));
    will-change: filter;
}
.info__cont figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/******************************
*   Burbujas
******************************/
.cont__burbujas {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.burbuja {
    position: absolute;
    will-change: transform;
    opacity: .6;
}
.burb__01 {
    width: 3%;
    min-width: 20px;
}
.burb__02 {
    width: 5%;
    min-width: 70px;
}
.burb__03 {
    width: 8%;
    min-width: 50px;
}

/******************************
*   Social media
******************************/
.social__media {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    bottom: 0px;
    z-index: 100;
    pointer-events: none;
}
.media__links {
    list-style: none;
    padding-inline-start: 0;
    position: absolute;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    right: 0;
    bottom: 0;
    filter: drop-shadow(0 0 10px rgba(var(--green-700), .3));
}
.media__links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(var(--blanco));
    color: rgb(var(--green-700));
    font-size: 22px;
    border-radius: 50%;
    pointer-events: all;
}

/******************************
*   Social media
******************************/
.lb__content,
.lb__anun {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgb(var(--negro), .8);
    z-index: 1000;
    overflow: auto;
}
.lb__content { display: none; }
.cont__info {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 40px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cont__info > div { width: 100%; }
.closr {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: rgb(var(--blanco));
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgb(var(--green-500));
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont__vid {
    width: 130vh;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.tit__vid + * { margin-top: 30px; }
.tit__vid { text-align: center; }
.tit__vid h3 {
    font-family: 'Cocogoose';
    font-weight: normal;
    font-style: normal;
}



/******************************
*   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) {
/* .sect__tit { font-size: 120px; } */

.cont__med {
    max-width: 1920px;
    width: 95%;
}

/* Portafolio */
.bg__prod {
    left: 5%;
    right: 5%;
}
.slide__port .button-nav { display: none; }

.info__cont { font-size: 1.4vw; }


/* Retailers */
.i__retail a figure { height: 45px; }
.i__retail a figure img {
    -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;
}
.g__retail:hover img { filter: grayscale(1) }
.g__retail a:hover img { filter: none; }




}
@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; }
main { min-height: calc(100vh - 105px); }

/* Social media */
.media__links {
    height: calc(100vh - 105px);
    height: calc(100dvh - 105px);
}

}
/* 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 : 768px) and (max-width : 1200px) {
}
@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 {
    box-shadow: 0 0 15px rgba(var(--green-900), .5);
    background: rgb(var(--green-700));
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 500;
}
.cont__menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 5px;
}
.logo {
    width: 100px;
    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 Menu */
.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));
    -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 { background: rgb(var(--green-300)); }
.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) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) 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(--green-900)) 0%, rgb(var(--green-700)) 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), .7);
    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(--green-300), .3) }
.active .menu { left: 0; }
.active .menu::before {
    opacity: 1;
    pointer-events: all;
}

}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.btn__mob { display: none; }

.cont__menu {
    padding-left: 30px;
    padding-right: 20px;
}
.logo { width: 130px; }
.menu nav ul {
    display: flex;
    align-items: center;
}
.menu nav ul li a { padding: 40px 20px; }

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


/******************************
*   Footer
******************************/
.footer {
    background: rgb(var(--green-900));
    padding: 60px 0;
    text-align: center;
}
.footer a { text-decoration: underline; }
.footer .container { width: 90%; }
.fil__foo {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
}
.col__logo figure {
    width: 60px;
    margin: 0 auto;
}
.col__legal p + p { margin-top: 6px; }

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

.col__foo { flex: 1 100%; }

}
@media (min-width : 680px) {
.footer { text-align: initial; }
.fil__foo {
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

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

}


