*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f4f4;
}

.header{
    width:100%;
    background:#ffffff;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-size:16px;
    font-weight:bold;
    transition:0.3s;
}

.menu a:hover{
    color:#2E7D32;
}
.hero{
    min-height:85vh;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}
.hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-content{
    max-width:650px;
    color:white;
}

.hero-content h2{
    font-size:56px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:1.6;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-weight:bold;
    transition:0.3s;
}

.btn.primary{
    background:#2E7D32;
    color:white;
}

.btn.secondary{
    border:2px solid white;
    color:white;
}

.btn.primary:hover{
    background:#256428;
}

.btn.secondary:hover{
    background:white;
    color:#2E7D32;
}
/* ===========================
   HEADER
=========================== */

.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;

    background:transparent;
    box-shadow:none;
    .header{
    padding:30px 8%;
}
}

/*=========================
        LOGO
=========================*/

.logo{
    display:flex;
    align-items:center;
    flex:1;
}

.logo img{
    height:220px;
    width:auto;
    display:block;

    filter:
        drop-shadow(0 0 6px rgba(0,0,0,.75))
        drop-shadow(0 2px 12px rgba(0,0,0,.45));
}
/* Menú */


.menu a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    margin-left:30px;
    transition:.3s;
}

.menu a:hover{
    color:#7BC043;
}
.menu{
    display:flex;
    justify-content:center;
    gap:45px;
}
.menu{
    flex:2;

    display:flex;
    justify-content:center;
    gap:45px;
}

.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    background:transparent;
    box-shadow:none;
}

.btn-header{
    width:240px;
    height:58px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#4CAF50;
    border-radius:50px;

    font-size:18px;
    font-weight:700;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.btn-header:hover{
    background:#2E7D32;
    transform:translateY(-2px);
}

.btn-header:hover{
    background:#3FAE4C;
}
/* ==============================
   BENEFICIOS
============================== */

.beneficios{
    width:100%;
    background:#ffffff;
    padding:0 10% 80px;
    position:relative;
    z-index:20;
}

.beneficios-card{
    width:100%;
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4, 1fr);

    background:#ffffff;
    border-radius:18px;
    overflow:hidden;

    transform:translateY(-70px);
    box-shadow:0 20px 45px rgba(0,0,0,.14);
}

.beneficio-item{
    position:relative;
    min-height:250px;
    padding:35px 25px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    border-right:1px solid #e8e8e8;
    transition:.35s;
}

.beneficio-item:last-child{
    border-right:none;
}

.beneficio-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2E7D32;
}

.beneficio-item:hover{
    background:#f8fff8;
    transform:translateY(-8px);
}

.beneficio-icono{
    width:78px;
    height:78px;
    margin-bottom:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    background:#F4FBF4;
    border:2px solid #D8EDD8;
    transition:.35s;
}

.beneficio-icono img{
    width:40px;
    height:40px;
    display:block;

    filter:brightness(0) saturate(100%)
           invert(32%) sepia(64%) saturate(685%)
           hue-rotate(83deg) brightness(92%) contrast(90%);

    transition:.35s;
}

.beneficio-item:hover .beneficio-icono{
    background:#2E7D32;
    border-color:#2E7D32;
    box-shadow:0 12px 25px rgba(46,125,50,.30);
}

.beneficio-item:hover .beneficio-icono img{
    filter:brightness(0) invert(1);
    transform:scale(1.08);
}

.beneficio-item h3{
    max-width:220px;
    font-size:20px;
    line-height:1.25;
    font-weight:800;
    color:#2E7D32;
    margin-bottom:12px;
}

.beneficio-item p{
    max-width:230px;
    font-size:15px;
    line-height:1.6;
    color:#555;
}
/* ==============================
   NUESTRA HISTORIA
============================== */

.historia{
    width:100%;
    background:#ffffff;
    padding:40px 8% 100px;
}

.historia-contenedor{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    align-items:center;
}

.historia-imagen{
    width:100%;
    height:420px;

    border-radius:22px;
    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.14);
}

.historia-imagen img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.historia-subtitulo{
    display:inline-block;

    margin-bottom:15px;

    color:#2E7D32;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
}

.historia-texto h2{
    color:#2E7D32;
    font-size:44px;
    line-height:1.15;
    margin-bottom:25px;
}

.historia-texto p{
    color:#444;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;

    text-align:justify;
    max-width:720px;
}
.historia-texto{
    max-width:760px;
}

.historia-boton{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#2E7D32;
    font-size:17px;
    font-weight:800;
    text-decoration:none;

    transition:.3s;
}

.historia-boton span{
    font-size:24px;
    transition:.3s;
}

.historia-boton:hover{
    color:#1F5D25;
}

.historia-boton:hover span{
    transform:translateX(8px);
}
/*Misión, vision y valores*/
.mvv{
    background:#f7faf7;
    padding:90px 8%;
}

.mvv-contenedor{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mvv-card{
    background:#ffffff;
    padding:45px 35px;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border-top:5px solid #2E7D32;
    transition:.3s;
}

.mvv-card:hover{
    transform:translateY(-8px);
}

.mvv-card h3{
    color:#2E7D32;
    font-size:30px;
    margin-bottom:18px;
}

.mvv-card p{
    color:#555;
    font-size:17px;
    line-height:1.7;
    text-align:justify;
}
/*======================================
            PRODUCTOS
======================================

.productos{
    width:100%;
    background:#ffffff;
    padding:100px 8%;
}

.productos-contenedor{

    max-width:1400px;
    margin:0 auto;

    display:block;
    grid-template-columns:320px 1fr;
    gap:60px;

    align-items:start;

}
/* SECCIÓN PRODUCTOS 
.productos{
    padding:80px 20px;
    background:#f7f8f3;
}

/* Texto superior 
.productos-info{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;

    position:sticky;
    top:100px;
}

.productos-info span{
    color:#2E7D32;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.productos-info h2{
    font-size:54px;
    line-height:1.1;
    margin-bottom:24px;
}

.productos-info p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.productos-btn{
    display:inline-block;
    text-align:center;
    color:#2E7D32;
    font-weight:700;
    text-decoration:none;
    border-bottom:2px solid #2E7D32;
    padding-bottom:4px;
}

/* GRID DE PRODUCTOS
/* GRID 
.productos-grid{
    display:grid;
    grid-template-columns:repeat(6, minmax(170px,1fr));
    gap:22px;
    align-items:stretch;
}

/* CARD 
.producto-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.producto-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0,0,0,.12);
}

/* Imagen 
.producto-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
}

/* Contenido
.producto-contenido{
    padding:24px 18px 28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-height:250px;
}

.producto-contenido h3{
    font-size:17px;
    line-height:1.25;
    min-height:48px;
    margin-bottom:16px;
}

.producto-contenido p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:22px;
    flex:1;
}

.producto-contenido a{
    color:#2E7D32;
    font-weight:700;
    text-decoration:none;
    margin-top:auto;
}
*/


/*==========================
        LADO IZQUIERDO
===========================

.productos-info span{

    color:#2E7D32;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;

}

.productos-info h2{

    margin:15px 0 25px;

    font-size:48px;
    line-height:1.15;

    color:#222;

}
.productos-info p{

    color:#666;
    font-size:18px;
    line-height:1.9;

    text-align:justify;
    text-wrap:pretty;

    margin-bottom:35px;

}
.productos-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 32px;

    background:#2E7D32;

    color:#fff;
    text-decoration:none;

    font-weight:700;

    border-radius:10px;

    transition:.3s;

}

.productos-btn:hover{

    background:#246628;

    transform:translateY(-3px);

}
/* Contenedor 

/*==========================
        TARJETAS
===========================

.productos-grid{

    display:flex;

    grid-template-columns:repeat(5,1fr);
    gap:18px;
    flex:30px;

}

.producto-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.producto-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.producto-card img{

    width:100%;
    height:220px;

    object-fit:cover;

    display:block;

}

.producto-contenido{

    padding:24px;

}

.producto-contenido h3{

    font-size:24px;

    color:#222;

    margin-bottom:12px;

}
.producto-contenido p{

    color:#666;

    font-size:16px;

    line-height:1.8;

    text-align:justify;
    text-wrap:pretty;

    margin-bottom:20px;

}
.producto-contenido a{

    color:#2E7D32;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.producto-contenido a:hover{

    color:#246628;

}
.productos-grid{
    gap:28px;
}
.producto-contenido{
    padding:28px;
}
.producto-contenido a{

    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#2E7D32;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.producto-contenido a:hover{

    gap:14px;

}
.producto-card{
    display:flex;
    flex-direction:column;
}

.producto-card img{
    height:230px;
}

.producto-contenido{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:28px;
}

.producto-contenido h3{

    min-height:70px;

    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:10px;
    margin-bottom:22px;

    width:100%;

    text-align:center;

    font-size:26px;
    line-height:1.2;

    margin-bottom:15px;

    color:#222;

}
.producto-contenido p{

    flex:1;

    text-align:center;

    line-height:1.8;

    color:#666;

}
.producto-contenido a{
    margin-top:20px;

    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#2E7D32;
    font-weight:800;
    text-decoration:none;
}

.producto-contenido a:hover{
    gap:14px;
}
/*======================================
            PRODUCTOS
======================================*/

.productos{
    width:100%;
    background:#f7f8f3;
    padding:80px 20px;
}

.productos-contenedor{
    max-width:1500px;
    margin:0 auto;
    display:block;
}

/* Texto superior centrado */
.productos-info{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.productos-info span{
    color:#2E7D32;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.productos-info h2{
    font-size:42px;
    line-height:1.15;
    color:#2b2b2b;
    margin:0 0 18px;
    max-width:760px;
}

.productos-info p{
    font-size:17px;
    line-height:1.7;
    color:#555;
    max-width:680px;
    margin:0 0 26px;
}

.productos-btn{
    display:inline-block;
    color:#2E7D32;
    font-weight:700;
    text-decoration:none;
    border-bottom:2px solid #2E7D32;
    padding-bottom:4px;
}

/* 6 productos juntos */
.productos-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:24px;
    align-items:stretch;
}

.producto-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    transition:.3s ease;
}

.producto-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0,0,0,.12);
}

.producto-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
}

.producto-contenido{
    padding:24px 16px 28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-height:250px;
}

.producto-contenido h3{
    font-size:18px;
    line-height:1.25;
    color:#252525;
    margin:0 0 16px;
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.producto-contenido p{
    font-size:15px;
    line-height:1.6;
    color:#666;
    margin:0 0 22px;
    flex:1;
}

.producto-contenido a{
    color:#2E7D32;
    font-weight:700;
    text-decoration:none;
    margin-top:auto;
}
/*Efectos en las tarjetas*/
.producto-card{

    background:#fff;

    border-radius:18px;
    border:1px solid #eef2ee;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;
    }

.producto-card img{

    width:100%;
    height:230px;

    object-fit:cover;

    display:block;

    transition:transform .5s ease;

}
.producto-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);
    .producto-card:hover::before{

    transform:scaleX(1);

}
}

.producto-card:hover img{

    transform:scale(1.08);

}
.producto-card{

    position:relative;
    border-top:5px solid #2E7D32;
    overflow:hidden;

}
.producto-card h3{
    font-size: 21px;
}
    


.producto-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#2E7D32;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}
.producto-card:hover::before{

    transform:scaleX(1);

}
.producto-contenido a{

    transition:.3s;

}

.producto-card:hover .producto-contenido a{

    letter-spacing:.5px;

    gap:14px;

}
/*==============================
      SOBRE BSORG
==============================*/

.sobre-bsorg{

    padding:40px 8% 120px;

    background:#FAFAF7;

}

.sobre-contenedor{

    display:grid;

    grid-template-columns:1fr 1.3fr;

    align-items:center;

    gap:70px;

}

.sobre-etiqueta{

    display:inline-block;

    margin-bottom:18px;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    color:#2E7D32;

    text-transform:uppercase;

}

.sobre-texto h2{

    font-size:48px;

    line-height:1.2;

    color:#222;

    margin-bottom:25px;

}

.sobre-texto p{

    font-size:18px;

    line-height:1.8;

    color:#555;

    margin-bottom:20px;

    text-align:justify;

}

.btn-bsorg{

    display:inline-block;

    margin-top:20px;

    padding:15px 35px;

    background:#2E7D32;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-bsorg:hover{

    background:#236327;

    transform:translateY(-4px);

}

.sobre-imagen{

    overflow:hidden;

    border-radius:18px;
    margin-top:-25px;

}

.sobre-imagen img{

    width:100%;

    display:block;

    transition:.5s;

}

.sobre-imagen:hover img{

    transform:scale(1.05);

}
/* PARTE SUPERIOR FOOTER */

.footer{
    background:#063b1f;
    color:#ffffff;
}

.footer-cta{
    max-width:1200px;
    margin:0 auto;
    padding:45px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.15);
}
.footer-cta h2{
    color:#ffffff;
    font-size:34px;
    font-weight:800;
    margin-bottom:8px;
}

.footer-cta p{
    color:#e4f3e6;
    font-size:17px;
}
/* BOTÓN CONTACTO */

.footer-cta a{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:200px;
    height:54px;

    color:#ffffff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;

    border:2px solid rgba(255,255,255,.80);
    border-radius:10px;

    transition:.30s ease;

}

.footer-cta a:hover{

    background:#74c043;

    color:#fff;

    border-color:#74c043;

}
/*=========================
        LOGO FOOTER
=========================*/

.footer-brand{

    display:flex;
    flex-direction:column;
    align-items:flex-start;

}
.footer-brand img{

    width:350px;
    height:auto;

    margin-bottom:8px;

    filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.footer-brand span{

    width:100px;
    height:4px;

    background:#74c043;

    border-radius:20px;

    margin:8px 0 16px;

}

.footer-brand p{

    width:300px;

    margin-top:12px;

    color:#e6f3e8;

    font-size:16px;

    line-height:1.7;

}
/* COLUMNAS FOOTER */

.footer-main{
    max-width:1200px;
    margin:0 auto;
    padding:45px 40px;

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:55px;

    align-items:flex-start;
}

.footer-col h4{
    color:#ffffff;
    font-size:20px;
    font-weight:800;
    margin-bottom:18px;
}

.footer-col a{
    display:block;

    color:#e6f3e8;
    text-decoration:none;

    font-size:16px;
    margin-bottom:11px;

    transition:.25s;
}

.footer-col a:hover{
    color:#74c043;
    transform:translateX(5px);
}
/* Flechas verdes */

.footer-col a::before{

    content:"›";

    color:#74c043;

    font-size:22px;
    font-weight:700;

    margin-right:10px;

    transition:.25s;

}

.footer-col a:hover::before{

    margin-right:14px;

}
/* PARTE INFERIOR */

.footer-bottom{

    max-width:1200px;

    margin:0 auto;

    padding:22px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-top:1px solid rgba(255,255,255,.15);

}

.footer-bottom p{

    color:#d9ead9;

    font-size:15px;

}

.footer-bottom strong{

    color:#ffffff;

}

.footer-bottom a{
    color:#74c043;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#ffffff;

}
/*=========================
     REDES SOCIALES
=========================*/

.footer-social{

    display:flex;

    gap:14px;

    margin-top:8px;

}

.footer-social a{

    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:1px solid rgba(255,255,255,.18);

    border-radius:50%;

    transition:.30s;

}

.footer-social img{

    width:20px;
    height:20px;

    filter:brightness(0) invert(1);

    transition:.30s;

}

.footer-social a:hover{

    background:#74c043;

    border-color:#74c043;
    transform:translateY(-4px) scale(1.08);

}

.footer-social a:hover img{

    transform:scale(1.1);

}
/*==================================
        HERO CONTACTO
==================================*/

.hero-contacto{
    position: relative;
    min-height: 65vh;

    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/hero-contacto.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-contacto-overlay{

    max-width:850px;

}

.hero-contacto-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;

}

.hero-contacto-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-contacto-overlay h1{

font-size:40px;

}

.hero-contacto-overlay p{

font-size:18px;

}

}
.hero-contacto-overlay{
    width:100%;
    max-width:850px;
    padding:0 20px;
    text-align:center;
}

.hero-contacto h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-contacto p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/* ==============================
   FORMULARIO CONTACTO
============================== */

.contacto-seccion{
    background:#f8faf7;
    padding:100px 8%;
}

.contacto-contenedor{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;

    align-items:start;
}

.contacto-formulario,
.contacto-info{
    background:#ffffff;
    border-radius:22px;
    padding:45px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.contacto-formulario span,
.contacto-info span{
    display:inline-block;
    color:#2E7D32;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:14px;
}

.contacto-formulario h2,
.contacto-info h2{
    font-size:36px;
    line-height:1.2;
    color:#222;
    margin-bottom:28px;
}

.form-grupo{
    margin-bottom:22px;
}

.form-grupo label{
    display:block;
    color:#333;
    font-weight:700;
    margin-bottom:8px;
}

.form-grupo input,
.form-grupo textarea{
    width:100%;
    padding:15px 16px;

    border:1px solid #dfe6df;
    border-radius:10px;

    font-size:16px;
    font-family:inherit;

    outline:none;
    transition:.3s;
}

.form-grupo textarea{
    min-height:150px;
    resize:vertical;
}

.form-grupo input:focus,
.form-grupo textarea:focus{
    border-color:#2E7D32;
    box-shadow:0 0 0 4px rgba(46,125,50,.12);
}

.btn-formulario{
    width:100%;
    padding:16px 28px;

    background:#2E7D32;
    color:#ffffff;

    border:none;
    border-radius:10px;

    font-size:17px;
    font-weight:800;

    cursor:pointer;
    transition:.3s;
}

.btn-formulario:hover{
    background:#236527;
    transform:translateY(-3px);
}

.contacto-info p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
    text-align:justify;
}

.info-item{
    padding:20px 0;
    border-top:1px solid #e5e5e5;
}

.info-item strong{
    display:block;
    color:#2E7D32;
    font-size:17px;
    margin-bottom:6px;
}

.info-item a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.info-item a:hover{
    color:#2E7D32;
}
/*==================================
        RECAPTCHA
==================================*/

.g-recaptcha{

    display:flex;

    justify-content:center;

    margin:30px 0;

}
/* ==============================
   MAPA CONTACTO
============================== */

.mapa-contacto{
    background:#ffffff;
    padding:90px 8%;
}

.mapa-contenedor{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.mapa-contenedor span{
    display:inline-block;
    color:#2E7D32;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:14px;
}

.mapa-contenedor h2{
    color:#222;
    font-size:40px;
    margin-bottom:15px;
}

.mapa-contenedor p{
    color:#555;
    font-size:18px;
    margin-bottom:35px;
}

.mapa-box{
    width:100%;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}
/* ================================
   HERO NOSOTROS
================================ */
.hero-nosotros {
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
                url("../img/hero-nosotros.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-nosotros-overlay {
    max-width: 850px;
    color: #fff;
}

.hero-nosotros-overlay h1 {
    font-size: clamp(42px, 6vw, 78px);
    margin: 15px 0;
}

.hero-nosotros-overlay p {
    font-size: 20px;
    line-height: 1.6;
}

/* ================================
   HISTORIA NOSOTROS
================================ */
.historia-nosotros {
    padding: 100px 8%;
    background: #f7f9f4;
}

.historia-contenedor {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.historia-texto h2 {
    font-size: clamp(34px, 4vw, 54px);
    color: #1f3b22;
    margin: 15px 0 25px;
}

.historia-texto p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b4b4b;
    margin-bottom: 18px;
}

.historia-imagen img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .historia-contenedor {
        grid-template-columns: 1fr;
    }

    .hero-nosotros-overlay p {
        font-size: 17px;
    }
}
/* ================================
   LÍNEA DEL TIEMPO BSORG
================================ */

.timeline-bsorg{
    padding:100px 8%;
    background:#ffffff;
}

.timeline-contenedor{
    max-width:1300px;
    margin:0 auto;
    text-align:center;
}

.timeline-contenedor > span{
    color:#62bb46;
    font-weight:800;
    letter-spacing:5px;
    font-size:14px;
}

.timeline-contenedor h2{
    font-size:clamp(36px,4.5vw,60px);
    color:#173d24;
    margin:18px 0 20px;
}

.timeline-intro{
    max-width:760px;
    margin:0 auto 70px;
    font-size:18px;
    line-height:1.7;
    color:#4a4a4a;
}

.timeline-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.timeline-grid::before{
    content:"";
    position:absolute;
    top:38px;
    left:10%;
    right:10%;
    height:3px;
    background:#62bb46;
    opacity:.35;
}

.timeline-item{
    position:relative;
    background:#f7f9f4;
    padding:35px 28px;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    text-align:left;
    transition:.3s ease;
}

.timeline-item:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

.timeline-icon{
    width:76px;
    height:76px;
    border-radius:50%;
    background:#173d24;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.timeline-item h3{
    font-size:34px;
    color:#62bb46;
    margin-bottom:8px;
}

.timeline-item h4{
    font-size:21px;
    color:#173d24;
    margin-bottom:14px;
}

.timeline-item p{
    font-size:16px;
    line-height:1.7;
    color:#4d4d4d;
}

/* RESPONSIVE */
@media(max-width:1000px){
    .timeline-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .timeline-grid::before{
        display:none;
    }
}

@media(max-width:650px){
    .timeline-bsorg{
        padding:70px 6%;
    }

    .timeline-grid{
        grid-template-columns:1fr;
    }

    .timeline-item{
        text-align:left;
    }
}
/* ================================
   CTA NOSOTROS
================================ */

.cta-nosotros{
    min-height:430px;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../img/cta-campo.webp") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 20px;
}

.cta-nosotros-contenido{
    max-width:850px;
    color:#fff;
}

.cta-nosotros-contenido span{
    color:#7fbf3f;
    font-weight:800;
    letter-spacing:4px;
    font-size:14px;
}

.cta-nosotros-contenido h2{
    font-size:clamp(38px,5vw,66px);
    margin:18px 0 22px;
}

.cta-nosotros-contenido p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;
}

.btn-cta-nosotros{
    display:inline-block;
    padding:16px 34px;
    background:#62bb46;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s ease;
}

.btn-cta-nosotros:hover{
    background:#4fa638;
    transform:translateY(-3px);
}

@media(max-width:768px){
    .cta-nosotros{
        min-height:360px;
        padding:65px 20px;
    }

    .cta-nosotros-contenido p{
        font-size:17px;
    }
}
/*==================================
        HERO PRODUCTOS
==================================*/

.hero-productos{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-productos.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-productos-overlay{

    max-width:850px;

}

.hero-productos-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-productos-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-productos-overlay h1{

font-size:40px;

}

.hero-productos-overlay p{

font-size:18px;

}

}
.hero-productos-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-productos h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-productos p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/*==================================
        HERO FERTILIZANTES
==================================*/

.hero-fertilizantes{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-fertilizantes.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-fertilizantes-overlay{

    max-width:850px;

}

.hero-fertilizantes-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-fertilizantes-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-fertilizantes-overlay h1{

font-size:40px;

}

.hero-fertilizantes-overlay p{

font-size:18px;

}

}
.hero-fertilizantes-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-fertilizantes h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-fertilizantes p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
.fertilizantes-lista{
    padding:100px 8%;
    background:#f7f7f7;
}

.titulo-productos{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    margin-bottom:50px;
}

.titulo-productos h2{
    font-size:42px;
    color:#1f1f1f;
}

.btn-catalogo{
    background:#2e7d32;
    color:#fff;
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
}

.grid-fertilizantes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.fert-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.fert-card:hover{
    transform:translateY(-8px);
}

.fert-img{
    height:340px;
    background:#f1f1f1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.fert-img img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.fert-info{
    padding:28px;
}

.fert-info span{
    color:#2e7d32;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.fert-info h3{
    font-size:28px;
    margin:12px 0;
}

.fert-info p{
    color:#555;
    line-height:1.7;
}

.presentaciones-hover{
    display:flex;
    gap:10px;
    margin-top:22px;
}

.presentaciones-hover button{
    border:none;
    background:#eaf4eb;
    color:#2e7d32;
    padding:10px 16px;
    border-radius:10px;
    font-weight:800;
    cursor:pointer;
}

.presentaciones-hover button:hover{
    background:#2e7d32;
    color:#fff;
}

@media(max-width:768px){
    .titulo-productos{
        flex-direction:column;
        text-align:center;
    }

    .titulo-productos h2{
        font-size:34px;
    }
}
/*==================================
        HERO BIOESTIMULANTES
==================================*/

.hero-bioestimulantes{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-bioestimulantes.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-bioestimulantes-overlay{

    max-width:850px;

}

.hero-bioestimulantes-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-bioestimulantes-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-bioestimulantes-overlay h1{

font-size:40px;

}

.hero-bioestimulantes-overlay p{

font-size:18px;

}

}
.hero-bioestimulantes-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-bioestimulantes h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-bioestimulantes p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/*==================================
        HERO ACONDICIONADORES
==================================*/

.hero-acondicionador{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-acondicionador.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-acondicionador-overlay{

    max-width:850px;

}

.hero-acondicionador-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-acondicionador-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-acondicionador-overlay h1{

font-size:40px;

}

.hero-acondicionador-overlay p{

font-size:18px;

}

}
.hero-acondicionador-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-acondicionador h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-acondicionador p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/*==================================
        HERO ESPECIALIDADES
==================================*/

.hero-especialidades{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-especialidades.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-bioestimulantes-overlay{

    max-width:850px;

}

.hero-especialidades-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-especialidades-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-especialidades-overlay h1{

font-size:40px;

}

.hero-especialidades-overlay p{

font-size:18px;

}

}
.hero-especialidades-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-especialidades h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-especialidades p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/*==================================
        HERO INSECTICIDAS
==================================*/

.hero-insecticidas{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-insecticidas.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-insecticidas-overlay{

    max-width:850px;

}

.hero-insecticidas-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-insecticidas-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-insecticidas-overlay h1{

font-size:40px;

}

.hero-insecticidas-overlay p{

font-size:18px;

}

}
.hero-insecticidas-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-insecticidas h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-insecticidas p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/*==================================
        HERO FUNGICIDAS
==================================*/

.hero-fungicidas{
    position: relative;
    min-height: 75vh;

    background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/hero-fungicidas.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    color:#fff;
}

.hero-fungicidas-overlay{

    max-width:850px;

}

.hero-fungicidas-overlay h1{

    font-size:clamp(40px,6vw,78px);

    margin-bottom:20px;

    font-weight:700;
    margin-top:30px;

}

.hero-fungicidas-overlay p{

    font-size:22px;

    line-height:1.7;

}

@media(max-width:768px){

.hero-contacto{

min-height:50vh;

padding:100px 20px 60px;

}

.hero-insecticidas-overlay h1{

font-size:40px;

}

.hero-insecticidas-overlay p{

font-size:18px;

}

}
.hero-insecticidas-overlay{

    width:100%;
    max-width:850px;

    padding:0 40px;

    text-align:center;

}

.hero-insecticidas h1{

    color:#ffffff;

    font-size:64px;

    margin-bottom:20px;

}

.hero-insecticidas p{

    color:#ffffff;

    font-size:22px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}
/*Footer parte del contacto */
.footer-contacto p{
    margin: 0 0 12px;
    color: #d8d8d8;
    line-height: 1.7;
    font-size: 15px;
}

.footer-map{
    display: inline-block;
    margin-top: 8px;
    color: #8bc34a;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.footer-map:hover{
    color: #ffffff;
}
/*CERTIFICACIONES*/
.footer-certificaciones{

    margin-top:40px;

    display:flex;

    flex-direction:row;

    align-items:center;

    justify-content:center;

    gap:35px;

    flex-wrap:nowrap;
}

.footer-certificaciones img{

    width:auto;

    height:120px;

    max-width:none;

    transition:.3s;
}

.footer-certificaciones img:hover{

    transform:scale(1.05);
}
/*DESCARGA FICHA TECNICA*/
.btn-ficha{
    display:inline-block;
    margin-top:18px;
    padding:12px 20px;
    background:#0b7a2a;
    color:#fff;
    font-weight:700;
    font-size:14px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}

.btn-ficha:hover{
    background:#095f22;
    transform:translateY(-2px);
}

/* COMPUTADORAS O PANTALLAS*/
/*=========================
      MENU HAMBURGUESA
=========================*/

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#ffffff;
    font-size:34px;
    cursor:pointer;
    z-index:2000;
}
/*MENU VERDE CON CIRCULO VERDE */
.menu-toggle{
    display:none;
    width:52px;
    height:52px;

    background:#2E7D32;
    color:#fff;

    border:none;
    border-radius:50%;

    font-size:28px;
    font-weight:bold;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.25);
}
/*.btn-menu{

    display:none;

    margin:18px;

    padding:14px 18px;

    background:#4CAF50;

    color:#fff;

    text-decoration:none;

    text-align:center;

    font-weight:700;

    border-radius:40px;

    transition:.3s;
}

.btn-menu:hover{

    background:#2E7D32;
}*/
/* Desktop */
.btn-header{
    display:flex;
}

@media screen and (max-width:1024px){
    /* HEADER */
.header{
    padding:18px 5%;
}

.logo img{
    height:170px;
}

.menu{
    position:static;
    right:auto;
    gap:24px;
}

.menu a{
    margin-left:0;
    font-size:15px;
}

.btn-header{
    width:210px;
    height:52px;
    font-size:16px;
}
/* BENEFICIOS
   Hace las tarjetas 2x2.
   No mueve la sección lateralmente.
*/

.beneficios-card{
    grid-template-columns:repeat(2, 1fr);
}

.beneficio-item{
    min-height:240px;
}
/*=========================================
    HISTORIA

RESOLUCIÓN:
1024 px

CLASES:
.historia
.historia-contenedor
.historia-imagen
.historia-texto

QUÉ HACE:
✔ Mantiene dos columnas.
✔ Reduce separación.
✔ Conserva imagen y texto equilibrados.
=========================================*/

.historia{
    padding:70px 5%;
}

.historia-contenedor{
    gap:40px;
}

.historia-imagen{
    height:380px;
}

.historia-texto h2{
    font-size:38px;
}

.historia-texto p{
    font-size:17px;
    text-align: justify;
}
/*=========================================
    MISIÓN · VISIÓN · VALORES

RESOLUCIÓN:
1024 px

CLASES:
.mvv
.mvv-contenedor
.mvv-card

QUÉ HACE:
✔ Mantiene las 3 columnas.
✔ Reduce espacios.
✔ Hace las tarjetas un poco más compactas.

=========================================*/

.mvv{
    padding:70px 5%;
}

.mvv-contenedor{
    gap:20px;
}

.mvv-card{
    padding:35px 25px;
}

.mvv-card h3{
    font-size:28px;
}

.mvv-card p{
    font-size:16px;
    text-align:justify;
}
/* PRODUCTOS
   Cambia el layout a texto arriba + tarjetas 2x2.
*/

.productos{
    padding:80px 5%;
}

.productos-contenedor{
    grid-template-columns:1fr;
    gap:45px;
}

.productos-info{
    text-align:center;
    max-width:850px;
    margin:0 auto;
}

.productos-info p{
    text-align:justify;
}

.productos-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}
/*ULTIMO PRODUCTO COMANDO
.productos-grid .producto-card:last-child{
    grid-column:1 / -1;
    justify-self:center;
    max-width:380px;
    width:100%;
}*/
/*=========================================
    HABLEMOS SOBRE BSORG

RESOLUCIÓN:
1024 px

CLASES:
.sobre-bsorg
.sobre-contenedor
.sobre-texto
.sobre-imagen
.btn-bsorg

QUÉ HACE:
✔ Mantiene dos columnas.
✔ Reduce espacios.
✔ Conserva la imagen y el texto balanceados.
=========================================*/

.sobre-bsorg{
    padding:80px 5%;
}

.sobre-contenedor{
    gap:40px;
}

.sobre-imagen{
    height:400px;
}

.sobre-texto h2{
    font-size:38px;
}

.sobre-texto p{
    font-size:17px;
    line-height:1.8;
    text-align:justify;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
1024 px

CLASES:
.footer-cta
.footer-main
.footer-brand
.footer-col
.footer-bottom

QUÉ HACE:
✔ Reduce espacios.
✔ Mantiene las 4 columnas.
✔ Reduce el CTA.
=========================================*/

.footer{
    padding:70px 5% 30px;
}

.footer-cta{
    padding:35px;
}

.footer-cta h2{
    font-size:36px;
}

/*.footer-main{
    gap:40px;
}*/

.footer-brand img{
    height:140px;
}

.footer-col h4{
    font-size:22px;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
1024 px

CLASES:
.footer
.footer-main
.footer-brand
.footer-enlaces
.footer-productos
.footer-contacto

QUÉ HACE:
✔ Mantiene las 4 columnas.
✔ Reduce espacios.
=========================================*/

.footer{
    padding:70px 5% 30px;
}

.footer-main{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.footer-main{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:35px;
}

.footer-brand img{
    max-width:180px;
}

.footer-enlaces a,
.footer-productos a,
.footer-contacto p{
    font-size:15px;
    line-height:1.8;
}

    }
/*TABLETS O IPADS */
@media screen and (max-width:768px){
        /* HEADER */
/*=========================
      HEADER MOVIL
=========================*/

.header{
    position:absolute !important;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:grid !important;
    grid-template-columns:60px 1fr 60px;
    align-items:center;

    padding:18px 20px !important;
    background:transparent !important;
}

.menu{

    display:none !important;

    position:absolute;
    top:100%;
    left:20px;
    right:40px;

    flex-direction:column;
    gap:0;

    background:#2E7D32;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.20);
     .menu.activo{
    display:flex !important;
    }
}
.menu.activo{
    display:flex !important;
}

.menu a{

    padding:18px;

    color:#fff;

    border-bottom:1px solid rgba(255,255,255,.15);

    margin:0;

    text-align:left;
}

.menu a:last-child{
    border-bottom:none;
}
.menu-toggle{
    grid-column:1;
    justify-self:start;
    display:flex;
    justify-content:center;
    align-items:center;
}
.logo{
    /*flex:none;
    grid-column:3;
    justify-content:right !important;
    left: 20px;*/

    order:2;
    flex:1;
    display:flex;
    justify-content:center;
}
.logo img{
    height:130px;
}

.btn-header{
    display:flex !important;
    width:auto !important;
    max-width:none !important;
    height:auto !important;
    margin:16px !important;
    padding:14px 18px !important;
    background:#4CAF50 !important;
    color:#fff !important;
    border-radius:40px !important;
    text-align:center !important;
    justify-content:center !important;
}
/* BENEFICIOS
   Hace las tarjetas 2x2.
   No mueve la sección lateralmente.
*/

.beneficios-card{
    grid-template-columns:repeat(1, 1fr);
}

.beneficio-item{
    min-height:240px;
}
/*=========================================
    HISTORIA

RESOLUCIÓN:
768 px

QUÉ HACE:
✔ Cambia a una sola columna.
✔ Imagen arriba.
✔ Texto abajo.
=========================================*/

.historia{
    padding:60px 5%;
}

.historia-contenedor{
    grid-template-columns:1fr;
    gap:35px;
}

.historia-imagen{
    height:360px;
}

.historia-imagen img{
    object-fit:cover;
    object-position:center;
}

.historia-texto{
    text-align:center;
}

.historia-texto h2{
    font-size:36px;
}

.historia-texto p{
    text-align:left;
    text-align: justify;
}
/*=========================================
    MISIÓN · VISIÓN · VALORES

RESOLUCIÓN:
768 px

QUÉ HACE:
✔ Cambia de 3 columnas a 1.
✔ Centra las tarjetas.
✔ Mantiene el texto justificado.

=========================================*/

.mvv{
    padding:60px 5%;
}

.mvv-contenedor{
    grid-template-columns:1fr;
    gap:25px;
}

.mvv-card{
    padding:35px 30px;
}

.mvv-card h3{
    text-align:center;
}

.mvv-card p{
    text-align:justify;
}
/* PRODUCTOS
   Mantiene tarjetas 2x2 en tablet.
*/

.productos{
    padding:70px 5%;
}

.productos-info h2{
    font-size:38px;
}

.productos-grid{
    grid-template-columns:repeat(1,1fr);
}
/*=========================================
    HABLEMOS SOBRE BSORG

RESOLUCIÓN:
768 px

QUÉ HACE:
✔ Cambia a una columna.
✔ Texto arriba.
✔ Imagen abajo.
=========================================*/

.sobre-bsorg{
    padding:70px 5%;
}

.sobre-contenedor{
    grid-template-columns:1fr;
    gap:35px;
}

.sobre-texto{
    text-align:center;
}

.sobre-texto h2{
    font-size:36px;
}

.sobre-texto p{
    text-align:justify;
}

.sobre-imagen{
    height:360px;
}

.sobre-imagen img{
    object-fit:cover;
    object-position:center;
}

.btn-bsorg{
    margin:0 auto;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
768 px

QUÉ HACE:
✔ CTA en columna.
✔ Footer en 2 columnas.
=========================================*/

.footer-cta{
    flex-direction:column;
    text-align:center;
    gap:25px;
}

/*.footer-main{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}*/
/*.footer-main{
    grid-template-columns:1fr 1fr;
}*/
/*=========================================
    FOOTER

RESOLUCIÓN:
768 px

QUÉ HACE:
✔ CTA en columna.
✔ Footer en 2 columnas.
✔ Evita que los textos se salgan.

=========================================*/

.footer-cta{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

.footer-main{
    display:grid;
    grid-template-columns:repeat(1, 1fr);
    gap:30px;
}

.footer-brand{
    grid-column:1 / -1;
    text-align:left;
}

.footer-brand p{
    text-align:left;
}

.footer-social{
    justify-content:left;
}

.footer-certificaciones{
    justify-content:center;
    gap:20px;
}
QUÉ HACE:
✔ Centra el contenido.
✔ Reduce el H1.
✔ Ajusta el párrafo.
=========================================*/

.fert-contenido,
.bio-contenido,
.acon-contenido,
.inse-contenido,
.espe-contenido{
    width:100%;
    max-width:100%;
    margin:0 auto;
    text-align:center;
}

.fert-contenido h1,
.bio-contenido h1,
.acon-contenido h1,
.inse-contenido h1,
.espe-contenido h1{
    font-size:38px;
    line-height:1.15;
    margin-bottom:18px;
    text-align:center;
}

.fert-contenido p,
.bio-contenido p,
.acon-contenido,
.inse-contenido p,
.espe-contenido p{
    font-size:17px;
    line-height:1.7;
    text-align:center;
}
}
/*TABLETS O CELULARES */
@media screen and (max-width:430px){
       /* HEADER */
.header{
    gap:12px;
    padding:16px 20px;
}

.logo img{
    height:130px;
}

.menu{
    gap:10px;
    padding:10px 14px;
}

.menu a{
    font-size:13px;
}

.btn-header{
    max-width:260px;
    height:48px;
    font-size:14px;
    display:none;
}
/* BENEFICIOS
   En celular acomoda 1 tarjeta por fila.
*/

.beneficios{
    padding:0 20px 60px;
}

.beneficios-card{
    grid-template-columns:1fr;
    transform:translateY(-45px);
}

.beneficio-item{
    min-height:auto;
    padding:30px 22px;
    border-right:none;
    border-bottom:1px solid #e8e8e8;
}

.beneficio-item:last-child{
    border-bottom:none;
}
/*=========================================
    HISTORIA

RESOLUCIÓN:
480 px

QUÉ HACE:
✔ Reduce espacios.
✔ Imagen más pequeña.
=========================================*/

.historia{
    padding:50px 20px;
}

.historia-imagen{
    height:300px;
}

.historia-subtitulo{
    font-size:13px;
}

.historia-texto h2{
    font-size:30px;
}

.historia-texto p{
    font-size:16px;
    line-height:1.7;
}

.historia-boton{
    justify-content:center;
}
/*=========================================
    MISIÓN · VISIÓN · VALORES

RESOLUCIÓN:
430 px

QUÉ HACE:
✔ Ajuste para celulares.
✔ Tarjetas cómodas para leer.
✔ Mantiene todo alineado.

=========================================*/

.mvv{
    padding:50px 20px;
}

.mvv-card{
    padding:28px 22px;
    border-radius:16px;
}

.mvv-card h3{
    font-size:26px;
    margin-bottom:15px;
    text-align:center;
}

.mvv-card p{
    font-size:15px;
    line-height:1.8;
    text-align:justify;
}
/* PRODUCTOS
   En celular cambia a 1 tarjeta por fila.
*/

.productos{
    padding:60px 20px;
}

.productos-info h2{
    font-size:32px;
    line-height:1.15;
}

.productos-info p{
    font-size:16px;
    line-height:1.8;
    text-align:justify;
}

.productos-btn{
    width:100%;
    max-width:320px;
}

.productos-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.producto-card img{
    height:220px;
}

.producto-contenido h3{
    min-height:auto;
    font-size:26px;
}

.producto-contenido p{
    font-size:16px;
}
/*=========================================
    HABLEMOS SOBRE BSORG

RESOLUCIÓN:
430 px

QUÉ HACE:
✔ Ajuste para celulares.
✔ Reduce espacios.
✔ Mantiene buena lectura.
=========================================*/

.sobre-bsorg{
    padding:60px 20px;
}

.sobre-imagen{
    height:300px;
}

.sobre-etiqueta{
    font-size:13px;
}

.sobre-texto h2{
    font-size:30px;
    line-height:1.15;
}

.sobre-texto p{
    font-size:16px;
    line-height:1.8;
    text-align:justify;
}

.btn-bsorg{
    width:100%;
    max-width:300px;
    justify-content:center;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
430 px

QUÉ HACE:
✔ Todo en una columna.
✔ Centra enlaces.
✔ Ajusta logos.
=========================================*/

.footer{
    padding:60px 20px 25px;
}

.footer-main{
    grid-template-columns:1fr;
    gap:30px;
    text-align:left;
}


.footer-col a{
    display:block;
    margin-bottom:10px;
}

/*.footer-contacto p{
    text-align:center;
}*/

.footer-brand img{
    height:120px;
}

.footer-certificaciones{
    justify-content:center;
    gap:18px;
}

.footer-certificaciones img{
    height:75px;
}

.footer-map{
    display:inline-block;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
430 px

QUÉ HACE:
✔ Todo en una columna.
✔ Centra el contenido.
=========================================*/

.footer{
    padding:60px 20px 25px;
}

.footer-main{
    grid-template-columns:1fr;
    gap:30px;
}

/*.footer-brand,
.footer-enlaces,
.footer-productos,
.footer-contacto{
    text-align:center;
}*/

.footer-social{
    justify-content:center;
}

.footer-certificaciones{
    justify-content:center;
    gap:18px;
}

.footer-certificaciones img{
    height:70px;
}

.footer-enlaces a,
.footer-productos a{
    display:block;
    margin-bottom:12px;
    text-align: left;
}

/*.footer-contacto p{
    text-align:center;
}*/

.footer-map{
    display:inline-block;
}
/*HERO FERTILIZANTE, BIOESTIMULANTES, ESPECIALIDADES E INSECTICIDAS*/
/*=========================================
    HERO INTERNAS

RESOLUCIÓN:
430 px

CLASES:
.fertilizantes-content
.bioestimulantes-content
.insecticidas-content
.especialidades-content

QUÉ HACE:
✔ Centra el contenido.
✔ Reduce el H1.
✔ Ajusta el párrafo.
=========================================*/

.fert-contenido,
.bio-contenido,
.acon-contenido,
.inse-contenido,
.espe-contenido{
    width:100%;
    max-width:100%;
    margin:0 auto;
    text-align:center;
}

.fert-contenido h1,
.bio-contenido h1,
.acon-contenido h1,
.inse-contenido h1,
.espe-contenido h1{
    font-size:38px;
    line-height:1.15;
    margin-bottom:18px;
    text-align:center;
}

.fert-contenido p,
.bio-contenido p,
.acon-contenido,
.inse-contenido p,
.espe-contenido p{
    font-size:17px;
    line-height:1.7;
    text-align:center;
}
}
/*CELULARES */
@media screen and (max-width:390px){
    /* HEADER */
.logo img{
    height:120px;
}

.menu{
    gap:8px;
    padding:10px 12px;
}

.menu a{
    font-size:12.5px;
}

.btn-header{
    max-width:250px;
    height:46px;
    font-size:13.5px;
    display:none;
}
.hero-content h1{
    text-align:left;
    font-size:30px;   
}
/* BENEFICIOS
   Ajuste fino para iPhone.
*/

.beneficios{
    padding:0 18px 55px;
}

.beneficios-card{
    grid-template-columns:1fr;
}

.beneficio-icono{
    width:70px;
    height:70px;
}

.beneficio-icono img{
    width:36px;
    height:36px;
}

.beneficio-item h3{
    font-size:19px;
}

.beneficio-item p{
    font-size:15px;
}
/*=========================================
    HISTORIA

RESOLUCIÓN:
390 px

QUÉ HACE:
✔ Ajuste fino para iPhone.
✔ Muestra mejor a la persona.
=========================================*/

.historia{
    padding:45px 18px;
}

.historia-imagen{
    height:280px;
}

.historia-imagen img{
    object-fit:cover;
    object-position:15% center;
}

.historia-texto h2{
    font-size:28px;
}

.historia-texto p{
    text-align: justify;
    font-size:15px;
}

.historia-boton{
    width:100%;
    justify-content:center;
}
/*=========================================
    MISIÓN · VISIÓN · VALORES

RESOLUCIÓN:
390 px

QUÉ HACE:
✔ Ajuste fino para iPhone.
✔ Reduce un poco la tarjeta.
✔ Mantiene texto justificado.
=========================================*/

.mvv{
    padding:45px 18px;
}

.mvv-card{
    padding:26px 20px;
    border-radius:16px;
}

.mvv-card h3{
    font-size:25px;
    margin-bottom:14px;
    text-align:center;
}

.mvv-card p{
    font-size:15px;
    line-height:1.75;
    text-align:justify;
}
/* PRODUCTOS
   Ajuste fino para iPhone.
*/

.productos{
    padding:55px 18px;
}

.productos-info h2{
    font-size:30px;
}

.producto-card img{
    height:210px;
}

.producto-contenido{
    padding:24px;
}

.producto-contenido h3{
    font-size:24px;
}

.producto-contenido p{
    font-size:15px;
    line-height:1.7;
}
/*=========================================
    HABLEMOS SOBRE BSORG

RESOLUCIÓN:
390 px

QUÉ HACE:
✔ Ajuste fino para iPhone.
✔ Imagen un poco más pequeña.
✔ Botón de ancho completo.
=========================================*/

.sobre-bsorg{
    padding:55px 18px;
}

.sobre-imagen{
    height:280px;
}

.sobre-imagen img{
    object-fit:cover;
    object-position:center;
}

.sobre-texto h2{
    font-size:28px;
}

.sobre-texto p{
    font-size:15px;
    line-height:1.75;
    text-align:justify;
}

.btn-bsorg{
    width:100%;
    max-width:280px;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
390 px

QUÉ HACE:
✔ Ajuste fino iPhone.
✔ Logos más pequeños.
✔ CTA compacto.
=========================================*/

.footer{
    padding:55px 18px 20px;
}

.footer-cta{
    padding:25px;
}

.footer-cta h2{
    font-size:28px;
}

.footer-cta p{
    font-size:15px;
}

.footer-brand img{
    height:110px;
}

.footer-certificaciones img{
    height:65px;
}

.footer-col h4{
    font-size:20px;
}

.footer-col a,
.footer-contacto p{
    font-size:15px;
}

.footer-bottom{
    font-size:14px;
}
/*=========================================
    FOOTER

RESOLUCIÓN:
390 px

QUÉ HACE:
✔ Ajuste fino para iPhone.
=========================================*/

.footer{
    padding:50px 18px 20px;
}

.footer-cta{
    padding:25px;
}

.footer-cta h2{
    font-size:28px;
}

.footer-cta p{
    font-size:15px;
}

.footer-brand img{
    max-width:150px;
}

.footer-certificaciones img{
    height:60px;
}

.footer-enlaces a,
.footer-productos a,
.footer-contacto p{
    font-size:15px;
    line-height:1.7;
    text-align: left;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:10px;
    font-size:14px;
}
/*=========================================
    HERO INTERNAS

RESOLUCIÓN:
390 px

QUÉ HACE:
✔ Ajuste fino para iPhone.
✔ Reduce ligeramente el H1.
=========================================*/

.fert-contenido,
.bio-contenido,
.inse-contenido,
.espe-contenido{
    width:100%;
    max-width:100%;
    margin:0 auto;
    text-align:center;
}

.fert-contenido h1,
.bio-contenido h1,
.inse-contenido h1,
.espe-contenido h1{
    font-size:40px;
    line-height:1.1;
    margin-bottom:15px;
    text-align:center;
}

.fert-contenido p,
.bio-contenido p,
.inse-contenido p,
.espe-contenido p{
    font-size:16px;
    line-height:1.7;
    text-align:center;
}
}
/*CONTACTO*/
.contacto-contenedor{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.form-grupo input,
.form-grupo textarea{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mapa-box iframe{
    width: 100%;
    display: block;
}
/* ===========================
   RESPONSIVE - 1024px
=========================== */
@media (max-width: 1024px){

    .contacto-seccion,
    .mapa-contacto{
        padding: 70px 30px;
    }

    .contacto-contenedor{
        max-width: 100%;
        gap: 30px;
        grid-template-columns: 1.1fr .9fr;
        align-items: start;
    }

    .contacto-formulario,
    .contacto-info{
        padding: 35px;
    }

    .contacto-formulario h2,
    .contacto-info h2,
    .mapa-contenedor h2{
        font-size: 36px;
        line-height: 1.2;
    }

    .form-grupo input,
    .form-grupo textarea{
        width: 100%;
        box-sizing: border-box;
    }

    .btn-formulario{
        width: 100%;
        max-width: 260px;
    }

    .mapa-box iframe{
        height: 420px;
    }
}
/* TABLET / iPad vertical */
@media (max-width: 768px){

    .contacto-contenedor{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contacto-seccion,
    .mapa-contacto{
        padding: 60px 18px;
    }

    .contacto-formulario h2,
    .contacto-info h2,
    .mapa-contenedor h2{
        font-size: 32px;
    }

    .mapa-box iframe{
        height: 400px;
    }
}

/* iPhone grande */
@media (max-width: 430px){

    .contacto-seccion,
    .mapa-contacto{
        padding: 45px 15px;
    }

    .contacto-formulario,
    .contacto-info{
        padding: 25px 20px;
    }

    .contacto-formulario h2,
    .contacto-info h2,
    .mapa-contenedor h2{
        font-size: 26px;
        line-height: 1.2;
    }

    .form-grupo input{
        height: 48px;
    }

    .form-grupo textarea{
        min-height: 130px;
    }

    .btn-formulario{
        width: 100%;
        max-width: 100%;
        height: 50px;
    }

    .mapa-box iframe{
        height: 330px;
    }
}

/* iPhone normal / chico */
@media (max-width: 390px){

    .contacto-formulario,
    .contacto-info{
        padding: 22px 16px;
    }

    .contacto-formulario h2,
    .contacto-info h2,
    .mapa-contenedor h2{
        font-size: 24px;
    }

    .info-item a{
        font-size: 15px;
        line-height: 1.5;
        word-break: break-word;
    }

    .mapa-box iframe{
        height: 300px;
    }

    .g-recaptcha{
        transform: scale(.88);
        transform-origin: left top;
    }
}
/*MAPA*/
.mapa-box iframe{
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}