/* =========================
   FOOTER
========================= */

.site-footer{
    position:relative;

    padding:5rem 0 2rem;

    background:
        linear-gradient(
            180deg,
            #101010 0%,
            #171717 100%
        );

    overflow:hidden;
}

.site-footer::before{
    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:460px;
    height:460px;

    border-radius:50%;

    background:rgba(103,184,109,.10);

    filter:blur(38px);
    opacity:.7;

    pointer-events:none;
}

.footer-top{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.2fr .8fr .8fr 1fr;

    align-items:start;

    gap:4rem;

    padding-bottom:4rem;
}

.footer-logo{
    width:92px;
    height:auto;

    margin-bottom:1.5rem;
}

.footer-brand-text{
    max-width:320px;

    margin-bottom:2rem;

    font-size:.98rem;
    line-height:1.9;

    color:rgba(255,255,255,.72);
}

.footer-social{
    display:flex;
    align-items:center;

    gap:.9rem;
}

.footer-social a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    border-radius:50%;

    text-decoration:none;

    background:rgba(255,255,255,.06);

    transition:
        transform .25s ease,
        background .25s ease;
}

.footer-social a:hover{
    background:#67b86d;

    transform:translateY(-2px);
}

.footer-social-icon{
    width:22px;
    height:22px;

    display:block;
}

.footer-column h3,
.footer-cta h3{
    margin-bottom:1.5rem;

    font-size:1.05rem;
    font-weight:700;

    color:#ffffff;
}

.footer-links{
    list-style:none;

    display:flex;
    flex-direction:column;

    gap:1rem;
}

.footer-links a{
    text-decoration:none;

    font-size:.96rem;
    line-height:1.6;

    color:rgba(255,255,255,.72);

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-links a:hover{
    color:#67b86d;

    transform:translateX(2px);
}

.footer-cta-label{
    display:inline-flex;

    margin-bottom:1rem;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:.16em;

    color:#67b86d;
}

.footer-cta p{
    margin-top:1rem;
    margin-bottom:1.8rem;

    font-size:.96rem;
    line-height:1.8;

    color:rgba(255,255,255,.72);
}

.footer-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:52px;
    padding-inline:2rem;

    border-radius:999px;

    text-decoration:none;

    background:#2f7d36;

    font-size:.92rem;
    font-weight:600;

    color:#ffffff;

    transition:
        transform .25s ease,
        background .25s ease;
}

.footer-button:hover{
background:#286d2f;

    transform:translateY(-2px);
}

.footer-contact{
    margin-top:2.2rem;

    display:flex;
    flex-direction:column;

    gap:.45rem;
}

.footer-contact span{
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;

    color:#67b86d;
}

.footer-contact a{
    font-size:.98rem;
    line-height:1.7;

    color:#ffffff;

    text-decoration:none;

    transition:color .25s ease;
}

.footer-contact a:hover{
    color:#67b86d;
}

.footer-divider{
    width:100%;
    height:1px;

    margin-bottom:2rem;

    background:rgba(255,255,255,.08);
}

.footer-bottom{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:2rem;
}

.footer-copy{
    font-size:.9rem;

    color:rgba(255,255,255,.52);
}

.footer-bottom-links{
    display:flex;
    align-items:center;

    gap:1.5rem;
}

.footer-bottom-links a{
    text-decoration:none;

    font-size:.9rem;

    color:rgba(255,255,255,.52);

    transition:color .25s ease;
}

.footer-bottom-links a:hover{
    color:#67b86d;
}

/* =========================
   PROMO SECTION
========================= */

.promo-section{
    padding:4.5rem 0 3.5rem;

    background:#ffffff;
}

.promo-content{
    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;
}

.section-tag{
    position:relative;

    display:inline-block;

    margin-bottom:1.2rem;

    font-size:.95rem;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    color:#111111;
}

.section-tag::after{
    content:"";

    display:block;

    width:70px;
    height:2px;

    margin:1rem auto 0;

    background:#69b96e;
}

.promo-title{
    max-width:900px;

    margin:0 0 1rem;

    font-size:clamp(2.2rem,3vw,3.5rem);
    font-weight:700;
    line-height:1.08;
    letter-spacing:-.03em;

    color:#111111;
}

.promo-description{
    margin-bottom:1.8rem;

    font-size:1.2rem;
    font-weight:500;
    line-height:1.5;

    color:#333333;
}

.primary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:58px;
    padding-inline:2.6rem;

    border-radius:999px;

    background:#2f7d36;
    color:#ffffff;

    font-size:1rem;
    font-weight:600;

    text-decoration:none;

    transition:
        transform .25s ease,
        background .25s ease;
}

.primary-button:hover{
    background:#286d2f;

    transform:translateY(-2px);
}

/* =========================
   TRUST SECTION
========================= */

.trust-section{
    padding:4.5rem 0;

    background:#ffffff;
}

.trust-header{
    max-width:1100px;

    margin:0 auto 3rem;

    text-align:center;
}

.trust-title{
    margin-bottom:1.2rem;

    font-size:2.4rem;
    font-weight:700;
    line-height:1.1;
    letter-spacing:-.04em;

    color:#111111;
}

.trust-divider{
    width:110px;
    height:3px;

    margin:0 auto 2rem;

    background:#67b86d;
}

.trust-description{
    max-width:1200px;

    margin:0 auto;

    font-size:1.02rem;
    line-height:1.7;
    font-weight:500;

    color:#222222;
}

.trust-grid{
    display:grid;
    grid-template-columns:1fr 420px 1fr;

    align-items:center;

    gap:2.5rem;
}

.trust-column,
.trust-side{
    display:flex;
    flex-direction:column;

    gap:5.5rem;
}

.trust-item{
    text-align:center;

    padding-block:1.4rem;
}

.trust-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 1.6rem;

    line-height:1;

    color:#67b86d;
}

.trust-icon img{
    width:44px;
    height:44px;

    display:block;
}

.trust-item h3{
    margin-bottom:1rem;

    font-size:1.05rem;
    font-weight:700;
    line-height:1.4;

    color:#111111;
}

.trust-item p{
    font-size:.95rem;
    line-height:1.7;

    color:#333333;
}

.trust-image-wrap{
    position:relative;

    width:100%;
    aspect-ratio:1 / 1;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #f3f3f3;

    contain:paint;
}

.trust-image-wrap picture{
    width:100%;
    height:100%;

    display:block;
}

.trust-image{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section{
    position:relative;

    padding:7rem 0;

    background-image:url("/new_website/images/process-bg.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;

    contain:paint;
}

.process-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.38);
}

.process-content{
    position:relative;
    z-index:2;
}

.process-header{
    text-align:center;

    margin-bottom:5rem;
}

.process-title{
    margin-bottom:1.4rem;

    font-size:3rem;
    font-weight:700;
    line-height:1.1;

    color:#ffffff;
}

.process-divider{
    width:110px;
    height:3px;

    margin:0 auto 2rem;

    background:#ffffff;
}

.process-subtitle{
    font-size:1.5rem;
    font-weight:600;

    color:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:4rem;
}

.process-step{
    text-align:center;
}

.process-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:1.5rem;

    color:#ffffff;
}

.process-icon-svg{
    width:64px;
    height:64px;

    display:block;
}

.process-step h3{
    font-size:1.4rem;
    font-weight:600;
    line-height:1.5;

    color:#ffffff;
}

/* =========================
   SECURITY SECTION
========================= */

.security-section{
    padding:5rem 0 6rem;

    background:#f7f7f7;
}

.security-header{
    text-align:center;

    margin-bottom:4rem;
}

.security-title{
    font-size:2.5rem;
    font-weight:700;
    line-height:1.15;
    letter-spacing:-.03em;

    text-transform:uppercase;

    color:#111111;
}

.security-divider{
    width:110px;
    height:3px;

    margin:1.8rem auto 0;

    background:#67b86d;
}

.security-slider{
    position:relative;
}

.security-arrow{
    position:absolute;
    top:50%;

    transform:translateY(-50%);

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.96);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:5;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    transition:
        background .25s ease,
        transform .25s ease;
}

.security-arrow:hover{
    background:#67b86d;

    transform:translateY(-50%) scale(1.05);
}

.security-arrow-icon{
    width:28px;
    height:28px;

    display:block;
}

.security-arrow-prev{
    left:-26px;
}

.security-arrow-next{
    right:-26px;
}

.security-slide{
    display:none;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;
}

.security-slide.active{
    display:grid;
}

.security-card{
    background:#ffffff;

    overflow:hidden;

    contain:paint;
}

.security-image{
    width:100%;
    height:280px;

    object-fit:cover;

    display:block;
}

.security-card-body{
    padding:2.3rem 2rem 2.6rem;

    text-align:center;
}

.security-card-body h3{
    min-height:58px;

    margin-bottom:1.4rem;

    font-size:1.05rem;
    font-weight:700;
    line-height:1.5;

    text-transform:uppercase;

    color:#111111;
}

.security-card-divider{
    width:42px;
    height:2px;

    margin:0 auto 1.6rem;

    background:#67b86d;
}

.security-card-body p{
    font-size:1rem;
    line-height:1.9;

    color:#444444;
}

.security-dots{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:.7rem;

    margin-top:2.4rem;
}

.security-dot{
    width:34px;
    height:34px;

    padding:12px;

    border:none;
    border-radius:50%;

    background:transparent;

    cursor:pointer;

    transition:transform .25s ease;
}

.security-dot::before{
    content:"";

    display:block;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#cfcfcf;

    transition:background .25s ease;
}

.security-dot.active{
    transform:scale(1.1);
}

.security-dot.active::before{
    background:#67b86d;
}

/* =========================
   SERVICE AREAS
========================= */

.service-areas-section{
    position:relative;

    padding:6rem 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf7 100%
        );

    overflow:hidden;
}

.service-areas-section::before{
    content:"";

    position:absolute;

    top:-200px;
    right:-200px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(103,184,109,.08);

    filter:blur(30px);
    opacity:.65;

    pointer-events:none;
}

.service-areas-header{
    position:relative;
    z-index:2;

    max-width:900px;

    margin:0 auto 4.5rem;

    text-align:center;
}

.service-areas-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-bottom:1.2rem;
    padding:.55rem 1rem;

    border-radius:999px;

    background:rgba(103,184,109,.12);

    font-size:.82rem;
    font-weight:700;
    letter-spacing:.15em;

    color:#67b86d;
}

.service-areas-title{
    margin-bottom:1.2rem;

    font-size:clamp(2.3rem,4vw,4rem);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-.04em;

    color:#111111;
}

.service-areas-divider{
    width:120px;
    height:4px;

    margin:0 auto 2rem;

    border-radius:999px;

    background:#67b86d;
}

.service-areas-description{
    font-size:1.08rem;
    line-height:1.8;
    font-weight:500;

    color:#444444;
}

.service-areas-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:1.5rem;
}

.service-area-card{
    position:relative;

    display:flex;
    align-items:center;

    gap:1rem;

    padding:1.4rem;

    border-radius:22px;

    text-decoration:none;

    background:rgba(255,255,255,.88);

    border:1px solid rgba(103,184,109,.08);

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.service-area-card:hover{
    transform:translateY(-4px);

    border-color:rgba(103,184,109,.22);

    box-shadow:
        0 12px 28px rgba(0,0,0,.05);
}

.service-area-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    border-radius:16px;

    background:rgba(103,184,109,.12);

    flex-shrink:0;
}

.service-area-icon-svg{
    width:24px;
    height:24px;

    display:block;
}

.service-area-content h3{
    margin-bottom:.35rem;

    font-size:1.08rem;
    font-weight:700;
    line-height:1.3;

    color:#111111;
}

.service-area-content p{
    font-size:.92rem;
    line-height:1.6;

    color:#666666;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position:fixed;

    right:24px;
    bottom:24px;

    z-index:9999;

    display:flex;
    align-items:center;

    gap:.85rem;

    height:62px;

    padding:0 1.5rem 0 .85rem;

    border-radius:999px;

    text-decoration:none;

    background:rgba(16,16,16,.94);

    box-shadow:
        0 12px 34px rgba(0,0,0,.18);

    transition:
        transform .25s ease,
        background .25s ease;
}

.whatsapp-float:hover{
    transform:translateY(-3px);

    background:rgba(22,22,22,.98);
}

.whatsapp-float-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    border-radius:50%;

    background:#25D366;

    flex-shrink:0;
}

.whatsapp-float-icon-svg{
    width:26px;
    height:26px;

    display:block;
}

.whatsapp-float span{
    font-size:.92rem;
    font-weight:700;
    letter-spacing:.02em;

    white-space:nowrap;

    color:#ffffff;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .trust-grid{
        grid-template-columns:1fr;

        gap:3rem;
    }

    .trust-column,
    .trust-side{
        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap;

        gap:2rem;
    }

    .trust-item{
        max-width:280px;
    }

    .trust-image-wrap{
        max-width:420px;

        margin:0 auto;
    }

}

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:repeat(2,1fr);

        gap:3rem;
    }

    .security-slide{
        grid-template-columns:1fr;

        max-width:700px;

        margin:0 auto;
    }

    .service-areas-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .process-grid{
        grid-template-columns:1fr;

        gap:3rem;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .site-footer{
        padding:4rem 0 2rem;
    }

    .site-footer::before{
        filter:blur(22px);
        opacity:.45;
    }

    .footer-top{
        grid-template-columns:1fr;

        gap:3rem;

        padding-bottom:3rem;
    }

    .footer-brand,
    .footer-column,
    .footer-cta{
        text-align:center;
    }

    .footer-logo{
        margin-inline:auto;
    }

    .footer-brand-text{
        max-width:100%;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-links{
        align-items:center;
    }

    .footer-button{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;
    }

    .promo-section{
        padding:3rem 0 2.5rem;
    }

    .section-tag{
        font-size:.82rem;
    }

    .promo-title{
        max-width:320px;

        font-size:2rem;
        line-height:1.1;
    }

    .promo-description{
        max-width:300px;

        font-size:1rem;
        line-height:1.45;
    }

    .primary-button{
        height:52px;
        padding-inline:2rem;
    }

    .trust-section{
        padding:3.5rem 0;
    }

    .trust-header{
        margin-bottom:2.5rem;
    }

    .trust-title{
        font-size:2rem;
    }

    .trust-divider{
        margin:0 auto 1.5rem;
    }

    .trust-description{
        font-size:.98rem;
        line-height:1.7;
    }

    .trust-grid{
        gap:2.5rem;
    }

    .trust-column,
    .trust-side{
        flex-direction:column;

        gap:2rem;
    }

    .trust-icon img{
        width:38px;
        height:38px;
    }

    .trust-item h3{
        font-size:1rem;
    }

    .trust-item p{
        font-size:.92rem;
    }

    .trust-image-wrap{
        width:min(88vw,320px);

        border-width:5px;
    }

    .process-section{
        padding:5rem 0;
    }

    .process-title{
        font-size:2.1rem;
    }

    .process-subtitle{
        font-size:1.1rem;
    }

    .process-icon-svg{
        width:48px;
        height:48px;
    }

    .process-step h3{
        font-size:1.05rem;
    }

    .security-section{
        padding:4rem 0;
    }

    .security-header{
        margin-bottom:2.8rem;
    }

    .security-title{
        font-size:1.8rem;
    }

    .security-arrow{
        width:42px;
        height:42px;
    }

    .security-arrow-icon{
        width:22px;
        height:22px;
    }

    .security-arrow-prev{
        left:-10px;
    }

    .security-arrow-next{
        right:-10px;
    }

    .security-image{
        height:230px;
    }

    .security-card-body{
        padding:2rem 1.4rem 2.2rem;
    }

    .security-card-body h3{
        min-height:auto;

        font-size:1rem;
    }

    .security-card-body p{
        font-size:.95rem;
        line-height:1.8;
    }

    .service-areas-section{
        padding:4.5rem 0;
    }

    .service-areas-section::before{
        filter:blur(18px);
        opacity:.45;
    }

    .service-areas-header{
        margin-bottom:3rem;
    }

    .service-areas-title{
        font-size:2.2rem;
    }

    .service-areas-description{
        font-size:1rem;
    }

    .service-areas-grid{
        grid-template-columns:1fr;
    }

    .service-area-card{
        padding:1.2rem;
        background:#ffffff;
    }

    .whatsapp-float{
        right:16px;
        bottom:16px;
        height:58px;
        padding:0 1.2rem 0 .75rem;
    }

    .whatsapp-float-icon{
        width:40px;
        height:40px;
    }

    .whatsapp-float-icon-svg{
        width:24px;
        height:24px;
    }

    .whatsapp-float span{
        font-size:.85rem;
    }

    .footer-social a,
    .footer-links a,
    .footer-button,
    .primary-button,
    .security-arrow,
    .security-dot,
    .service-area-card,
    .whatsapp-float{
        transition:none;
    }

.service-area-card:hover,
.whatsapp-float:hover,
.footer-social a:hover,
.footer-button:hover,
.primary-button:hover{
    transform:none;
}

.security-dot{
    min-width:34px;
    min-height:34px;
}

}

@media(max-width:768px) and (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        transition:none !important;
        animation:none !important;
    }

}

/* =========================
   HEADER NON-CRITICAL STATES
========================= */

.mobile-close-arrow{
    position:sticky;
    top:0;
    width:100%;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    background:#f7f7f7;
    color:#666;
    font-size:1.9rem;
    font-weight:300;
    cursor:pointer;
    border-bottom:1px solid rgba(0,0,0,.06);
    z-index:2;
}

.mobile-nav{
    width:100%;
}

.mobile-nav a{
    display:flex;
    align-items:center;
    height:44px;
    padding-inline:1.3rem;
    border-bottom:1px solid rgba(0,0,0,.06);
    color:#222;
    font-size:.9rem;
    font-weight:400;
    transition:
        background .2s ease,
        color .2s ease;
}

.mobile-nav a:hover{
    background:#5eb764;
    color:#fff;
}

.mobile-nav a:first-child{
    border-top:1px solid rgba(0,0,0,.06);
}

.site-header{
    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.site-header::before{
    transition:opacity .35s ease;
}

.navbar{
    transition:
        padding .35s ease,
        background .35s ease;
}

.logo-center{
    transition:transform .35s ease;
}

.logo-center img{
    transition:
        width .35s ease,
        filter .35s ease;
}

.logo-center span{
    transition:
        color .35s ease,
        text-shadow .35s ease;
}

.mobile-toggle span{
    transition:
        background .35s ease,
        box-shadow .35s ease;
}

.site-header.scrolled{
    position:fixed;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.site-header.scrolled::before{
    opacity:0;
}

.site-header.scrolled .navbar{
    padding:1rem 0;
}

.site-header.scrolled .nav-group a,
.site-header.scrolled .dropdown-toggle{
    color:#111;
    text-shadow:none;
}

.site-header.scrolled .nav-group a::after,
.site-header.scrolled .dropdown-toggle::after{
    background:#111;
}

.site-header.scrolled .logo-center span{
    color:#111;
    text-shadow:none;
}

.site-header.scrolled .logo-center img{
    width:64px;
    filter:none;
}

.site-header.scrolled .mobile-toggle span{
    background:#111;
    box-shadow:none;
}

.internal-page .site-header{
    position:sticky;
    top:0;
    background:#fff;
    box-shadow:0 4px 24px rgba(0,0,0,.04);
}

.internal-page .site-header::before{
    display:none;
}

.internal-page .navbar{
    padding:1rem 0;
}

.internal-page .nav-group a,
.internal-page .dropdown-toggle{
    color:#111;
    text-shadow:none;
}

.internal-page .nav-group a::after,
.internal-page .dropdown-toggle::after{
    background:#111;
}

.internal-page .logo-center span{
    color:#111;
    text-shadow:none;
}

.internal-page .logo-center img{
    width:64px;
    filter:none;
}

.internal-page .mobile-toggle span{
    background:#111;
    box-shadow:none;
}

@media(max-width:768px){

    .site-header.scrolled .logo-center img,
    .internal-page .logo-center img{
        width:58px;
    }

}