:root{
    --green:#15803d;
    --green2:#0f6b33;
    --blue:#123d66;
    --ink:#17324d;
    --muted:#6d7b8a;
    --soft:#f3f8f5;
    --line:#e5ece8;
}

*{
    box-sizing:border-box;
}

body{
    font-family:Roboto,sans-serif;
    color:var(--muted);
    margin:0;
    background:#fff;
}

h1,h2,h3,h4,h5,h6{
    font-family:Montserrat,sans-serif;
    color:var(--ink);
    font-weight:700;
}

a{
    text-decoration:none;
}

.container{
    max-width:1180px;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar{
    background:#0d2438;
    color:#fff;
    font-size:13px;
    padding:8px 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 30px rgba(14,35,55,.06);
}

.site-header>.container{
    min-height:84px;
}

.brand img{
    height:58px;
    width:auto;
}

.site-header nav a{
    color:#28465f;
    font-weight:600;
}

.site-header nav a:hover{
    color:var(--green);
}


/* =========================================================
   BOTONES
========================================================= */

.btn-main,
.btn-white,
.btn-lightx{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    border-radius:12px;
    font-weight:700;
    transition:.2s;
}

.btn-main{
    background:var(--green);
    color:#fff;
}

.btn-main:hover{
    background:var(--green2);
    color:#fff;
    transform:translateY(-1px);
}

.btn-lightx{
    border:1px solid #ccd9d2;
    color:var(--ink);
    background:#fff;
}

.btn-white{
    background:#fff;
    color:var(--green);
}


/* =========================================================
   MENÚ MÓVIL
========================================================= */

.mobile-btn{
    border:0;
    background:transparent;
    font-size:30px;
    color:var(--ink);
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mobile-nav>a{
    color:var(--ink);
    font-weight:700;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    padding:90px 0 70px;
    background:linear-gradient(135deg,#f6fbf7,#eef7fb);
}

.eyebrow{
    display:inline-block;
    color:var(--green);
    font-size:12px;
    font-weight:800;
    letter-spacing:.13em;
    margin-bottom:15px;
}

.hero h1,
.page-hero h1,
.product-hero h1{
    font-size:clamp(40px,5vw,68px);
    line-height:1.04;
    letter-spacing:-.04em;
}

.hero .lead,
.product-hero .lead{
    font-size:20px;
    line-height:1.7;
    max-width:650px;
}

.hero-image{
    position:relative;
    border-radius:32px;
    background:#fff;
    box-shadow:0 30px 70px rgba(24,70,55,.13);
    padding:25px;
}

.hero-image img{
    width:100%;
    border-radius:24px;
}

.float-note{
    position:absolute;
    left:-20px;
    bottom:35px;
    background:#fff;
    border-radius:16px;
    padding:16px 18px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    color:var(--ink);
}

.trust-row{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:30px;
    font-size:14px;
    font-weight:600;
    color:#4a5d70;
}

.trust-row i{
    color:var(--green);
}


/* =========================================================
   SECCIONES
========================================================= */

.section{
    padding:88px 0;
}

.soft{
    background:var(--soft);
}

.section-head{
    max-width:700px;
    margin-bottom:40px;
}

.section h2{
    font-size:clamp(32px,4vw,48px);
    letter-spacing:-.03em;
}


/* =========================================================
   PRODUCTOS
========================================================= */

.product-card{
    height:100%;
    display:grid;
    grid-template-columns:42% 58%;
    background:#f4faf5;
    border:1px solid #e3eee6;
    border-radius:24px;
    overflow:hidden;
    color:inherit;
    transition:.2s;
}

.product-card.aqua{
    background:#f2f8fc;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(25,56,46,.1);
}

.product-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:360px;
}

.product-card>div{
    padding:34px;
}

.product-card span{
    font-size:12px;
    font-weight:800;
    letter-spacing:.12em;
    color:var(--green);
}

.product-card h3{
    font-size:34px;
    margin-top:8px;
}

.product-card b{
    color:var(--green);
}

.product-card.tall{
    grid-template-columns:1fr;
}

.product-card.tall img{
    height:420px;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.feature-grid>div,
.sector-card,
.contact-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:26px;
}

.feature-grid i,
.sector-card i,
.contact-card i{
    font-size:30px;
    color:var(--green);
}

.text-link{
    font-weight:700;
    color:var(--green);
}


/* =========================================================
   CTA
========================================================= */

.cta{
    padding:0 0 80px;
}

.cta-box{
    background:linear-gradient(120deg,#0f6b33,#168642);
    color:#fff;
    border-radius:28px;
    padding:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cta-box h2{
    color:#fff;
    max-width:760px;
    margin:0;
}

.cta-box .eyebrow{
    color:#d7f6df;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero{
    padding:80px 0;
    background:linear-gradient(135deg,#f6fbf7,#eef7fb);
}

.page-hero.compact{
    padding:65px 0;
}

.page-hero p{
    max-width:780px;
    font-size:19px;
    line-height:1.7;
}

.rounded-img{
    width:100%;
    border-radius:24px;
}

.mini-list{
    display:grid;
    gap:12px;
    margin-top:25px;
}

.mini-list i{
    color:var(--green);
    margin-right:8px;
}


/* =========================================================
   PRODUCT HERO
========================================================= */

.product-hero{
    padding:80px 0;
    background:#f7faf8;
}

.product-main-img{
    max-height:540px;
    max-width:100%;
    border-radius:28px;
    box-shadow:0 25px 65px rgba(18,61,102,.12);
}

.feature-line{
    border:1px solid var(--line);
    padding:22px;
    border-radius:16px;
    font-weight:700;
    color:var(--ink);
}

.feature-line i{
    color:var(--green);
    margin-right:10px;
}

.note-box{
    background:#eef8f1;
    border-radius:20px;
    padding:26px;
    display:flex;
    gap:18px;
}

.note-box>i{
    font-size:30px;
    color:var(--green);
}


/* =========================================================
   SECTORES
========================================================= */

.sector-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.sector-card{
    min-height:220px;
}


/* =========================================================
   PASOS
========================================================= */

.steps{
    display:grid;
    gap:16px;
    margin-top:28px;
}

.steps>div{
    display:grid;
    grid-template-columns:55px 1fr;
    column-gap:15px;
    border-top:1px solid var(--line);
    padding-top:20px;
}

.steps b{
    font-size:28px;
    color:#a8c9b3;
}

.steps p{
    grid-column:2;
}


/* =========================================================
   SIDE PANEL
========================================================= */

.side-panel{
    background:#0f6b33;
    color:#fff;
    border-radius:24px;
    padding:36px;
}

.side-panel h3{
    color:#fff;
}

.side-panel>i{
    font-size:40px;
}


/* =========================================================
   RECURSOS
========================================================= */

.resource-list{
    display:grid;
    gap:14px;
}

.resource-item{
    display:grid;
    grid-template-columns:50px 1fr 30px;
    align-items:center;
    border:1px solid var(--line);
    border-radius:16px;
    padding:18px;
    color:inherit;
}

.resource-item>i:first-child{
    font-size:30px;
    color:#d63c3c;
}

.resource-item h4{
    margin:0;
}

.resource-item span{
    font-size:13px;
}


/* =========================================================
   FORMULARIOS
========================================================= */

.form-shell{
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 18px 55px rgba(19,50,77,.07);
    border-radius:24px;
    padding:34px;
    max-width:900px;
    margin:auto;
}

.form-shell label{
    font-weight:700;
    color:var(--ink);
    margin-bottom:8px;
}

.form-control,
.form-select{
    padding:13px 14px;
    border-radius:11px;
    border-color:#dce5e0;
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-card{
    margin-bottom:14px;
}

.narrow{
    max-width:800px;
}


/* =========================================================
   FOOTER KLORKLEEN
========================================================= */

.site-footer{
    background:#0d2940;
    color:#c4d0da;
    padding:72px 0 26px;
}

.site-footer > .container{
    width:92%;
    max-width:1540px;
    margin:0 auto;
}

/* FILA PRINCIPAL - BOOTSTRAP */

.site-footer .footer-row{
    align-items:flex-start;
}

/* MARCA */

.site-footer .footer-logo{
    display:block;
    width:auto;
    height:64px;
    margin-bottom:28px;
    filter:brightness(0) invert(1);
}

.site-footer .footer-description{
    max-width:440px;
    margin:0 0 24px;
    color:#c4d0da;
    font-size:16px;
    line-height:1.65;
}

/* CONTACTO */

.site-footer .footer-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:9px;
}

.site-footer .footer-contact a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d4dde5;
    font-size:15px;
    transition:.2s ease;
}

.site-footer .footer-contact a:hover{
    color:#fff;
}

.site-footer .footer-contact i{
    width:20px;
    color:#fff;
    font-size:18px;
    text-align:center;
}

/* TÍTULOS */

.site-footer h6{
    margin:3px 0 24px;
    color:#fff;
    font-family:Montserrat,sans-serif;
    font-size:14px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/* COLUMNAS */

.site-footer .footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.site-footer .footer-column a{
    display:inline-block;
    margin:0 0 15px;
    color:#c4d0da;
    font-size:15px;
    transition:
        color .2s ease,
        transform .2s ease;
}

.site-footer .footer-column a:hover{
    color:#fff;
    transform:translateX(3px);
}

/* =========================================================
   REDES SOCIALES
========================================================= */

.site-footer .footer-social-icons{
    display:flex !important;
    align-items:center;
    gap:16px !important;
    margin-top:5px !important;
    margin-bottom:34px !important;
}

.site-footer .footer-social-icons .social-instagram,
.site-footer .footer-social-icons .social-facebook,
.site-footer .footer-social-icons .social-youtube{
    width:54px !important;
    height:54px !important;
    min-width:54px !important;

    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    border:0;
    border-radius:50% !important;

    color:#fff !important;
    font-size:23px !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.site-footer .social-instagram{
    background:linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    ) !important;
}

.site-footer .social-facebook{
    background:#1877f2 !important;
}

.site-footer .social-youtube{
    background:#71808d !important;
    cursor:default;
}

.site-footer .footer-social-icons i{
    color:#fff !important;
    font-size:23px !important;
    line-height:1 !important;
}

.site-footer .footer-social-icons a:hover{
    color:#fff !important;
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(0,0,0,.20);
}

/* =========================================================
   BOTÓN COTIZACIÓN
========================================================= */

.site-footer .footer-actions{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.site-footer .footer-quote{
    width:100%;
    max-width:310px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-top:0 !important;

    min-height:66px !important;
    padding:18px 22px;

    border-radius:13px;

    background:linear-gradient(
        135deg,
        #159447,
        #0f7d3b
    );

    color:#fff;

    font-family:Montserrat,sans-serif;
    font-size:15px;
    font-weight:700;

    box-shadow:0 12px 28px rgba(0,0,0,.12);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.site-footer .footer-quote:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(0,0,0,.18);
}

.site-footer .footer-quote i{
    font-size:21px;
}

/* =========================================================
   FOOTER INFERIOR
========================================================= */

.site-footer .footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-top:70px;
    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.20);

    color:#b9c6d0;
    font-size:13px;
}

.site-footer .footer-bottom a{
    color:#c4d0da;
}

.site-footer .footer-bottom a:hover{
    color:#fff;
}

/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

#wa-klorkleen-fixed{
    position:fixed !important;

    right:28px !important;
    bottom:28px !important;

    width:68px !important;
    height:68px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:0 !important;
    margin:0 !important;

    border:0 !important;
    border-radius:50% !important;

    background:#25d366 !important;
    color:#fff !important;

    font-size:32px !important;
    line-height:1 !important;

    z-index:2147483647 !important;

    box-shadow:
        0 12px 30px rgba(0,0,0,.22),
        0 0 0 6px rgba(37,211,102,.10);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

#wa-klorkleen-fixed i{
    color:#fff !important;
    font-size:32px !important;
    line-height:1 !important;
}

#wa-klorkleen-fixed:hover{
    color:#fff !important;
    transform:translateY(-4px) scale(1.04);
    box-shadow:
        0 16px 36px rgba(0,0,0,.26),
        0 0 0 7px rgba(37,211,102,.13);
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:991px){

    .site-footer{
        padding:60px 0 25px;
    }

    .site-footer .footer-actions{
        margin-top:10px;
    }

    .site-footer .footer-bottom{
        margin-top:55px;
    }
}

/* =========================================================
   MÓVIL
========================================================= */

@media(max-width:640px){

    .site-footer{
        padding:55px 0 22px;
    }

    .site-footer > .container{
        width:100%;
        padding-left:24px;
        padding-right:24px;
    }

    .site-footer .footer-logo{
        height:56px;
        margin-bottom:22px;
    }

    .site-footer .footer-description{
        font-size:15px;
    }

    .site-footer h6{
        margin-bottom:17px;
    }

    .site-footer .footer-social-icons{
        margin-bottom:28px !important;
    }

    .site-footer .footer-social-icons .social-instagram,
    .site-footer .footer-social-icons .social-facebook,
    .site-footer .footer-social-icons .social-youtube{
        width:50px !important;
        height:50px !important;
        min-width:50px !important;
    }

    .site-footer .footer-quote{
        max-width:100%;
    }

    .site-footer .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        margin-top:45px;
        padding-top:22px;
    }

    #wa-klorkleen-fixed{
        width:58px !important;
        height:58px !important;

        right:18px !important;
        bottom:18px !important;

        font-size:28px !important;
    }

    #wa-klorkleen-fixed i{
        font-size:28px !important;
    }
    
    
    
}



