/* INDEX CSS */
/* INDEX CSS */
/* 
    1.ROOT
    2.COMMON STYLES
    3.HERO BANNER STYLE
    4.HOME STYLE
    5.HEADER Y FOOTER
    6.SOLUCIONES
    7.ROW PRODUCTOS
    8.FICHA PRODUCTO

*/

/* Import Google Fonts: Playfair Display and Inter */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* 1.ROOT */
:root {
    --black-100: #000000;
    --black-90: #2E3036;
    --black-80: #535663;
    --black-60: #787B85;
    --black-40: #DCDEE6;
    --black-20: #EBECF0;
    --black-10: #F0F0F3;
    --body-bg:#FAFAFA;

    --brand-yellow:#FFD500;
    --brand-yellow-light:#FDF9E6;
    --yellow-100:#FAFAE8;

    --lime:#5A7E27;
    --lime-medium:#A3D65C;
    --lime-light:#ECF3F0;

    --terracota:#C44D34;
    --terracota-light:#F3EDEC;

    --dark-blue:#172B36;
    --blue:#114C5A;

    --playfaier: 'Playfair Display', serif;
    --inter: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --transition: 0.4s ease-in-out;
}

/* 2.COMMON STYLES */
a.default-link {
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
    position: relative;

    padding: 24px 32px 24px 80px;
    border-radius: 100px;
}

a.default-link span {
    position: absolute;
    transition: var(--transition);
    right: calc(100% - 64px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    border-radius: 100px;
    
}
a.default-link:hover {
    padding: 24px 80px 24px 32px;

}
a.default-link:hover span{
    left: inherit;
    right: 16px;
}
a.default-link span svg {
    width: 24px;
    height: 24px;
}
a.default-link.yellow-link {
    background-color: var(--brand-yellow);
    color: #000;
}
a.default-link.black-link {
    background-color: var(--black-100);
    color: #fff;
}
a.default-link.yellow-link span{
    background-color: var(--black-100);
}
a.default-link.yellow-link span svg{
    stroke:#fff;
}



a.default-link.black-link span{
    background-color: var(--brand-yellow);
}
a.default-link.black-link span svg{
    stroke: #000;
}


a.default-link.yellow-link.hovered:hover {
    background-color: var(--black-100);
    color: #fff;
}
a.default-link.yellow-link.hovered:hover span{
    background-color: var(--brand-yellow);
}

a.default-link.yellow-link.hovered:hover span svg{
    stroke: var(--black-100);
}


a.default-link.black-link.hovered:hover {
    background-color: var(--brand-yellow);
    color: #000;
}
a.default-link.black-link.hovered:hover span{
    background-color: var(--black-100);
}

a.default-link.black-link.hovered:hover span svg{
    stroke: #fff;
}




@media(max-width:991px){
    a.default-link {
        font-size: 20px;
        gap: 16px;
        padding: 16px  16px 16px 56px;
    }
    a.default-link span {
        min-width: 40px;
        min-height: 40px;
        right: calc(100% - 48px);
    }
    a.default-link span svg {
        width: 20px;
        height: 20px;
    }
        
}



/* 3.HERO BANNER STYLE */
.hero-banner {
    min-height: 50vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;    
    justify-content: center;
    padding: 48px 0;
}

/* Aplicar Inter como fuente base */
body {
    font-family: var(--inter);
}

.big-banner.hero-banner{
    min-height: 90vh;
    padding: 48px 0;
}
.littel-banner.hero-banner{
    min-height: 60vh;
    padding: 48px 0;
}

.hero-banner h1{
    color: var(--neutral-white, #FFF);
    font-family: var(--playfaier);
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-bottom: 24px;
}

.hero-banner h1 strong{
    font-weight: 700;
    position: relative;
}

.hero-banner h1 strong::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background: rgba(255, 213, 0, 0.30);
}

.hero-banner p.subtitle{
   color: var(--neutral-white, #FFF);
    text-align: center;
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}
.hero-banner .btns-hero-banner{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
}
.hero-banner .btns-hero-banner{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
}
@media(max-width:991px){
   .big-banner.hero-banner{
        min-height: 60vh;
        padding: 32px 0;
    }
    .hero-banner h1{
        font-size: 40px;
    }
    .hero-banner p.subtitle{
        font-size: 18px;
    }
    .hero-banner .btns-hero-banner{
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
    }

}
@media(max-width:767px){
    .hero-banner h1{
        font-size: 32px;
    }
    .hero-banner .btns-hero-banner{
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }
    .hero-banner a.default-link{
        font-size: 16px;
    }
}

/* 4.HOME STYLE */

.intro-home{
    padding: 96px 0;
    background-image: url('../img/bg-intro-gradient.png');
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;

}

.intro-home p.breadcrumbs{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}
@media(max-width:991px){
    .intro-home p.breadcrumbs{
        flex-wrap: wrap;
    }
}
.intro-home p.breadcrumbs a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.intro-home h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.intro-home h2 strong{
    font-size: 56px;
    font-weight: 400;
    line-height: 140%; /* 78.4px */
}
@media(max-width:991px){
    .intro-home{
        padding: 40px 0;
    }
    .intro-home h2 {
        font-size: 32px;
    }

    .intro-home h2 strong{
        font-size: 40px;
    }
}
@media(max-width:767px){
    .intro-home{
        padding: 32px 0;
    }
    .intro-home h2 {
        font-size: 32px;
        display: inline-block;
        margin-bottom: 16px;
    }

    .intro-home h2 strong{
        font-size: 32px;
    }
}

.intro-home p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.intro-home p strong{
    color: var(--black-80);
    font-weight: 500;
}
.alternated-cards {
    padding: 0 0 88px 0;
}
.alternated-cards h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 56px */
}
@media(max-width:991px){
    .alternated-cards h2 {
        font-size: 32px;
    }
}

.alternated-cards p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.alternated-cards p strong{
    color: var(--black-80);
    font-weight: 500;
}

.card-alternated{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 88px;
}

.card-alternated figure{
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius:32px;
    width: 75%;
    padding: 64px;
    margin: 0 auto 0 0;
}

.card-alternated figure h3{
    width: 80%;
    color: var(--neutral-white, #FFF);
    font-family: var(--playfaier);
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    position: relative;
    margin: 0;
    border-left: 4px solid var(--lime-medium);
    padding-left: 32px;    
}

.card-alternated .caption-alternated{
    width: 40%;
    padding: 48px;
    border-radius: 32px;
    background-color: #fff;

    position: absolute;
    transform: translate(-0%, -50%);
    top: 50%;
    right: 0%;
}

.card-alternated .caption-alternated h4{
    color: var(--neutral-black-90, #2E3036);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 44.8px */
}

.card-alternated .caption-alternated .default-link{
    margin-top: 56px;
    font-size: 18px;
    width: fit-content;
}


.card-alternated:nth-child(even) figure{
    margin: auto 0 0 auto;
}

.card-alternated:nth-child(even) .caption-alternated{
    right: inherit;
    left: 0%;
    transform: translate(0%, -50%);
}

.card-alternated:nth-child(even) figure h3{
    border-left: none;
    border-right: 4px solid var(--lime-medium);
    padding-left: 0;
    padding-right: 32px;
    margin-left: auto;
    text-align: right;
}

@media(max-width:991px){
    .card-alternated{
        margin-top: 40px;
    }
    .card-alternated figure{
        min-height: 55vh;
        padding: 32px 20% 32px 32px;
    }
    .card-alternated:nth-child(even) figure{
        padding: 32px 32px 32px 20%;
    }
    .card-alternated figure h3{
        font-size: 40px;
        padding-left: 20px;
    }
    .card-alternated .caption-alternated{
        padding: 24px;
        width: 45%;
    }
    .card-alternated .caption-alternated h4{
        font-size: 24px;
    }
    .card-alternated .caption-alternated .default-link{
        font-size: 16px;
        margin-top: 32px;  
    }
}
@media(max-width:767px){
    .card-alternated{
        flex-direction: column;
        margin-top: 32px;
    }
    .card-alternated figure{
        width: 100%;
        min-height: 40vh;
        padding: 24px 16px 24px 16px;
    }
    .card-alternated:nth-child(even) figure{
        padding: 24px 16px 24px 16px;
    }
    .card-alternated:nth-child(even) figure h3,
    .card-alternated figure h3{
        font-size: 32px;
        padding: 0;
        border: none;
        text-align: center;
        width: 100%;
    }
    .card-alternated .caption-alternated{
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0px;
        padding: 12px 8px ;
    }
    .card-alternated:nth-child(even) .caption-alternated{
        transform: inherit;
        left: inherit;

    }
    .card-alternated .caption-alternated .default-link{
        width: 100%;
    }
    .soluciones-cards.alternated-cards .card-alternated:first-of-type{
        margin-top: 24px;
    }
}



.slider-orange{
    background-color: var(--terracota);
    padding: 64px 0 160px 32px;
}
.slider-orange .col-md-7,
.slider-orange .col-md-4{
    padding: 0;
}
.slider-orange h2{
    color:  #FFF;
    font-family:var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
    margin-top: 96px;
}


.slider-orange p{
    color:  #FFF;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;

}


.slider-orange .default-link{
    font-size: 16px;
    margin-top: 80px;
    width: fit-content;
}
.slider-orange .slick-list{
       padding-top: 96px;
}
.slider-orange .flexer-card{
    position: relative;
    margin-right: 20px;
    background-color: var(--terracota-light);
    border-radius: 16px;
}
.slider-orange .flexer-card .hidden-btns{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
    justify-content: center;
    padding:24px 32px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slider-orange .flexer-card .hidden-btns a.go-to-product-sheet,
.slider-orange .flexer-card .hidden-btns a.linked-video{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 100px;
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.slider-orange .flexer-card .hidden-btns a.go-to-product-sheet{
    color: black;
    background-color: var(--brand-yellow);
}
.slider-orange .flexer-card .hidden-btns a.linked-video{
    color: var(--brand-yellow);
    background-color: var(--black-100);
}


.slider-orange .slider-controller-orange-item{
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 32px;
    background-color: #FFF;
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.flexer-card:hover .slider-controller-orange-item {
    margin-top: -96px;
}


@media(max-width:1235px){
    .slider-orange .flexer-card .hidden-btns,
    .flexer-card .slider-controller-orange-item{
        padding:24px;
    }
    .flexer-card:hover .slider-controller-orange-item {
        margin-top: -56px;
    }
}

.slider-orange .slider-controller-orange-item img{
    width: 50%;
    margin-bottom: 24px;
    min-width: 200px;
}
.slider-orange .slider-controller-orange-item span.cat{
    color: var(--terracota);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 8px;
}
.slider-orange .slider-controller-orange-item h3{
    color: var(--black-90);
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}
.slider-orange .slider-controller-orange-item p{
  color: var(--black-60);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
}
.slider-orange .slider-controller-orange-item span.cultivos{
    color: var(--black-90);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 8px;
}

.slider-orange .cultivos-tag{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.slider-orange .slick-prev, 
.slider-orange .slick-next{
    top: calc(100% + 40px);
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 10000px;
}

.slider-orange .slick-prev{
    left: 0;
}
.slider-orange .slick-next{
    left: 60px;
}



.slider-orange .slick-prev:before{
    content: "";
    background-image: url('../img/tabler-icon-arrow-left.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slider-orange .slick-next:before{
    content: "";
    background-image: url('../img/tabler-icon-arrow-right.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-orange .slick-prev:before, 
.slider-orange .slick-next:before,
.slider-orange .slick-prev.slick-disabled:before, 
.slider-orange .slick-next.slick-disabled:before{
    opacity: 1;
}

.slider-orange .slick-prev.slick-disabled,
.slider-orange .slick-next.slick-disabled{
    opacity: .4;
}

@media(max-width:991px){
    .slider-orange{
        padding: 64px 0 120px 16px;
    }
    .slider-orange h2{
        margin-top: 48px;
    }
    .slider-orange .slick-list{
        padding-top: 64px;
    }
    .slider-orange .flexer-card:hover .slider-controller-orange-item {
        margin-top: -96px;
    }
}

/* 5. TAGS DE CULTIVOS */
/* Clases: tag-cultivo-<nombre> (nombres normalizados, sin acentos, espacios->- ) */
.tag-cultivo-citricos,
.tag-cultivo-cucurbitaceas-con-piel-no-comestible,
.tag-cultivo-curcubitaceas-con-piel-comestible,
.tag-cultivo-fresales,
.tag-cultivo-frutales-subtropicales,
.tag-cultivo-frutales-de-hueso,
.tag-cultivo-frutales-de-pepita,
.tag-cultivo-herbaceos,
.tag-cultivo-horticolas,
.tag-cultivo-lupulo,
.tag-cultivo-olivo,
.tag-cultivo-ornamentales,
.tag-cultivo-remolacha-azucarera,
.tag-cultivo-vid {
    display:block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.tag-cultivo-citricos{
    background-color: #468942;
}
.tag-cultivo-cucurbitaceas-con-piel-no-comestible{
    background-color:#BA3127 ;
}
.tag-cultivo-curcubitaceas-con-piel-comestible{
    background-color: #B5317D;
}
.tag-cultivo-fresales{
    background-color:#E39846 ;
}
.tag-cultivo-frutales-subtropicales{
    background-color: #C4D14E;
}
.tag-cultivo-frutales-de-hueso{
    background-color:#70B8BE ;
}
.tag-cultivo-frutales-de-pepita{
    background-color:#D76F36 ;
}
.tag-cultivo-herbaceos{
    background-color:#80A228 ;
}
.tag-cultivo-horticolas{
    background-color:#795E33 ;
}
.tag-cultivo-lupulo{
    background-color:#714890 ;
}
.tag-cultivo-olivo{
    background-color:#224b1f ;
}
.tag-cultivo-ornamentales{
    background-color: #00eaff;
}
.tag-cultivo-remolacha-azucarera{
    background-color:#fff ;
    outline: 1px solid #DCDEE6;
}
.tag-cultivo-vid {
    background-color: #c198e0;
}

.actualidad-home{
    padding:80px 0 120px 0;
}
.actualidad-home a.default-link{
    font-size: 18px;
    margin-left: auto;
    margin-right: 0;
    margin-top: auto;
    margin-bottom: 0;
    width: fit-content;
}

.actualidad-home h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
}

.actualidad-home p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
}

.actualidad-home .container .row{
    margin-bottom: 56px;
}

.medium { width: 25vw; min-height: 100px; padding-right: 20px;}
.large  { width: 35vw; min-height: 100px; padding-right: 20px;}


.actualidad-home .slider-controller-actualidad .large .card-controller{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 16px;
    padding: 16px 56px 16px 16px;
}
.actualidad-home .slider-controller-actualidad .large .card-controller .caption{
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--terracota-light);
    border-radius: 16px;
    padding: 24px;
    margin-top: auto;
    margin-bottom: 0;
}
@media(max-width:991px){
    .actualidad-home .slider-controller-actualidad .large .card-controller{
        padding: 16px 16px 16px 16px;
    }
}
.actualidad-home .slider-controller-actualidad .card-controller{
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--terracota-light);
    border-radius: 16px;
    position: relative;
    padding: 24px;
}

.actualidad-home .slider-controller-actualidad .card-controller figure{
    height: 214px;
    border-radius: 8px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.actualidad-home .slider-controller-actualidad .card-controller span.categoria{
   color: var(--terracota);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 8px;
}
.actualidad-home .slider-controller-actualidad .card-controller h3{
    color: var(--black-90);
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}
.actualidad-home .slider-controller-actualidad .card-controller p{
    color: var(--black-80);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.actualidad-home .slider-controller-actualidad .go-news-card{
    background-color: var(--terracota-light);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.actualidad-home .slider-controller-actualidad .go-news-card span{
    color: var(--neutral-black-90, #2E3036);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}
.actualidad-home .slider-controller-actualidad a{
    font-size: 0;
}

@media(max-width:991px){
    .actualidad-home{
        padding:40px 0 80px 0;
    }
    .actualidad-home a.default-link{
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }
}
/* ----- */


.slider-controller-actualidad .slick-prev, 
.slider-controller-actualidad .slick-next{
    top: calc(100% + 40px);
    width: 40px;
    height: 40px;
    background-color: var(--black-40);
    border-radius: 10000px;
}

.slider-controller-actualidad .slick-prev{
    left: 0;
}
.slider-controller-actualidad .slick-next{
    left: 60px;
}

.slider-controller-actualidad .slick-prev:before{
    content: "";
    background-image: url('../img/tabler-icon-arrow-left.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slider-controller-actualidad .slick-next:before{
    content: "";
    background-image: url('../img/tabler-icon-arrow-right.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-controller-actualidad .slick-prev:before, 
.slider-controller-actualidad .slick-next:before,
.slider-controller-actualidad .slick-prev.slick-disabled:before, 
.slider-controller-actualidad .slick-next.slick-disabled:before{
    opacity: 1;
}

.slider-controller-actualidad .slick-prev.slick-disabled,
.slider-controller-actualidad .slick-next.slick-disabled{
    opacity: .4;
}


.blog .container{
    background-color: var(--lime-light);
    border-radius: 24px;
    padding: 40px;
}

.blog h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 44.8px */
}

.blog p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 56px;
}

.blog .default-link{
    width: fit-content;
    margin-left: auto;
    font-size: 16px;
    margin-top: auto;
    margin-bottom: 56px;
}

.blog .card-blog-home{
    display: flex;
    flex-direction: row;
    border-radius: 16px;
    overflow: hidden;
    position: relative;

}
.blog .card-blog-home figure{
    width: 50%;
    min-height: 350px;
    margin: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog .card-blog-home .caption{
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;  
    justify-content: center;
    background-color: #fff;
}

.blog .card-blog-home .stretched-link {
   font-size: 0;

}

.blog .card-blog-home .caption span{
    color: var(--blue);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase}

.blog .card-blog-home .caption h3{
    color: var(--neutral-black-90, #2E3036);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
}

.comprometidos{
    padding: 80px 0;
    
}
.comprometidos h2{
    color: var(--black-90);
    text-align: center;
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
}
.comprometidos p{
    color: var(--black-60);
    text-align: center;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}
.comprometidos figure{
    height: 550px;
    width: 100%;
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    margin-top: -35px;
}

.comprometidos a.default-link{
    margin-top: 56px;
    font-size: 18px;
    width: fit-content;
    margin: 56px auto 0 auto;
    font-size: 18px;
}


.red-global{
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 95%;

}
.red-global .container{
    padding: 0 44px;
}
.red-global .default-link{
    width: fit-content;
    font-size: 18px;
    margin-top: 56px;
    margin-bottom: 24px;
    font-weight: 300;
}
.red-global h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
}
.red-global p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.red-global .yellow-box{
    margin-top: 36px;
    border-radius: 16px;
    background: var(--brand-yellow);
    padding: 24px;
    display: flex;
    flex-direction: row;
}
.red-global .yellow-box span{
    padding-left:32px ;
    display: flex;
    flex-direction: column;
    width: 33%;
    border-left: 4px solid var(--brand-yellow-light);

    color: var(--black-80 );
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
}
.red-global .yellow-box span strong{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

@media(max-width:991px){
  .red-global{
        padding: 40px 0;
    }
    .red-global .container{
        padding: 0 16px;
    }
    .red-global .yellow-box{
        flex-direction: column;
        gap: 16px;
    }
    .red-global .yellow-box span{
        width: 100%;
        border-left: none;
        padding-left: 0;
        padding-top: 16px;
        border-top: 4px solid var(--brand-yellow-light);
    }
    .red-global .yellow-box span:first-of-type{
        border-top: none;
        padding-top: 0;
    }
    .red-global .yellow-box span strong{
        font-size: 32px;
    }
}


/* 5.HEADER Y FOOTER */

header{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 32px;
}

header nav{
    display: flex;
    flex-direction: row;
    border-radius: 100px;
    padding:16px 32px;
    background: rgba(0, 0, 0, 0.80);
    box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.25);
    align-items: center;
}

header nav .logo-link{
    display: flex;
    align-items: center;
    justify-content: center;
}
header nav .logo-link img{
    height: 56px;
}
header nav ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    gap: 16px;
}
header nav ul li button,
header nav ul li a{
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: transparent;
    transition: var(--transition);
    text-decoration: none;
    color:#FFF;
    text-align: center;
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 0px solid transparent;
}

header nav ul li a:hover,
header nav ul li button:hover{
    background: #fff;
    color:var(--black-100);
}
header nav ul li button.active,
header nav ul li a.active{
    color:var(--black-100);
     background: var(--brand-yellow);

}

header nav ul li .dropdown .dropdown-menu{
    border-radius: 16px;
    padding: 16px;
    background-color: var(--black-100);
    inset: initial!important;
    padding:32px;
}
header nav ul li .dropdown .dropdown-menu .dropdown-item{
    padding: 8px ;
    color: #fff;
    background-color: transparent;
}
header nav ul li .dropdown .dropdown-menu .dropdown-item a{
    background-color: transparent;
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

 header nav .control-extra-butons{
    display: flex;
    flex-direction: row;
    gap: 16px;
}

header nav .control-extra-butons button{
    background-color: var(--lime-light);
    border: 0px solid transparent;
    border-radius: 100px;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header nav .control-extra-butons button svg{
    width: 20px;
    height: 20px;
}

header button#open-menu-mobile{
    display: none ;
    background-color: var(--brand-yellow);
    position: relative;
    margin-left: 16px;
}
header button#open-menu-mobile::after{
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--black-40);

    position: absolute;
    top: 0;
    left:-16px;
}

@media(max-width:991px){
    header button#open-menu-mobile{
        display: flex ;
        position: relative;
    }
    header button#open-menu-mobile svg{
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        transition:  var(--transition);
        opacity: 0;
    }

    header button#open-menu-mobile svg:first-of-type{
        top: 50%;
        opacity: 1;
    }
    header.active button#open-menu-mobile svg:first-of-type{
        top: 0%;
        opacity: 0;

    }

    header button#open-menu-mobile svg:last-of-type{
        top: 0%;
        opacity: 0;

    }
    header.active button#open-menu-mobile svg:last-of-type{
        top: 50%;
         opacity: 1;
    }

    header nav .control-extra-butons button{
        height: 40px;
        width: 40px;
    }
    header{
        padding: 16px 0;
        position: fixed;
        z-index: 1000;
        transition: var(--transition);
        
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .container-fluid{
        max-width: 720px;
    }
    header nav{
        
        padding:24px;
        justify-content: space-between;
        background-color: rgba(0, 0, 0, 0.90);
        transition: var(--transition);
        border-radius: 32px;
        position: relative;

    }
    header.active nav{
        border-radius: 32px 32px 0 0;
    }

    header nav .logo-link img{  
        height: 40px;
    }
   
    
    header nav ul#menu{
        pointer-events: none;
        opacity: 0;
        position: absolute;
        top: 32px;
        transition: var(--transition);
        left: 0;
        width: 100%;
        max-width: 720px;
        height: fit-content;
        background-color: var(--black-100);
        flex-direction: column;
        gap: 12px;
        border-radius: 0;
        padding:0px 24px 44px 24px ;
        z-index: 10;
        background-color: rgba(0, 0, 0, 0.90);
        border-radius:0 0 32px 32px ;
    }
    header nav ul#menu.active{
        opacity: 1;
        top: 88px;
        pointer-events: auto;
    }
    header nav ul#menu li button,
    header nav ul#menu li a{
        color:  #FFF;
        text-align: center;
        font-family: var(--playfaier);
        font-size: 28px;
        font-style: normal;
        text-align: left;
        font-weight: 500;
        padding: 0;
        justify-content: inherit;
    }

    
    header nav ul#menu li button:hover,
    header nav ul#menu li button.active,
    header nav ul#menu li a.active,
    header nav ul#menu li a:hover{
        background: transparent;
        color: var(--brand-yellow);
    }
    header nav ul li .dropdown .dropdown-menu{
        position: relative!important;
        box-shadow: none;
        background-color: transparent;
        padding: 0 20px;
        transform: none !important;
        color:  #FFF;
        text-align: center;
    }
    header nav ul#menu li .dropdown .dropdown-menu li{
        padding: 12px 0;
    }

    header nav ul#menu li .dropdown .dropdown-menu a{
        font-size: 24px;
    }

}

@media(max-width:767px){
    header nav{
        padding:24px;
        justify-content: space-between;
    }
    header nav .logo-link img{  
        height: 36px;
    }
    header nav .control-extra-butons button{
        height: 36px;
        width: 36px;
    }
    header nav ul#menu{
        padding: 0 24px 24px 24px;
     }
    header nav ul#menu.active{
        opacity: 1;
        top: 84px;
        pointer-events: auto;

    }
 
}


footer{
    padding: 80px 0;
    background-color: var(--black-100);
}

footer .custom-row{
    gap: 32px;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid var(--black-80);
    padding: 24px 0;
}
footer .custom-row .custom-col{
    width: 20%;
}

footer .custom-row .custom-col p.title-footer{
    color:#FFF;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 12px;
}
footer .custom-row .custom-col ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}
footer .custom-row .custom-col ul li{
    padding: 4px 12px 4px 0;
}
footer .custom-row .custom-col ul li a{
    color:var(--black-20);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

footer .custom-row .custom-col ul li a svg{
    stroke: var(--brand-yellow);
    opacity: 0;
    transition: var(--transition);
    margin-left: -12px;
}

footer .custom-row .custom-col ul li a:hover svg{
    opacity: 1;
    margin-left: 0;
}

footer .custom-row .control-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 24px;
}
footer .custom-row .control-logo p,
footer .custom-row .control-logo p a{
    color: #FFF;
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    margin: 0;
    text-decoration: none;
}

footer .social-media{
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-content: end;
}

footer .social-media li a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    background-color: var(--black-60);
    width: 48px;
    height: 48px;
    transition: var(--transition);
}

footer .social-media li a:hover{
    background-color: var(--brand-yellow);
}
footer .social-media li a svg{
    width: 24px;
    height: 24px;
    stroke: #FFF;
    transition: var(--transition);
}
footer .social-media li a:hover svg{
    stroke: #000;
}   

footer blockquote{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
    color: #fff;
    text-align: center;
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 56px;
}

footer blockquote cite{
    color: #fff;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
}

footer blockquote cite span{
    color: var(--brand-yellow);
}
footer ul.legal-links{
    display: flex;
    flex-direction: row;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 24px;
    justify-content: center;
}
footer ul.legal-links li a{
    color: #FFF;
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    text-decoration: none;
}

@media(max-width:991px){
    footer{
        padding: 40px 0;
    }
    footer .custom-row{
        gap: 10%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    footer .custom-row .custom-col{
        width: 45%;
        margin-bottom: 10px;
    }
    footer .title-footer{
        border-bottom: 1px solid var(--black-80);
        padding-bottom: 8px;
    }
    footer .custom-row .control-logo {
        width: 45%;
        flex-direction: column;
    }
    footer .social-media{
        width: 45%;

    }
}
@media(max-width:767px){
    footer{
        padding: 24px 0;
    }
    footer .custom-row{
        gap: 16px;
        flex-direction: column;
    }
    footer .custom-row .custom-col{
        width: 100%;
        margin-bottom: 10px;
    }
    footer .title-footer{
        border-bottom: 1px solid var(--black-80);
        padding-bottom: 8px;
    }
    footer .custom-row .control-logo {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    footer .social-media{
        margin-top: 20px;
        width: 100%;
        justify-content: space-between;
    }
    footer blockquote{
        font-size: 20px;
        margin-bottom: 0;
    }
    footer ul.legal-links{
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}


/* 6.SOLUCIONES */

.soluciones-cards.alternated-cards .card-alternated:first-of-type{
    margin-top: 40px;
}
@media(max-width:991px){
    .soluciones-cards.alternated-cards .card-alternated:first-of-type{
        margin-top: 24px;
    }
}



.vertical-controller{
    position: relative;
}

.vertical-slider{
    min-height: 70vh;
    height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}


.vertical-slider .item-slider{
    min-height: 70vh;
    height: 70vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    align-items: flex-end;
    width: 100%;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.vertical-slider .caption{
    background: rgba(255, 213, 0, 0.90);
    border-radius: 0px;
    padding: 32px 10vw;
    height: 100%;
    margin: 0;
    max-width: 60%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.vertical-slider .caption h2{
    color: #000;
    font-family: var(--playfaier);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
}

.vertical-slider .caption p{
    color: #000;
    font-family: var(--playfaier);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.vertical-slider .caption .default-link {
    font-size: 16px;
    margin-top: 56px;
}

.vertical-controller ul{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    list-style: none;
    scroll-behavior: smooth;
    display: none;
    display: flex;
    flex-direction: column;
    padding-left: 00px;
}

.vertical-controller ul li a{
    color: #000;
    font-family: var(--playfaier);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    padding-left: 40px;
    transition: var(--transition);

}
.vertical-controller ul li a.active,
.vertical-controller ul li a:hover{
    padding-left: 64px;

}
.vertical-controller ul li a.active::after,
.vertical-controller ul li a:hover::after{
    width: 90px;
}
.vertical-controller ul li a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50% ,  0%);
    height: 4px;
    width: 40px;
    background-color: #000;
    transition: var(--transition);

}

.vertical-controller .control-btns-vertical{
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: 10%;
    left: 32px;
}

.vertical-controller .control-btns-vertical button{
    background-color: black;
    width: 40px;
    height: 40px;
    border-radius: 10000px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid transparent;
    transition: var(--transition);
}


.vertical-controller .control-btns-vertical button.disabled{
    pointer-events: none;
    opacity: .7;
}


@media(max-width:991px){
    .vertical-slider .item-slider{
        background-size:100% 50% ;
        background-position: top center;
    }
    .vertical-controller .control-btns-vertical{
        bottom: 24px;
    }
    .vertical-controller ul{
        top: calc(50% + 24px);
        transform: none;
    }
    .vertical-slider .caption{
        background-color: var(--brand-yellow);
        padding: 24px  124px;
        max-width: 100%;
        max-height: 50%;
        justify-content:flex-start;
    }
    .vertical-slider .caption h2{
        font-size: 28px;
    }
    .vertical-slider .caption p{
        font-size: 16px;
    }
    .vertical-slider .caption .default-link{
        margin-top: auto;
        margin-bottom: 0;
    }
}
@media(max-width:767px){
    .vertical-slider,
    .vertical-slider .item-slider{
        height: 80vh;
        min-height: 80vh;
    }
    .vertical-slider .item-slider{
        background-size: auto 50% ;
    }

    .vertical-slider .caption{
        padding: 16px  16px 16px 120px ;
    }
    .vertical-slider .caption h2{
        font-size: 24px;
    }
    .vertical-slider .caption p{
        font-size: 14px;
    }
}



.alternated-cards.ecologic-cards{
    padding: 96px 0;
}
.alternated-cards.ecologic-cards .card-alternated{
    margin-top: 40px;

}

.alternated-cards.ecologic-cards span.pretitle{
    color: var(--terracota);
    text-align: center;
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: block;
}
.alternated-cards.ecologic-cards h2{
    color: var(--black-90);
    text-align: center;
    font-family: var(--playfaier);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;

}

.alternated-cards.ecologic-cards .col-md-8 p{
    color:var(--black-60);
    text-align: center;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.alternated-cards.ecologic-cards p a{
    color: var(--lime);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-align: left;
}

@media(max-width:991px){
    .alternated-cards,
    .alternated-cards.ecologic-cards{
        padding: 40px 0;
    }
    .alternated-cards.ecologic-cards h2{
        font-size: 32px;
    }
    .alternated-cards.ecologic-cards h2,
    .alternated-cards.ecologic-cards span.pretitle,
    .alternated-cards.ecologic-cards .col-md-8 p{
        text-align: left;
    }
}

.row-eco-logos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.row-eco-logos img{
    width: 15%
}
.cultivos-card{
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.cultivos-card .caption{
    background: rgba(90, 126, 39, 0.90);
    
    border-radius: 0px;
    padding: 56px 10vw;
    height: 100%;
    margin: 0;
    max-width: 60%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cultivos-card .caption h2{
    color: var(--neutral-white, #FFF);
    font-family:var(--playfaier);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
}

.cultivos-card .caption p{
    color: var(--neutral-white, #FFF);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}
.cultivos-card .caption ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}
.cultivos-card .caption ul li{
    color:#000;
    text-align: center;
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    background:  #FFF;
}

@media(max-width:991px){
    .cultivos-card{
        min-height: 70vh;
        position: relative;
    }
   .cultivos-card .caption{
    max-width: 100%;
    min-height: 50%;
    height: fit-content;
    
    padding: 32px;
    bottom: 0;
    left: 0;
    position: absolute;
   }
}
@media (max-width:767px) {
    .cultivos-card .caption h2{
        font-size: 32px;
    }
}
@media(max-width:767px){
    .row-eco-logos img{
        width: 40%
    }
    .cultivos-card .caption{
        padding: 20px;
        height: 100%;
    }
    .cultivos-card .caption ul li{
        font-size: 12px;
        padding: 6px 12px;
    }
}

.section-jardineria{
    padding: 96px 0;
}

.section-jardineria p.pre-title{
    color: var(--terracota);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.section-jardineria h2{
    color: var(--black-90);
    text-align: center;
    font-family: var(--playfaier);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
}

.section-jardineria p{
    color: var(--black-60);
    text-align: center;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.section-jardineria figure{
    min-height: 70vh;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    margin-top: 40px;
}

@media(max-width:991px){
    .section-jardineria{
        padding: 40px 0;
    }
    .section-jardineria h2{
        font-size: 32px;
    }
    .section-jardineria p.pre-title,
    .section-jardineria h2,
    .section-jardineria p{
        text-align: left;   
    }
    .section-jardineria figure{
        min-height: 300px;
        margin-top: 24px;
    }
    
}
.confianza-section{
    overflow: hidden;
}
.confianza-section h2 {
    color: var(--black-90);
    text-align: center;
    font-family: var(--playfaier);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
}

.confianza-section p {
    color: var(--black-60);
    text-align: center;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 56px;
}


.confianza-section{
    padding: 64px 0;
}
.confianza-section .container-fluid,
.confianza-section .container-fluid .col-md-12{
    padding-right: 0!important;
}
@media(max-width:767px){
    .confianza-section{
        padding: 40px 0;
    }
    .confianza-section h2 {
        font-size: 32px;
    }
    .confianza-section .container-fluid, 
    .confianza-section .container-fluid .col-md-12{
        padding-left: 8px!important;
        padding-right: 8px!important;
    }
}
.confianza-section .slider-testimonios .item{
    padding:12px
}
.confianza-section .slider-testimonios .item-testimonios{
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--black-10);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.confianza-section .slider-testimonios .item-testimonios h3{
    color: var(--black-100);
    font-family: var(--playfaier);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 39.2px */
    margin-bottom: 0;
}

.confianza-section .slider-testimonios .item-testimonios p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    text-align: left;
}

.confianza-section .slider-testimonios .item-testimonios p span{
    color: var(--Brand-brand-yellow, #FFD500);
}

/* ROW PRODUCTOS */
.row-productos form.filters {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
}
.row-productos form button[type="button"] {
    border-radius: 50px;
    border: 1px solid var(--black-40);
    background: #FFF;
    border-radius: 50px;
    color:  var(--black-100);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 8px 16px;
    max-width: 100%;
}
.row-productos form.filters input{
    border-radius: 50px;
    border: 1px solid var(--black-40);
    background: #FFF;
    border-radius: 50px;
    color:  var(--black-60);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 8px 16px;
    width: 520px;
    max-width: 100%;
}
.row-productos form.filters button[type="submit"]{
    background-color: var(--brand-yellow);
    border: 0px solid transparent;
    border-radius: 50px;
    padding: 8px 16px;
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media(max-width:991px){
    .row-productos form.filters input{
        width: 424px;
    }
}
@media(max-width:767px){
    .row-productos form.filters{
        flex-wrap: wrap;
    }
    .row-productos form button[type="button"]{
       padding: 8px 24px;
    }
    .row-productos form.filters input{
        width: calc(100% - 141px);
    }
}

.row-productos .col-lg-4 {
    margin-bottom: var(--bs-gutter-x);
}

.row-productos .total-products{
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}
.row-productos .item-product{
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--black-10);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    border-radius: 16px;
    border: 1px solid var(--black-40);
    background: #FFF;
    position: relative;
}

.row-productos .item-product img{
    width: 50%;
    margin-bottom: 24px;
    min-width: 200px;
}
@media(max-width:991px){
    .row-productos .item-product{
        gap: 0px;
    }
    .row-productos .item-product img{
        width: 80%;
        margin-bottom: 16px;
        min-width: inherit;
    }
}

.row-productos .item-product span.cat{
    color: var(--terracota);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 8px;
}
.row-productos .item-product h3{
    color: var(--black-90);
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}
.row-productos .item-product p{
        color: var(--black-90);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 8px;
}

.row-productos .item-product .cultivos-tag{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.row-productos .pagination ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    justify-content: center;
    width: 100%;
}
.row-productos .pagination ul li{
    background-color: var(--black-100);
    width: 40px;
    height: 40px;
    border-radius: 10000px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.row-productos .pagination ul li a{
    color:var(--brand-yellow);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.row-productos .pagination ul li:hover ,
.row-productos .pagination ul li.active {
    background-color: var(--brand-yellow);
}
.row-productos .pagination ul li.active a,
.row-productos .pagination ul li:hover a{
    color:var(--black-100);

}

.row-productos .tag-filter-controler{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.row-productos .tag-filter-controler span{
    background-color: var(--black-40);
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    outline: 0px solid transparent;
}
.row-productos .tag-filter-controler span:hover{
    outline: 1px solid var(--black-60);
}

#modalFiltersProducts .modal-content{
    padding:  32px;
}

#modalFiltersProducts p.title-modal{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 24px;
}

#modalFiltersProducts button.closer{
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: 0px solid transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;

}


#modalFiltersProducts button.go-filter {
    font-family: var(--inter);
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
    position: relative;
    color: #fff;
    background-color: var(--black-100);
    width: fit-content;
    padding: 12px 32px 10px 64px;
    border-radius: 100px;
    margin-top: 44px;
}

#modalFiltersProducts button.go-filter span {
    position: absolute;
    transition: var(--transition);
    right: calc(100% - 36px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 100px;
    background-color: var(--brand-yellow);
}
#modalFiltersProducts  .form-check{
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    padding: 6px 12px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}
#modalFiltersProducts  .form-check input{
    margin: 4px 0 0 0;
    float: none;
}
#modalFiltersProducts .form-check .form-check-input{
    -webkit-appearance: none;
    appearance: none;
    background-color:transparent;
    border-color: var(--black-60);
    background-image: none;
    box-shadow: none;
    transition: var(--transition);
}

#modalFiltersProducts .form-check .form-check-input:checked{
    background-color: var(--black-100);
    border-color: var(--black-100);
    background-image: none;
    box-shadow: none;
}
#modalFiltersProducts  .form-check label{
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
#modalFiltersProducts  .form-check:has(input:checked) {
    background-color: var(--brand-yellow);
}

#modalFiltersProducts p {
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    margin-bottom: 4px;
    font-weight: 500;
}

#modalFiltersProducts .collapse{
    padding: 4px 0;
}
#modalFiltersProducts button.control-collapse{
    display: flex;
    flex-direction: row;;
    width: 100%;
    padding:0 24px 0 0;
    border: none;
    background-color: transparent;
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    position: relative;
    margin-top: 16px;
}
#modalFiltersProducts button.control-collapse:first-of-type{
    margin-top: 8px;
}

#modalFiltersProducts button.control-collapse svg{
    width: 18px ;
    height: 18px ;
    transition: var(--transition);
    position: absolute;
    right: 0;
    top: 4px;
    transform: rotate(180deg);
}

#modalFiltersProducts button.control-collapse.collapsed svg{
    transform: rotate(0deg);
}

@media(max-width:991px){
    #modalFiltersProducts .modal-content{
        padding:  24px;
    }
    #modalFiltersProducts p.title-modal{
        font-size: 24px;
    }
    #modalFiltersProducts button.closer{
        top: 20px;
        right: 20px;
    }

}





/* 8.FICHA PRODUCTO */

.intro-producto{
    padding:172px 0 80px 0 ;
}

.intro-producto p.breadcrumbs{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 40px;
}
@media(max-width:991px){
    .intro-producto p.breadcrumbs{
        flex-wrap: wrap;
    }
}
.intro-producto p.breadcrumbs a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}
.intro-producto span{
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    display: block;
    width: fit-content;
    border-radius: 50px;
    background: var(--brand-yellow);
    padding: 8px 16px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.intro-producto h1{
    color: var(--black-100);
    font-family:var(--playfaier);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}
.intro-producto p.description{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-top: 24px;
    max-width: 720px;
}

.tabs-productos nav .nav-tabs{
    border-bottom: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}


.tabs-productos button.nav-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: var(--black-80);
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 16px;
    transition: var(--transition);

    border-radius: 50px;
    background: var(--black-40);
    transition: var(--transition);
}
.tabs-productos button.nav-link svg{
    stroke: var(--black-80);
    width: 24px;
    height: 24px;
}
.tabs-productos button.nav-link.active{
    background: var(--brand-yellow);
    color: var(--black-100);
}
.tabs-productos button.nav-link.active svg{
    stroke: var(--black-100);
}

.tabs-productos .card-tab-product{
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 24px;
    background: var(--black-10);
        width: 100%;
}

.tabs-productos .card-tab-product .row{
    width: 100%;
}

.tabs-productos .card-tab-product h2{
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 20px;
}

.tabs-productos .card-tab-product ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 16px;
    margin:0;
}
.tabs-productos .card-tab-product img{
    width: 100%;
    border-radius: 16px;
}
.tabs-productos .card-tab-product ul li,
.tabs-productos .card-tab-product p{
    color: var(--black-80);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
}

.tabs-productos .card-tab-product .cultivos-tag ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    list-style: none;

}

.tabs-productos .card-tab-product .cultivos-tag ul li{
    color: #000;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    padding: 0;
}


.tabs-productos .card-tab-product .cultivos-tag p:first-of-type{
    color: #000;
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin-top: 20px;
}

.tabs-productos .card-tab-product .cultivos-tag p:last-of-type{
    color: #000;
    font-family: var(--inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.tabs-productos .card-tab-product  .item-doc-tabas{
    border-radius: 16px;
    background: #fff;
    display: flex;
    padding: 24px;
    flex-direction: column;
    height: 100%;
}

.tabs-productos .card-tab-product  .item-doc-tabas h3{
    color:#000;
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}

.tabs-productos .card-tab-product  .item-doc-tabas p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 56px;
}

.tabs-productos .card-tab-product  .item-doc-tabas a.default-link{
    margin-top: auto;
    font-size: 16px;
    padding: 16px 16px 16px 32px;
}

.tabs-productos .card-tab-product  .item-doc-tabas a.default-link span{

    left: 8px;
    
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
}

@media(max-width:1199px){
    .tabs-productos .card-tab-product .col-xl-3{
        margin-bottom: var(--bs-gutter-x);
    }
}

.tabla-composicion{
    width: 100%;
    border: 1px solid var(--black-40);
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background-color: #fff;
}

.tabla-composicion thead th{
    background-color: var(--brand-yellow);
    color: var(--black-100);
    font-family: var(--inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--black-40);
}

.tabla-composicion thead th + th{
    border-left: 1px solid var(--black-40);
}

.tabla-composicion tbody td{
    font-family: var(--inter);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    color: var(--black-80);
    padding: 10px 16px;
    background-color: #fff;
    border-bottom: 1px solid var(--black-40);
}

.tabla-composicion tbody tr:last-child td{
    border-bottom: 0;
}

.tabla-composicion tbody td + td{
    border-left: 1px solid var(--black-40);
    color: var(--black-90);
}

.grafico-producto {
    padding: 64px 0;
}
.grafico-producto h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}
.ensayos-relacionados{
    padding: 64px 0;
}
.ensayos-relacionados h2{
    color: var(--black-90);
    font-family: var(--playfaier);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 20px;
}

.ensayos-relacionados .card-ensayo{
    display: flex;
    padding: 32px;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid var(--black-40);
    background:  #FFF;
    margin-bottom: var(--bs-gutter-x);
}

.ensayos-relacionados .card-ensayo img{
    border-radius: 16px 16px 0 0;
    width: 100%;
    margin-bottom: 20px;
}

.ensayos-relacionados .card-ensayo p{
    color: var(--black-60);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.ensayos-relacionados .card-ensayo a.black-link{
    margin-top: auto;
    font-size: 16px;
    padding: 16px 32px 16px 64px;
    width: fit-content;

}
.ensayos-relacionados .card-ensayo a.black-link span{
    left: 8px;
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
}

#solicita-info.default-link{
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 1000;
    font-size: 18px;
    padding: 16px 24px 16px 64px;
}
#solicita-info.default-link span{
    left: 12px;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
}