/* ==================================================
   IMPULSAWEB — ESTILO ORIENTADO A EMPRENDEDORES
   ================================================== */

:root{
    --white:#fff;
    --black:#111;
    --dark:#171717;
    --light:#f7f7f5;
    --light-2:#fbfbfa;
    --gray:#666;
    --gray-light:#999;
    --orange:#ff6b00;
    --orange-hover:#ff8533;
    --orange-soft:#fff3e9;
    --border:#e9e9e7;
    --green:#1f9d67;
    --radius:24px;
    --transition:.35s ease;
    --shadow-sm:0 10px 30px rgba(0,0,0,.05);
    --shadow-md:0 20px 50px rgba(0,0,0,.08);
    --shadow-lg:0 35px 90px rgba(0,0,0,.12);
    --container:1280px;
}

*{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    font-family:"Manrope",sans-serif;
    background:var(--white);
    color:var(--black);
    overflow-x:hidden;
    line-height:1.6;
}

body,button,input,textarea,select{font-family:"Manrope",sans-serif}

img{display:block;width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{border:0;background:none;cursor:pointer}
input,textarea,select{outline:none}

.container{
    width:min(92%,var(--container));
    margin:auto;
}

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 65px;
}

.section-title > span{
    color:var(--orange);
    font-size:13px;
    letter-spacing:3px;
    font-weight:800;
}

.section-title h2{
    margin-top:18px;
    font-size:58px;
    line-height:1.05;
    letter-spacing:-2px;
    font-weight:800;
}

.section-title p{
    margin:22px auto 0;
    max-width:690px;
    color:var(--gray);
    font-size:18px;
}

/* BOTONES */
.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:17px 28px;
    border-radius:999px;
    font-weight:800;
    transition:var(--transition);
}

.btn-primary{
    background:var(--orange);
    color:#fff;
    box-shadow:0 12px 35px rgba(255,107,0,.2);
}

.btn-primary:hover{
    background:var(--black);
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid var(--border);
    background:#fff;
}

.btn-secondary:hover{
    border-color:var(--orange);
    color:var(--orange);
    transform:translateY(-3px);
}

/* HEADER */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;
}

header.active{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    box-shadow:var(--shadow-sm);
}

header .container{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:30px;
    font-weight:800;
    letter-spacing:-1px;
}

.logo span{color:var(--orange)}

nav ul{
    display:flex;
    gap:34px;
}

nav a{
    font-weight:700;
    font-size:15px;
    transition:.3s;
}

nav a:hover{color:var(--orange)}

.menu-toggle{
    display:none;
    font-size:28px;
    color:var(--black);
}

/* HERO */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:135px 0 80px;
    background:
        radial-gradient(circle at 80% 35%,rgba(255,107,0,.08),transparent 30%),
        linear-gradient(#fff,#fff);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    align-items:center;
    gap:70px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:9px 16px;
    border-radius:999px;
    background:var(--orange-soft);
    color:var(--orange);
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:25px;
}

.hero h1{
    max-width:850px;
    font-size:76px;
    line-height:.99;
    letter-spacing:-4px;
    font-weight:800;
    margin-bottom:28px;
}

.hero h1 span{color:var(--orange)}

#changing-text{
    display:inline;
    color:var(--orange);
}

.hero p{
    max-width:650px;
    font-size:20px;
    color:var(--gray);
    margin-bottom:34px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.hero-note{
    display:flex;
    align-items:flex-start;
    gap:12px;
    max-width:630px;
    color:#555;
    font-size:14px;
}

.hero-note i{
    color:var(--orange);
    font-size:18px;
    margin-top:3px;
}

.hero-note strong{color:var(--black)}

/* HERO VISUAL */
.hero-image{
    position:relative;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.growth-card{
    width:430px;
    height:390px;
    padding:32px;
    border-radius:35px;
    background:#111;
    color:#fff;
    box-shadow:var(--shadow-lg);
    transform:rotate(3deg);
    position:relative;
    z-index:2;
}

.growth-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#aaa;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.growth-card-top i{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,107,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--orange);
    font-size:20px;
}

.growth-number{
    margin-top:70px;
    font-size:52px;
    font-weight:800;
    letter-spacing:-2px;
}

.growth-chart{
    height:100px;
    margin-top:30px;
    display:flex;
    align-items:flex-end;
    gap:12px;
}

.growth-chart span{
    flex:1;
    border-radius:10px 10px 0 0;
    background:linear-gradient(to top,var(--orange),#ffb477);
}

.growth-chart span:nth-child(1){height:25%}
.growth-chart span:nth-child(2){height:37%}
.growth-chart span:nth-child(3){height:31%}
.growth-chart span:nth-child(4){height:52%}
.growth-chart span:nth-child(5){height:65%}
.growth-chart span:nth-child(6){height:79%}
.growth-chart span:nth-child(7){height:100%}

.floating-card{
    position:absolute;
    z-index:4;
    display:flex;
    align-items:center;
    gap:13px;
    padding:17px 20px;
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow-md);
    border:1px solid var(--border);
}

.floating-card i{
    width:42px;
    height:42px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--orange-soft);
    color:var(--orange);
    font-size:19px;
}

.floating-card strong,
.floating-card small{
    display:block;
}

.floating-card strong{font-size:14px}
.floating-card small{color:var(--gray);font-size:12px;margin-top:2px}

.card-web{left:5px;top:90px}
.card-google{right:0;bottom:95px}

.hero-orbit{
    position:absolute;
    border:1px dashed rgba(255,107,0,.22);
    border-radius:50%;
}

.orbit-one{width:500px;height:500px}
.orbit-two{width:620px;height:620px}

/* FEATURES */
.features{
    overflow:hidden;
    padding:19px 0;
    background:#111;
}

.features-track{
    display:flex;
    width:max-content;
    gap:55px;
    animation:scrollFeatures 30s linear infinite;
}

.feature{
    display:flex;
    align-items:center;
    gap:11px;
    white-space:nowrap;
    font-size:16px;
    font-weight:700;
    color:#fff;
}

.feature i{color:var(--orange);font-size:20px}

@keyframes scrollFeatures{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}

/* SERVICIOS */
.services{padding:120px 0}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:34px;
    transition:.35s;
    box-shadow:var(--shadow-sm);
    position:relative;
}

.service-card:hover{
    transform:translateY(-9px);
    border-color:var(--orange);
    box-shadow:var(--shadow-md);
}

.service-card-featured{
    background:#111;
    color:#fff;
    border-color:#111;
}

.service-card-featured p{color:#bbb}

.service-icon{
    width:62px;
    height:62px;
    border-radius:17px;
    background:var(--orange-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.service-icon i{
    font-size:27px;
    color:var(--orange);
}

.service-tag{
    display:block;
    color:var(--orange);
    font-size:10px;
    font-weight:800;
    letter-spacing:1.7px;
    margin-bottom:9px;
}

.service-card h3{
    font-size:26px;
    line-height:1.15;
    letter-spacing:-.7px;
    margin-bottom:14px;
}

.service-card p{
    color:var(--gray);
    font-size:16px;
    margin-bottom:24px;
}

.service-card > a{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:var(--orange);
    font-weight:800;
    font-size:14px;
}

.service-card > a:hover{gap:14px}

/* MODELO DE PRESUPUESTO */
.budget-model{
    padding:120px 0;
    background:var(--light);
}

.budget-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:90px;
    align-items:center;
}

.budget-content h2{
    font-size:57px;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.budget-content > p{
    color:var(--gray);
    font-size:18px;
    margin-bottom:18px;
}

.budget-highlight{
    margin-top:30px;
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
}

.budget-highlight > i{
    color:var(--orange);
    font-size:26px;
    margin-top:3px;
}

.budget-highlight strong,
.budget-highlight span{display:block}

.budget-highlight strong{font-size:16px}
.budget-highlight span{color:var(--gray);font-size:14px;margin-top:4px}

.budget-steps{
    display:grid;
    gap:15px;
}

.budget-step{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:17px;
    align-items:start;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
    transition:.3s;
}

.budget-step:hover{
    transform:translateX(7px);
    border-color:var(--orange);
}

.budget-step > span{
    font-size:14px;
    font-weight:800;
    color:var(--orange);
}

.budget-step > div{
    display:grid;
    grid-template-columns:42px 1fr;
    column-gap:13px;
}

.budget-step i{
    grid-row:span 2;
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--orange-soft);
    color:var(--orange);
}

.budget-step h3{
    font-size:18px;
    margin-bottom:3px;
}

.budget-step p{
    color:var(--gray);
    font-size:14px;
}

/* PROCESO */
.process{padding:120px 0}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.step{
    background:#fff;
    border:1px solid var(--border);
    border-radius:27px;
    padding:32px;
    transition:.35s;
}

.step:hover{
    transform:translateY(-8px);
    border-color:var(--orange);
    box-shadow:var(--shadow-md);
}

.step strong{
    display:block;
    font-size:58px;
    line-height:1;
    color:rgba(255,107,0,.18);
    margin-bottom:25px;
}

.step > i{
    color:var(--orange);
    font-size:24px;
    margin-bottom:17px;
}

.step h3{
    font-size:23px;
    margin-bottom:10px;
}

.step p{
    color:var(--gray);
    font-size:15px;
}

/* NOSOTROS */
.about{
    padding:120px 0;
    background:#111;
    color:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:100px;
    align-items:center;
}

.about-visual{
    min-height:480px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-badge{
    position:absolute;
    left:5%;
    top:8%;
    padding:17px 20px;
    background:#fff;
    color:#111;
    border-radius:18px;
    box-shadow:var(--shadow-md);
    z-index:3;
}

.about-badge span,
.about-badge strong{display:block}
.about-badge span{font-size:10px;letter-spacing:2px;color:var(--orange);font-weight:800}
.about-badge strong{font-size:19px;margin-top:2px}

.about-circle{
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
}

.circle-main{
    width:280px;
    height:280px;
    background:var(--orange);
    font-size:80px;
    box-shadow:0 30px 90px rgba(255,107,0,.25);
}

.circle-small{
    width:90px;
    height:90px;
    right:9%;
    bottom:16%;
    background:#fff;
    color:var(--orange);
    font-size:30px;
    box-shadow:var(--shadow-md);
    z-index:3;
}

.about-line{
    width:410px;
    height:410px;
    border:1px dashed rgba(255,255,255,.15);
    border-radius:50%;
}

.about-content .eyebrow{background:rgba(255,107,0,.12)}

.about-content h2{
    max-width:760px;
    font-size:56px;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:27px;
}

.about-content > p{
    color:#bcbcbc;
    font-size:18px;
    max-width:750px;
    margin-bottom:15px;
}

.about-values{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.about-values div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 15px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:999px;
    color:#ddd;
    font-size:13px;
}

.about-values i{color:var(--orange)}

/* CTA */
.cta{
    padding:135px 0;
    text-align:center;
    background:var(--orange);
    color:#fff;
}

.cta .eyebrow{
    background:rgba(255,255,255,.12);
    color:#fff;
}

.cta h2{
    max-width:900px;
    margin:0 auto 20px;
    font-size:65px;
    line-height:1.04;
    letter-spacing:-2px;
}

.cta p{
    max-width:650px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.85);
    font-size:18px;
}

.cta .btn-primary{
    background:#111;
    box-shadow:none;
}

.cta .btn-primary:hover{
    background:#fff;
    color:#111;
}

/* CONTACTO */
.contact{padding:120px 0}

.contact-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:90px;
    align-items:start;
}

.contact-intro h2{
    font-size:60px;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:22px;
}

.contact-intro > p{
    color:var(--gray);
    font-size:18px;
    max-width:520px;
}

.contact-promise{
    margin-top:30px;
    display:flex;
    gap:14px;
    padding:20px;
    border:1px solid var(--border);
    background:var(--light);
    border-radius:20px;
}

.contact-promise > i{
    color:var(--orange);
    font-size:25px;
    margin-top:2px;
}

.contact-promise strong,
.contact-promise span{display:block}

.contact-promise strong{font-size:15px}
.contact-promise span{font-size:13px;color:var(--gray);margin-top:3px}

.contact-form{
    display:grid;
    gap:17px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:17px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px 19px;
    font-size:15px;
    background:#fff;
    color:var(--black);
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(255,107,0,.07);
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.budget-input{
    padding:15px 18px 17px;
    border:1px solid var(--border);
    border-radius:16px;
}

.budget-input:focus-within{
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(255,107,0,.07);
}

.budget-input span{
    display:block;
    color:var(--gray);
    font-size:12px;
    font-weight:800;
    margin-bottom:5px;
}

.budget-input input{
    border:0;
    padding:0;
    border-radius:0;
    box-shadow:none!important;
}

.contact-form small{
    color:var(--gray-light);
    font-size:11px;
    line-height:1.5;
}

/* FOOTER */
.footer{
    background:#111;
    color:#fff;
    padding:95px 0 35px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:60px;
    padding-bottom:65px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-brand h2{
    font-size:58px;
    line-height:1;
    font-weight:800;
    letter-spacing:-3px;
    margin-bottom:22px;
}

.footer-brand span{color:var(--orange)}

.footer-brand p{
    color:#bdbdbd;
    font-size:16px;
    max-width:420px;
    margin-bottom:28px;
}

.footer-links h4{
    margin-bottom:20px;
    font-size:16px;
}

.footer-links a{
    display:block;
    color:#999;
    margin-bottom:12px;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--orange);
    transform:translateX(5px);
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.footer-social a:hover{
    background:var(--orange);
    border-color:var(--orange);
    transform:translateY(-4px);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:30px;
    color:#777;
    font-size:13px;
}

/* WHATSAPP */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:33px;
    box-shadow:0 18px 40px rgba(37,211,102,.35);
    z-index:9999;
    transition:.3s;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

@keyframes whatsappPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)}
    70%{box-shadow:0 0 0 17px rgba(37,211,102,0)}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

/* TABLET */
@media(max-width:1100px){
    .hero-grid,
    .budget-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .hero{text-align:center}
    .hero p{margin-left:auto;margin-right:auto}
    .hero-buttons{justify-content:center}
    .hero-note{margin:auto;text-align:left}

    .hero-image{min-height:510px}
    .services-grid{grid-template-columns:repeat(2,1fr)}
    .process-grid{grid-template-columns:repeat(2,1fr)}
    .about-content{text-align:center}
    .about-content > p{margin-left:auto;margin-right:auto}
    .about-values{justify-content:center}
    .contact-intro{text-align:center}
    .contact-intro > p{margin:auto}
    .contact-promise{text-align:left;max-width:600px;margin:30px auto 0}
    .footer-top{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:850px){
    nav{display:none}

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:46px;
        height:46px;
        z-index:1002;
    }

    nav.show{
        position:fixed;
        inset:0;
        width:100%;
        height:100vh;
        background:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:1000;
    }

    nav.show ul{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:28px;
    }

    nav.show a{font-size:28px}
    .header-btn{display:none}
}

/* MOBILE */
@media(max-width:768px){
    header .container{height:75px}

    .hero{
        padding:110px 0 70px;
        min-height:auto;
    }

    .hero h1{
        font-size:43px;
        letter-spacing:-2px;
    }

    .hero p{font-size:17px}

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{
        width:100%;
    }

    .hero-note{font-size:13px}

    .hero-image{
        min-height:390px;
        transform:scale(.86);
        margin-top:-30px;
        margin-bottom:-35px;
    }

    .growth-card{
        width:340px;
        height:310px;
        padding:25px;
    }

    .growth-number{
        margin-top:48px;
        font-size:40px;
    }

    .growth-chart{height:75px}

    .card-web{left:0;top:55px}
    .card-google{right:-2px;bottom:45px}
    .orbit-one{width:380px;height:380px}
    .orbit-two{width:470px;height:470px}

    .section-title{margin-bottom:45px}
    .section-title h2{font-size:37px}
    .section-title p{font-size:16px}

    .services,
    .budget-model,
    .process,
    .about,
    .contact{padding:80px 0}

    .services-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .service-card{padding:28px}
    .budget-content h2,
    .about-content h2,
    .contact-intro h2{
        font-size:39px;
    }

    .budget-grid{gap:45px}
    .budget-step > div{grid-template-columns:38px 1fr}
    .budget-step i{width:38px;height:38px}

    .about-visual{
        min-height:360px;
        transform:scale(.82);
        margin:-30px 0;
    }

    .cta{padding:90px 0}
    .cta h2{font-size:40px}
    .cta p{font-size:16px}

    .form-row{grid-template-columns:1fr}

    .footer{
        padding:75px 0 30px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-brand h2{font-size:46px}
    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
        font-size:29px;
    }
}

@media(max-width:480px){
    .container{width:min(90%,var(--container))}

    .hero h1{font-size:36px}
    .hero-image{transform:scale(.72);margin-top:-65px;margin-bottom:-75px}

    .growth-card{width:330px}

    .floating-card{
        padding:13px 15px;
    }

    .floating-card strong{font-size:12px}
    .floating-card small{font-size:10px}

    .card-web{left:-10px}
    .card-google{right:-10px}

    .section-title h2{font-size:32px}
    .budget-content h2,
    .about-content h2,
    .contact-intro h2{font-size:34px}

    .cta h2{font-size:34px}

    .about-visual{
        transform:scale(.65);
        margin:-75px 0;
    }
}


/* ===== SECCION UNA FORMA DISTINTA DE TRABAJAR — AJUSTE FINAL ===== */
.budget-model{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:linear-gradient(180deg,#f7f7f5 0%,#ffffff 100%);
}

.budget-model::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(255,107,0,.07);
    top:-220px;
    right:-180px;
    pointer-events:none;
}

.budget-model .container{position:relative;z-index:1}

.budget-content .eyebrow{
    display:inline-flex;
    align-items:center;
    padding:9px 16px;
    margin-bottom:24px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(255,107,0,.18);
    color:var(--orange);
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.budget-content h2{
    max-width:700px;
    font-size:clamp(38px,4.4vw,58px);
    line-height:1.04;
    letter-spacing:-2.5px;
}

.budget-content > p{
    max-width:680px;
    color:#5f6368;
    line-height:1.75;
}

.budget-content > p strong{color:#111}

.budget-highlight{
    max-width:680px;
    margin-top:30px;
    padding:22px 24px;
    border:1px solid #e9e9e9;
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 35px rgba(0,0,0,.06);
}

.budget-highlight > i{
    flex:0 0 46px;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:0;
    border-radius:14px;
    background:#fff1e8;
    color:var(--orange);
}

.budget-highlight strong{font-size:17px}
.budget-highlight span{line-height:1.5}

.budget-steps{gap:14px}

.budget-step{
    position:relative;
    min-height:120px;
    padding:22px 24px;
    border:1px solid #e8e8e8;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.045);
}

.budget-step > span{
    padding-top:5px;
    font-size:12px;
    letter-spacing:1px;
}

.budget-step > div{align-items:start}

.budget-step i{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#fff1e8;
    color:var(--orange);
}

.budget-step h3{
    margin:0 0 5px;
    line-height:1.25;
}

.budget-step p{
    margin:0;
    line-height:1.55;
}

@media(max-width:1100px){
    .budget-grid{grid-template-columns:1fr;gap:50px}
    .budget-content > p,.budget-highlight{max-width:760px}
}

@media(max-width:768px){
    .budget-model{padding:80px 0}
    .budget-content .eyebrow{font-size:10px;letter-spacing:1.5px}
    .budget-content h2{font-size:38px;letter-spacing:-1.7px}
    .budget-content > p{font-size:16px}
    .budget-step{grid-template-columns:34px 1fr;padding:18px}
    .budget-step > div{grid-template-columns:38px 1fr;column-gap:10px}
    .budget-step i{width:38px;height:38px}
}

/* =========================================================
   IMPULSAWEB — CORRECCIONES FINALES
   Logo, honeypot y responsive sin desbordamiento lateral
   ========================================================= */

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    width:auto;
    height:auto;
    flex:0 1 auto;
    min-width:0;
}

.logo img{
    display:block;
    width:210px;
    max-width:210px;
    height:auto;
    object-fit:contain;
}

/* HONEYPOT DEL FORMULARIO */
.form-honeypot{
    position:absolute !important;
    left:-9999px !important;
    top:auto !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
}

/* PROTECCIONES GENERALES */
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:clip;
}

*,
*::before,
*::after{
    box-sizing:border-box;
    min-width:0;
}

img,
svg,
video,
canvas{
    max-width:100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
strong{
    overflow-wrap:anywhere;
}

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

@media(max-width:1100px){
    header .container{
        width:calc(100% - 32px);
        max-width:100%;
    }

    .hero,
    .hero-grid,
    .hero-image,
    .budget-model,
    .budget-grid,
    .about,
    .about-grid,
    .contact,
    .contact-grid{
        max-width:100%;
    }

    .hero-image{
        width:100%;
        overflow:hidden;
    }
}

/* =========================================================
   MENÚ MÓVIL
   ========================================================= */

@media(max-width:850px){
    header .container{
        width:calc(100% - 32px);
        height:75px;
    }

    .logo{
        flex:1 1 auto;
        min-width:0;
    }

    .logo img{
        width:190px;
        max-width:100%;
    }

    .menu-toggle{
        flex:0 0 46px;
    }

    nav.show{
        width:100vw;
        max-width:100vw;
        overflow:hidden;
    }

    nav.show ul{
        width:100%;
        max-width:100%;
        padding:0 24px;
    }

    nav.show a{
        max-width:100%;
        text-align:center;
        overflow-wrap:anywhere;
    }
}

/* =========================================================
   MÓVIL — SIN OVERFLOW
   ========================================================= */

@media(max-width:768px){
    .container{
        width:calc(100% - 32px);
        max-width:100%;
    }

    .hero{
        width:100%;
        max-width:100%;
        overflow:hidden;
        padding:105px 0 60px;
    }

    .hero-grid{
        width:100%;
        max-width:100%;
    }

    .hero-content{
        width:100%;
        max-width:100%;
    }

    .hero h1{
        max-width:100%;
        font-size:43px;
        letter-spacing:-2px;
        overflow-wrap:anywhere;
    }

    .hero p{
        max-width:100%;
        font-size:17px;
    }

    .hero-buttons{
        width:100%;
        max-width:100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{
        width:100%;
        max-width:100%;
        white-space:normal;
    }

    /* VISUAL DEL HERO */
    .hero-image{
        position:relative;
        width:100%;
        max-width:100%;
        min-height:360px;
        overflow:hidden;
        transform:none;
        margin-top:-15px;
        margin-bottom:-15px;
    }

    .growth-card{
        width:min(340px,calc(100% - 60px));
        max-width:calc(100% - 60px);
        height:300px;
        padding:25px;
    }

    .growth-number{
        margin-top:45px;
        font-size:40px;
    }

    .growth-chart{
        height:75px;
        gap:8px;
    }

    .floating-card{
        max-width:calc(100% - 24px);
    }

    .card-web{
        left:0;
        top:48px;
    }

    .card-google{
        right:0;
        bottom:40px;
    }

    .orbit-one{
        width:360px;
        height:360px;
        max-width:none;
    }

    .orbit-two{
        width:440px;
        height:440px;
        max-width:none;
    }

    /* SECCIONES */
    .services,
    .budget-model,
    .process,
    .about,
    .contact,
    .cta,
    .footer{
        width:100%;
        max-width:100%;
        overflow:hidden;
    }

    /* PRESUPUESTO */
    .budget-grid,
    .budget-content,
    .budget-steps{
        width:100%;
        max-width:100%;
    }

    .budget-step{
        width:100%;
        max-width:100%;
        grid-template-columns:34px minmax(0,1fr);
        padding:18px;
    }

    .budget-step > div{
        width:100%;
        min-width:0;
        grid-template-columns:38px minmax(0,1fr);
        column-gap:10px;
    }

    .budget-step h3,
    .budget-step p{
        min-width:0;
        max-width:100%;
        overflow-wrap:anywhere;
    }

    .budget-highlight{
        width:100%;
        max-width:100%;
    }

    /* FORMULARIO */
    .contact-form,
    .form-row,
    .budget-input{
        width:100%;
        max-width:100%;
        min-width:0;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select{
        width:100%;
        max-width:100%;
        min-width:0;
    }

    .contact-form .btn-primary{
        width:100%;
        max-width:100%;
        white-space:normal;
    }

    /* ABOUT */
    .about-visual{
        width:100%;
        max-width:100%;
        overflow:hidden;
        transform:scale(.82);
    }

    /* FOOTER */
    .footer-top,
    .footer-bottom,
    .footer-brand,
    .footer-links{
        width:100%;
        max-width:100%;
        min-width:0;
    }

    .footer-links a,
    .footer-brand p,
    .footer-bottom p{
        max-width:100%;
        overflow-wrap:anywhere;
        word-break:break-word;
    }
}

/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media(max-width:480px){
    .container{
        width:calc(100% - 28px);
        max-width:100%;
    }

    header .container{
        width:calc(100% - 28px);
    }

    .logo img{
        width:165px;
        max-width:100%;
    }

    .hero{
        padding:100px 0 50px;
    }

    .hero h1{
        font-size:36px;
        letter-spacing:-1.5px;
    }

    .hero-image{
        min-height:315px;
        margin-top:-10px;
        margin-bottom:-5px;
        transform:none;
    }

    .growth-card{
        width:min(290px,calc(100% - 55px));
        max-width:calc(100% - 55px);
        height:275px;
        padding:21px;
    }

    .growth-card-top{
        font-size:10px;
    }

    .growth-card-top i{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .growth-number{
        margin-top:40px;
        font-size:34px;
    }

    .growth-chart{
        height:65px;
        gap:7px;
        margin-top:22px;
    }

    .orbit-one{
        width:310px;
        height:310px;
    }

    .orbit-two{
        width:390px;
        height:390px;
    }

    .floating-card{
        padding:10px 12px;
        gap:8px;
        max-width:145px;
    }

    .floating-card i{
        width:34px;
        height:34px;
        flex:0 0 34px;
        font-size:15px;
    }

    .floating-card strong{
        font-size:10px;
    }

    .floating-card small{
        font-size:8px;
    }

    .card-web{
        left:0;
        top:40px;
    }

    .card-google{
        right:0;
        bottom:25px;
    }

    .section-title h2{
        font-size:32px;
    }

    .budget-content h2,
    .about-content h2,
    .contact-intro h2{
        font-size:34px;
        overflow-wrap:anywhere;
    }

    .cta h2{
        font-size:34px;
        max-width:100%;
        overflow-wrap:anywhere;
    }

    .budget-step{
        grid-template-columns:28px minmax(0,1fr);
        padding:16px;
    }

    .budget-step > div{
        grid-template-columns:36px minmax(0,1fr);
    }

    .budget-highlight{
        padding:18px;
    }

    .budget-highlight > i{
        flex:0 0 40px;
        width:40px;
        height:40px;
    }

    .about-visual{
        min-height:330px;
        transform:scale(.68);
        margin:-55px 0;
    }

    .footer-brand h2{
        font-size:44px;
    }

    .whatsapp-float{
        width:54px;
        height:54px;
        right:14px;
        bottom:14px;
        font-size:27px;
    }
}

/* =========================================================
   DISPOSITIVOS MUY PEQUEÑOS
   ========================================================= */

@media(max-width:360px){
    .container,
    header .container{
        width:calc(100% - 24px);
    }

    .logo img{
        width:145px;
    }

    .hero h1{
        font-size:32px;
    }

    .growth-card{
        width:min(260px,calc(100% - 45px));
        max-width:calc(100% - 45px);
    }

    .floating-card{
        max-width:135px;
    }

    .card-web{
        left:-2px;
    }

    .card-google{
        right:-2px;
    }
}
