/*====================================================
PERSONAS Y SERVICIOS
Landing Corporativa
Versión 1.0
====================================================*/

/*=============================
FUENTES
==============================*/

:root{

    --primary:#0B3C6F;
    --primary-dark:#082A4A;
    --secondary:#19A7E0;
    --accent:#2DD4BF;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --gray:#E8EEF3;

    --text:#1F2937;
    --text-light:#64748B;

    --success:#10B981;

    --shadow-sm:0 8px 20px rgba(0,0,0,.05);
    --shadow:0 18px 40px rgba(0,0,0,.08);
    --shadow-lg:0 30px 60px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

    --container:1280px;

}

/*=============================
RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:white;

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/*=============================
ICONOGRAFÍA SVG
==============================*/

.icon-sprite{

    position:absolute;

    width:0;

    height:0;

    overflow:hidden;

}

.icon-svg{

    width:28px;

    height:28px;

    fill:none;

    stroke:currentColor;

    stroke-width:1.6;

    stroke-linecap:round;

    stroke-linejoin:round;

    display:block;

}

/*=============================
HEADER
==============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

}

header.scrolled{

    background:white;

    box-shadow:var(--shadow-sm);

}

.navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:78px;

}

.menu{

    display:flex;

    gap:38px;

}

.menu li{

    display:flex;

    align-items:center;

}

.menu a{

    color:var(--text);

    font-weight:500;

    transition:.3s;

}

.menu a:hover{

    color:var(--secondary);

}

.btn-header{

    background:var(--primary);

    color:white;

    padding:14px 30px;

    border-radius:40px;

    transition:.3s;

}

.btn-header:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

.menu-mobile{

    display:none;

    font-size:34px;

    cursor:pointer;

}

/*=============================
HERO
==============================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(
        135deg,
        #F8FBFE,
        #FFFFFF
    );

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.tag{

    display:inline-flex;

    align-items:center;

    background:#E8F7FF;

    color:#0284C7;

    padding:10px 20px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-size:60px;

    line-height:1.08;

    color:var(--primary-dark);

    margin-bottom:30px;

}

.hero p{

    color:var(--text-light);

    line-height:1.9;

    font-size:18px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:55px;

}

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:16px 30px;

    margin-bottom:35px;

}

.hero-highlights li{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

    font-size:15px;

    color:var(--text);

}

.hero-highlights .icon-svg{

    width:20px;

    height:20px;

    color:var(--secondary);

    flex-shrink:0;

}

.btn-primary{

    background:var(--primary);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:18px 34px;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:white;

}

.hero-metrics{

    display:flex;

    gap:45px;

}

.hero-metrics h3{

    font-size:42px;

    color:var(--secondary);

}

.hero-metrics span{

    color:var(--text-light);

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    animation:float 6s ease-in-out infinite;

}

/*====================================================
ANIMACIONES
====================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .9s ease both;

}

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*====================================================
SECCIONES
====================================================*/

section{

    padding:120px 0;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    background:#E8F7FF;

    color:#0284C7;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    margin-bottom:24px;

}

.center{

    display:flex;

    margin:auto;

    width:max-content;

}

.section-title{

    font-size:46px;

    text-align:center;

    color:var(--primary-dark);

    margin-bottom:20px;

}

.section-description{

    width:min(700px,90%);

    margin:auto;

    text-align:center;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:70px;

}

/*====================================================
ABOUT
====================================================*/

.about{

    background:white;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:80px;

    align-items:center;

}

.about-image img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about-content h2{

    font-size:46px;

    color:var(--primary);

    margin-bottom:25px;

}

.about-content p{

    color:var(--text-light);

    line-height:2;

    margin-bottom:22px;

}

.about-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;

}

.mini-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.mini-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.mini-card h4{

    color:var(--primary);

    margin-bottom:15px;

}

/*====================================================
¿POR QUÉ ELEGIRNOS?
====================================================*/

.why-us{

    background:var(--light);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.why-card{

    background:white;

    padding:45px;

    border-radius:25px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.why-card:hover .why-icon{

background:#0B3C6F;

transform:translateY(-4px);

}

.why-card:hover .why-icon .icon-svg{

color:white;

}

.why-icon{

width:82px;
height:82px;

margin:auto;
margin-bottom:30px;

display:flex;
align-items:center;
justify-content:center;

border-radius:22px;

background:white;

border:1px solid #E4ECF4;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.35s;

}

.why-icon .icon-svg{

width:34px;

height:34px;

color:#0B3C6F;

transition:.35s;

}

.why-card h3{

    margin-bottom:18px;

    color:var(--primary);

}

.why-card p{

    line-height:1.9;

    color:var(--text-light);

}

/*====================================================
SERVICIOS
====================================================*/

.services{

    background:white;

}

.services-group{

    margin-bottom:70px;

}

.services-group:last-child{

    margin-bottom:0;

}

.services-group-title{

    font-size:20px;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:.5px;

    margin-bottom:32px;

    padding-bottom:16px;

    border-bottom:1px solid #E8EEF3;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.services-grid-4{

    grid-template-columns:repeat(4,1fr);

}

.services-grid-2{

    grid-template-columns:repeat(2,1fr);

    max-width:760px;

    margin:0 auto;

}

.service-card{

    background:white;

    border-radius:22px;

    border:1px solid #E8EEF3;

    padding:50px 42px;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    background:var(--primary);

    color:white;

    box-shadow:var(--shadow-lg);

}

.service-icon{

width:82px;
height:82px;

display:flex;
align-items:center;
justify-content:center;

border-radius:22px;

background:white;

border:1px solid #E4ECF4;

box-shadow:0 10px 30px rgba(0,0,0,.06);

margin-bottom:32px;

transition:.35s;

}

.service-icon .icon-svg{

width:34px;

height:34px;

color:#0B3C6F;

transition:.35s;

}

.service-card:hover .service-icon{

background:white;

transform:scale(1.08);

}

.service-card:hover .service-icon .icon-svg{

color:#19A7E0;

}

.service-card h3{

    margin-bottom:16px;

}

.service-card p{

    color:var(--text-light);

    line-height:1.9;

}

.service-card:hover p{

    color:white;

}

/*====================================================
INDICADORES
====================================================*/

.stats{

    background:

    linear-gradient(

        135deg,

        var(--primary),

        #0A5488

    );

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat{

    text-align:center;

    color:white;

}

.stat h2{

    font-size:56px;

    margin-bottom:12px;

    color:#fff;

}

.stat span{

    color:#D8EAF8;

    font-size:17px;

}

.stat h2 .counter{

    font-size:inherit;

    color:inherit;

}
/*====================================================
SOLUCIONES
====================================================*/

.solutions{

    background:linear-gradient(
        180deg,
        #FFFFFF,
        #F7FAFD
    );

}

.product-block{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-top:100px;

}

.product-block:first-of-type{

    margin-top:70px;

}

.product-block.reverse .product-visual{

    order:2;

}

.product-block.reverse .product-info{

    order:1;

}

/*----- Mockup de producto (placeholder, reemplazable por captura real) -----*/

.mockup{

    border-radius:22px;

    background:white;

    box-shadow:var(--shadow-lg);

    border:1px solid #EEF3F8;

    border-top:5px solid var(--secondary);

    overflow:hidden;

}

.mockup-tribus{

    border-top-color:#16A34A;

}

.mockup-bar{

    display:flex;

    align-items:center;

    gap:8px;

    padding:16px 20px;

    background:#F1F5F9;

}

.mockup-bar span{

    width:11px;

    height:11px;

    border-radius:50%;

    background:#CBD5E1;

}

.mockup-url{

    margin-left:14px;

    padding:4px 16px;

    border-radius:20px;

    background:white;

    color:var(--text-light);

    font-size:12px;

    letter-spacing:.3px;

}

.mockup-body{

    padding:34px;

    display:flex;

    flex-direction:column;

    gap:28px;

}

.mockup-chart{

    display:flex;

    align-items:flex-end;

    gap:14px;

    height:130px;

}

.mockup-chart i{

    flex:1;

    height:var(--h);

    border-radius:8px 8px 0 0;

    background:linear-gradient(180deg,#19A7E0,#0B3C6F);

}

.mockup-donut{

    width:150px;

    height:150px;

    border-radius:50%;

    margin:auto;

    background:conic-gradient(#16A34A 0% 40%,#19A7E0 40% 70%,#E2E8F0 70% 100%);

    -webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 26px),#000 0);

    mask:radial-gradient(farthest-side,transparent calc(100% - 26px),#000 0);

}

.mockup-rows{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.mockup-rows span{

    height:12px;

    border-radius:6px;

    background:#EEF2F6;

}

.mockup-rows span:nth-child(1){width:100%;}
.mockup-rows span:nth-child(2){width:80%;}
.mockup-rows span:nth-child(3){width:60%;}

.product-logo{

    height:56px;

    display:flex;

    align-items:center;

    margin-bottom:24px;

}

.product-logo img{

    max-height:90px;

}

.product-info h3{

    font-size:38px;

    color:var(--primary);

    margin-bottom:18px;

}

.product-info>p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:30px;

}

.product-columns{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:36px;

}

.product-columns h4{

    color:var(--primary-dark);

    font-size:15px;

    margin-bottom:14px;

}

.product-columns ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.product-columns li{

    color:#475569;

    font-weight:500;

    font-size:15px;

}

.product-actions{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

.product-tag{

    display:inline-flex;

    padding:8px 18px;

    border-radius:30px;

    background:#E8F7FF;

    color:#0284C7;

    font-size:12px;

    font-weight:600;

    letter-spacing:.8px;

    margin-bottom:22px;

}

.btn-product{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border-radius:40px;

    background:var(--primary);

    color:white;

    transition:.35s;

}

.btn-product:hover{

    background:var(--secondary);

}

/*====================================================
NUESTRO PROCESO
====================================================*/

.process{

    background:var(--light);

}

.process-grid{

    position:relative;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

    margin-top:70px;

}

.process-grid::before{

    content:"";

    position:absolute;

    top:41px;

    left:8%;

    right:8%;

    height:3px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    opacity:.3;

    z-index:0;

}

.process-step{

    position:relative;

    z-index:1;

    text-align:center;

}

.process-step:not(:last-child)::after{

    content:"";

    position:absolute;

    top:41px;

    right:-23px;

    width:14px;

    height:14px;

    border-top:3px solid var(--secondary);

    border-right:3px solid var(--secondary);

    transform:translateY(-50%) rotate(45deg);

    z-index:2;

}

.process-icon{

    width:82px;

    height:82px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:white;

    border:1px solid #E4ECF4;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    color:var(--primary);

}

.process-icon .icon-svg{

    width:32px;

    height:32px;

}

.process-number{

    display:block;

    font-size:13px;

    font-weight:700;

    color:var(--secondary);

    letter-spacing:1px;

    margin-bottom:10px;

}

.process-step h3{

    font-size:19px;

    color:var(--primary-dark);

    margin-bottom:10px;

}

.process-step p{

    color:var(--text-light);

    font-size:14.5px;

    line-height:1.7;

}

/*====================================================
EMPRESAS QUE CONFÍAN EN NOSOTROS
====================================================*/

.clients{

    background:white;

}

.clients-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

    margin-top:50px;

}

.client-logo{

    display:flex;

    align-items:center;

    justify-content:center;

    height:90px;

    background:var(--light);

    border:1px solid #E8EEF3;

    border-radius:16px;

    color:var(--text-light);

    font-weight:600;

    text-align:center;

    filter:grayscale(1);

    opacity:.7;

    transition:.3s;

}

.client-logo:hover{

    filter:grayscale(0);

    opacity:1;

    box-shadow:var(--shadow-sm);

    transform:translateY(-4px);

}

/*====================================================
CTA
====================================================*/

.cta{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        var(--primary),
        #0F5F97
    );

    text-align:center;

    color:white;

}

.cta::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-250px;

    top:-280px;

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta h2{

    font-size:54px;

    margin-bottom:25px;

}

.cta p{

    width:min(760px,90%);

    margin:auto;

    line-height:2;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

}

.cta .btn-primary{

    background:white;

    color:var(--primary);

}

.cta .btn-secondary{

    border:2px solid white;

    color:white;

}

.cta .btn-secondary:hover{

    background:white;

    color:var(--primary);

}

/*====================================================
POR QUÉ SIGUEN CON NOSOTROS
====================================================*/

.reasons{

    background:var(--primary-dark);

    color:white;

}

.reasons-title{

    text-align:center;

    font-size:32px;

    max-width:820px;

    margin:0 auto 60px;

}

.reasons-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px 45px;

}

.reason-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.reason-icon{

    width:54px;

    height:54px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--secondary);

    flex-shrink:0;

}

.reason-item span{

    font-weight:500;

    font-size:16px;

    color:#E4EEF5;

}

/*====================================================
CONTACTO
====================================================*/

.contact{

    background:white;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

}

.contact-info h2{

    font-size:46px;

    color:var(--primary);

    margin-bottom:25px;

}

.contact-info>p{

    color:var(--text-light);

    line-height:2;

    margin-bottom:40px;

}

.contact-card{

    display:flex;

    gap:20px;

    margin-bottom:28px;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#E8F7FF;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#0284C7;

    flex-shrink:0;

}

.contact-icon .icon-svg{

    width:26px;

    height:26px;

}

.contact-form{

    background:white;

    padding:50px;

    border-radius:28px;

    box-shadow:var(--shadow);

}

.input-group{

    margin-bottom:24px;

}

.input-group input,

.input-group textarea{

    width:100%;

    padding:18px 22px;

    border-radius:14px;

    border:1px solid #D9E3EB;

    font-family:Poppins;

    transition:.3s;

}

.input-group input:focus,

.input-group textarea:focus{

    outline:none;

    border-color:var(--secondary);

    box-shadow:0 0 0 5px rgba(25,167,224,.10);

}

.full{

    width:100%;

    border:none;

    cursor:pointer;

}

/*====================================================
FOOTER
====================================================*/

footer{

    background:#081F35;

    color:white;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-logo{

    height:90px;

    margin-bottom:25px;

}

footer p{

    color:#C8D4DF;

    line-height:2;

}

footer h4{

    margin-bottom:25px;

    font-size:20px;

}

footer ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

footer a{

    color:#C8D4DF;

    transition:.35s;

}

footer a:hover{

    color:white;

    padding-left:8px;

}

.socials{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    padding:30px;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:10px 30px;

    text-align:center;

    color:#9CB1C4;

}

.legal-links{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:10px 24px;

}

.legal-links a{

    color:#9CB1C4;

    font-size:14px;

    transition:.3s;

}

.legal-links a:hover{

    color:white;

}

/*====================================================
BOTÓN WHATSAPP
====================================================*/

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    z-index:999;

    box-shadow:0 18px 40px rgba(0,0,0,.25);

    transition:.35s;

}

.whatsapp .icon-svg{

    width:32px;

    height:32px;

    stroke-width:1.4;

    fill:currentColor;

    stroke:none;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*====================================================
BOTÓN SUBIR
====================================================*/

#topButton{

    position:fixed;

    display:flex;

    align-items:center;

    justify-content:center;

    right:30px;

    bottom:115px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#topButton.show{

    opacity:1;

    visibility:visible;

}

#topButton .icon-svg{

    width:22px;

    height:22px;

    margin:auto;

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1200px){

.hero-grid,
.about-grid,
.contact-grid,
.product-block{

grid-template-columns:1fr;

gap:50px;

}

.product-block .product-visual{

order:-1;

}

.hero{

padding-top:150px;

}

.hero-image{

order:-1;

}

.hero-image img{

width:80%;

margin:auto;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.menu{

position:fixed;

top:90px;

right:-100%;

width:320px;

height:calc(100vh - 90px);

background:white;

display:flex;

flex-direction:column;

padding:40px;

gap:25px;

box-shadow:-10px 0 30px rgba(0,0,0,.08);

transition:.35s;

}

.menu.active{

right:0;

}

.menu-mobile{

display:block;

}

.btn-header{

display:none;

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(3,1fr);

gap:45px;

}

.process-grid::before{

display:none;

}

.process-step:not(:last-child)::after{

display:none;

}

.clients-grid{

grid-template-columns:repeat(3,1fr);

}

.reasons-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

section{

padding:90px 0;

}

.hero h1{

font-size:38px;

}

.section-title{

font-size:34px;

}

.about-content h2,
.contact-info h2,
.cta h2{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

.why-grid,
.services-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:1fr;

gap:35px;

}

.process-step:not(:last-child)::after{

display:block;

top:auto;

right:auto;

bottom:-24px;

left:50%;

transform:translateX(-50%) rotate(135deg);

}

.clients-grid{

grid-template-columns:repeat(2,1fr);

}

.reasons-grid{

grid-template-columns:1fr;

}

.reasons-title{

font-size:26px;

}

.about-cards{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

gap:45px;

}

.contact-form{

padding:35px;

}

}

@media(max-width:480px){

.container{

width:92%;

}

.hero{

padding-top:130px;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.hero-metrics{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:15px;

text-align:center;

}

.stats-grid{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons a{

width:100%;

}

.service-card,
.why-card,
.contact-form,
.mini-card{

padding:28px;

}

.product-columns{

grid-template-columns:1fr;

gap:22px;

}

.clients-grid{

grid-template-columns:repeat(2,1fr);

}

.whatsapp{

width:60px;

height:60px;

right:18px;

bottom:18px;

}

#topButton{

right:18px;

bottom:92px;

}

}

/*====================================================
UTILIDADES
====================================================*/

.text-center{

text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

/*====================================================
FIN DEL ARCHIVO
====================================================*/