/* WTF Digital Landing v5.0 — main.css */

/* =============================================
   VARIABLES
============================================= */
:root{
    --wtf-accent:     #ff6542;
    --wtf-bg:         #17242d;
    --wtf-bg-section: #212e36;
    --wtf-bg-card:    #1c2b34;
    --wtf-text:       #e4eef0;
    --wtf-muted:      #7a9aaa;
    --wtf-border:     rgba(228,238,240,0.08);
    --wtf-nav-bg:     rgba(23,36,45,0.95);
    --wtf-footer-bg:  #111e26;
    --wtf-btn-text:   #ffffff;
    --wtf-cta-bg:     #ff6542;
    --wtf-cta-text:   #ffffff;
    --wtf-font-heading:'Syne',sans-serif;
    --wtf-font-body:  'DM Sans',sans-serif;
    --radius:  12px;
    --radius-sm: 8px;
    --nav-h:   68px;
    --container: 1100px;
}

/* ===== RESET ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    background:var(--wtf-bg);color:var(--wtf-text);
    font-family:var(--wtf-font-body);line-height:1.65;
    overflow-x:hidden;-webkit-text-size-adjust:100%;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{cursor:pointer;font-family:var(--wtf-font-body)}

/* ===== LAYOUT ===== */
.container{max-width:var(--container);margin:0 auto;padding:0 2rem;width:100%}
section{padding:5rem 0}
.section-label{color:var(--wtf-accent);font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.75rem}
.section-title{font-family:var(--wtf-font-heading);font-size:clamp(1.8rem,4vw,3rem);font-weight:800;line-height:1.1;margin-bottom:1rem;word-break:break-word;color:var(--wtf-text)}
.section-title .accent,.accent{color:var(--wtf-accent)}
.section-sub{color:var(--wtf-muted);font-size:1rem;margin-bottom:3rem;line-height:1.7}

/* ===== BOTONES ===== */
.btn-primary{background:var(--wtf-accent);color:#fff;border:none;padding:.8rem 1.75rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:700;display:inline-block;transition:opacity .2s,transform .15s;white-space:nowrap;text-align:center;letter-spacing:.02em}
.btn-primary:hover{opacity:.88;transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--wtf-text);border:1px solid var(--wtf-border);padding:.8rem 1.75rem;border-radius:var(--radius-sm);font-size:.9rem;display:inline-block;transition:border-color .2s,color .2s;text-align:center}
.btn-ghost:hover{border-color:rgba(228,238,240,.3);color:#fff}
.btn-white{background:#fff;color:var(--wtf-cta-bg);border:none;padding:.8rem 1.75rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:700;display:inline-block;transition:opacity .2s;text-align:center}
.btn-white:hover{opacity:.9}
.btn-outline-white{display:none}
.btn-wa-contact{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;background:#25D366;color:#fff;border:none;padding:.85rem 1.5rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:600;margin-top:1.5rem;transition:opacity .2s;width:100%}
.btn-wa-contact:hover{opacity:.85}

/* ===== NAV ===== */
.wtf-nav{position:fixed;top:0;left:0;right:0;z-index:100;height:var(--nav-h);background:var(--wtf-nav-bg);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--wtf-border);transition:background .3s,box-shadow .3s}
.wtf-nav.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.3)}
.nav-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo{display:flex;align-items:center;flex-shrink:0;font-family:var(--wtf-font-heading);font-size:1.2rem;font-weight:800;color:var(--wtf-text);min-width:0}
.nav-logo img{height:38px;width:auto;max-width:160px;object-fit:contain;object-position:left center;flex-shrink:0;display:block}
.nav-logo .custom-logo-link{display:flex;align-items:center;flex-shrink:0}
.nav-logo .custom-logo-link img{height:38px;width:auto;max-width:160px}
.nav-links{display:flex;list-style:none;gap:1.75rem;align-items:center;flex:1;justify-content:center}
.nav-links a{color:var(--wtf-muted);font-size:.85rem;transition:color .2s;white-space:nowrap}
.nav-links a:hover{color:var(--wtf-text)}
.nav-actions{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.nav-wa{display:flex;align-items:center;justify-content:center;width:34px;height:34px;min-width:34px;border-radius:50%;background:#25D366;color:#fff;transition:opacity .2s;flex-shrink:0}
.nav-wa:hover{opacity:.85}
.nav-wa svg{width:17px;height:17px}
.nav-cta{background:var(--wtf-accent);color:#fff;border:none;padding:.5rem 1.1rem;border-radius:var(--radius-sm);font-size:.82rem;font-weight:700;white-space:nowrap;transition:opacity .2s;letter-spacing:.02em;display:flex;align-items:center;gap:.4rem}
.nav-cta:hover{opacity:.85}
.nav-cta-text{display:inline}
.nav-hamburger{display:none;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;padding:6px;width:36px;height:36px;flex-shrink:0}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--wtf-text);border-radius:2px;transition:all .3s;transform-origin:center}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ===== HERO ===== */
.wtf-hero{min-height:100vh;padding:calc(var(--nav-h) + 4rem) 2rem 5rem;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;overflow:hidden;background-size:cover;background-position:center}
.hero-overlay{display:none}
.hero-bg-glow{position:absolute;inset:0;pointer-events:none;z-index:1;background:radial-gradient(ellipse 70% 50% at 50% 0%,rgba(255,101,66,.1) 0%,transparent 70%)}
.hero-content{position:relative;z-index:2;text-align:center;width:100%;max-width:780px;margin:0 auto}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,101,66,.1);border:1px solid rgba(255,101,66,.3);color:var(--wtf-accent);font-size:.72rem;font-weight:700;padding:.3rem .9rem;border-radius:50px;margin-bottom:1.5rem;letter-spacing:.07em;text-transform:uppercase;animation:fadeUp .6s ease both}
.hero-title{font-family:var(--wtf-font-heading);font-size:2.5rem;font-weight:800;line-height:1.05;margin-bottom:1.5rem;animation:fadeUp .6s .1s ease both;word-break:break-word;overflow-wrap:break-word;color:var(--wtf-text)}
.hero-subtitle{color:var(--wtf-text);font-size:1.05rem;max-width:90%;margin:0 auto 2.5rem;animation:fadeUp .6s .2s ease both;line-height:1.7}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;animation:fadeUp .6s .3s ease both}

/* ===== SLIDER ===== */
.wtf-slider-wrap{width:100%;max-width:900px;margin:3rem auto 0;border-radius:var(--radius);overflow:hidden;border:1px solid var(--wtf-border);animation:fadeUp .6s .4s ease both;position:relative;z-index:2}
.wtf-swiper{width:100%}
.wtf-slide{height:360px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;background-color:transparent;background-size:cover;background-position:center;background-repeat:no-repeat}
.slide-overlay{position:absolute;inset:0;background:rgba(8,16,21,0.65);z-index:1}
.slide-inner{position:relative;z-index:2;text-align:center;padding:1.5rem;width:100%}
.slide-inner h3{font-family:var(--wtf-font-heading);font-size:clamp(1.2rem,3.5vw,2.3rem);font-weight:800;margin-bottom:.5rem;word-break:break-word;color:var(--wtf-text)}
.slide-inner p{color:var(--wtf-muted);font-size:clamp(.8rem,2vw,.95rem)}
.slide-deco{position:absolute;right:-1rem;bottom:-1.5rem;font-family:var(--wtf-font-heading);font-size:clamp(4rem,12vw,11rem);font-weight:800;opacity:.15;color:var(--wtf-text);pointer-events:none;user-select:none;line-height:1;z-index:1}
.wtf-prev,.wtf-next{background:rgba(23,36,45,.7)!important;border:1px solid var(--wtf-border)!important;border-radius:50%!important;width:34px!important;height:34px!important;transition:background .2s!important}
.wtf-prev::after,.wtf-next::after{font-size:12px!important;color:var(--wtf-text)!important}
.wtf-prev:hover,.wtf-next:hover{background:var(--wtf-accent)!important}
.wtf-pagination .swiper-pagination-bullet{background:rgba(228,238,240,.25)!important}
.wtf-pagination .swiper-pagination-bullet-active{background:var(--wtf-accent)!important;width:22px!important;border-radius:4px!important}

/* ===== NOSOTROS ===== */
.wtf-nosotros{background:var(--wtf-bg-section)}
.nosotros-grid.has-image{display:grid;grid-template-columns:1fr 360px;gap:4rem;align-items:center;margin-bottom:2.5rem}
.nosotros-image img{width:100%;border-radius:var(--radius);object-fit:cover;border:1px solid var(--wtf-border)}
.pillars-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.5rem;width:100%}
.pillar{background:var(--wtf-bg-card);border:1px solid var(--wtf-border);border-radius:var(--radius);padding:1.75rem;transition:border-color .2s,transform .2s}
.pillar:hover{border-color:rgba(255,101,66,.4);transform:translateY(-3px)}
.pillar-icon{width:42px;height:42px;background:rgba(255,101,66,.12);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:1rem}
.pillar h3{font-family:var(--wtf-font-heading);font-size:1rem;font-weight:700;margin-bottom:.5rem;color:var(--wtf-text)}
.pillar p{color:var(--wtf-muted);font-size:.875rem;line-height:1.65}

/* ===== SERVICIOS ===== */
.wtf-servicios{background:var(--wtf-bg)}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.service-card{background:var(--wtf-bg-card);border:1px solid var(--wtf-border);border-radius:var(--radius);padding:2rem;position:relative;overflow:hidden;transition:border-color .25s,transform .25s}
.service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--wtf-accent);transform:scaleX(0);transform-origin:left;transition:transform .3s}
.service-card:hover::before{transform:scaleX(1)}
.service-card:hover{border-color:rgba(255,101,66,.3);transform:translateY(-4px)}
.service-icon{font-size:1.4rem;margin-bottom:1rem}
.service-card h3{font-family:var(--wtf-font-heading);font-size:1rem;font-weight:700;margin-bottom:.6rem;display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;color:var(--wtf-text)}
.badge-new{background:var(--wtf-accent);color:#fff;font-size:.6rem;font-weight:700;padding:.12rem .45rem;border-radius:50px;letter-spacing:.05em;text-transform:uppercase;font-family:var(--wtf-font-body);white-space:nowrap}
.service-card p{color:var(--wtf-muted);font-size:.875rem;line-height:1.65}

/* ===== CTA ===== */
.wtf-cta-wrap{background:var(--wtf-bg-section)}
.cta-block{background:var(--wtf-cta-bg);border-radius:var(--radius);padding:3.5rem 3rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:2rem;position:relative;overflow:hidden;background-size:cover;background-position:center}
.cta-overlay{position:absolute;inset:0;background:rgba(0,0,0,.4);z-index:0}
.cta-bg-word{position:absolute;right:2rem;top:-1rem;font-family:var(--wtf-font-heading);font-size:10rem;font-weight:800;color:rgba(255,255,255,.06);pointer-events:none;line-height:1;z-index:1;user-select:none}
.cta-text,.cta-btns{position:relative;z-index:2}
.cta-text{flex:1 1 auto;max-width:100%}
.cta-text h2{font-family:var(--wtf-font-heading);font-size:clamp(1.6rem,4vw,2.6rem);font-weight:800;color:#fff;line-height:1.1;word-break:break-word}
.cta-text p{color:rgba(255,255,255,.8);margin-top:.75rem;font-size:.95rem}
.cta-btns{display:flex;gap:1rem;flex-wrap:wrap}

/* ===== ROADMAP ===== */
.wtf-roadmap{background:var(--wtf-bg)}
.roadmap-steps{margin-top:2.5rem}
.roadmap-step{display:flex;gap:2rem;align-items:flex-start;padding:2rem 0;border-bottom:1px solid var(--wtf-border);transition:padding-left .2s}
.roadmap-step:last-child{border-bottom:none}
.roadmap-step:hover{padding-left:.5rem}
.step-num{width:42px;height:42px;min-width:42px;border-radius:50%;border:1.5px solid var(--wtf-border);display:flex;align-items:center;justify-content:center;font-family:var(--wtf-font-heading);font-weight:800;font-size:.9rem;color:var(--wtf-muted);transition:all .2s;flex-shrink:0}
.roadmap-step:hover .step-num{border-color:var(--wtf-accent);color:var(--wtf-accent)}
.step-body h3{font-family:var(--wtf-font-heading);font-size:1.05rem;font-weight:700;margin-bottom:.4rem;color:var(--wtf-text)}
.step-body p{color:var(--wtf-muted);font-size:.875rem}

/* ===== VALOR ===== */
.wtf-valor{background:var(--wtf-bg-section);text-align:center;padding:6rem 2rem}
.valor-inner h2{font-family:var(--wtf-font-heading);font-size:clamp(2rem,6vw,4.5rem);font-weight:800;line-height:1.05;margin-bottom:1rem;word-break:break-word;color:var(--wtf-text)}
.valor-inner p{color:var(--wtf-muted);max-width:700px;margin:0 auto 2.5rem;font-size:1rem}

/* ===== CONTACTO ===== */
.wtf-contacto{background:var(--wtf-bg)}
.contacto-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:4rem;align-items:start;margin-top:3rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.wtf-contact-form{display:flex;flex-direction:column;gap:1.25rem;position:relative}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group label{font-size:.78rem;color:var(--wtf-muted);font-weight:600;letter-spacing:.02em}
.form-group input,.form-group select,.form-group textarea{background:var(--wtf-bg-card);border:1px solid var(--wtf-border);border-radius:var(--radius-sm);color:var(--wtf-text);padding:.75rem 1rem;font-size:.9rem;font-family:var(--wtf-font-body);outline:none;transition:border-color .2s;width:100%;resize:none;-webkit-appearance:none;appearance:none}
.form-group input::placeholder,.form-group textarea::placeholder{color:rgba(228,238,240,.2)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--wtf-accent);box-shadow:0 0 0 3px rgba(255,101,66,.12)}
.form-group select{background-color:var(--wtf-bg-card);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .875rem center;padding-right:2.5rem}
.form-group select option{background:#1c2b34;color:var(--wtf-text)}
.btn-submit{background:var(--wtf-accent);color:#fff;border:none;padding:1rem;border-radius:var(--radius-sm);font-size:1rem;font-weight:700;transition:opacity .2s;margin-top:.5rem;width:100%;letter-spacing:.02em}
.btn-submit:hover{opacity:.85}
.btn-submit:disabled{opacity:.55;cursor:not-allowed}
.form-feedback{padding:1rem 1.25rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:600;display:none;margin-top:.5rem;text-align:center;animation:fadeUp .3s ease both}
.form-feedback.success{background:rgba(22,163,74,.2);border:2px solid rgba(22,163,74,.6);color:#4ade80;display:block}
.form-feedback.error{background:rgba(239,68,68,.2);border:2px solid rgba(239,68,68,.6);color:#ff8080;display:block}
.contact-info h3{font-family:var(--wtf-font-heading);font-size:1.35rem;font-weight:800;margin-bottom:1.5rem;color:var(--wtf-text)}
.office-item{display:flex;gap:1rem;margin-bottom:1.5rem;align-items:flex-start}
.office-icon{width:40px;height:40px;min-width:40px;background:rgba(255,101,66,.1);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.office-icon svg{color:var(--wtf-accent);stroke:var(--wtf-accent)}
.office-item h4{font-size:.82rem;font-weight:700;margin-bottom:.2rem;color:var(--wtf-text)}
.office-item p,.office-item a{color:var(--wtf-muted);font-size:.875rem}
.office-item a:hover{color:var(--wtf-accent)}

/* ===== MAPA ===== */
.wtf-map{line-height:0;border-top:1px solid var(--wtf-border)}
.wtf-map iframe{width:100%;filter:grayscale(20%) contrast(1.05) brightness(.9)}

/* ===== FOOTER ===== */
.wtf-footer{background:var(--wtf-footer-bg);border-top:1px solid var(--wtf-border)}
.footer-top{display:flex;flex-wrap:wrap;gap:3rem;padding:3.5rem 0 2.5rem;justify-content:space-between}
.footer-brand{max-width:280px}
.footer-logo{font-family:var(--wtf-font-heading);font-size:1.15rem;font-weight:800;display:flex;align-items:center;margin-bottom:.75rem;color:var(--wtf-text)}
.footer-logo img{height:32px;width:auto;max-width:140px;object-fit:contain}
.footer-brand p{color:var(--wtf-muted);font-size:.875rem;margin-bottom:1.5rem;line-height:1.65}
.social-links{display:flex;gap:.6rem}
.social-btn{width:36px;height:36px;border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:#fff;transition:opacity .2s,transform .2s;flex-shrink:0}
.social-btn:hover{opacity:.85;transform:translateY(-2px)}
.social-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.social-fb{background:#1877F2}
.social-wa{background:#25D366}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.65rem}
.footer-links a{color:var(--wtf-muted);font-size:.875rem;transition:color .2s}
.footer-links a:hover{color:var(--wtf-accent)}
.footer-contact-info{display:flex;flex-direction:column;gap:.75rem}
.footer-info-item{display:flex;gap:.75rem;align-items:flex-start;color:var(--wtf-muted);font-size:.875rem}
.footer-info-item svg{color:var(--wtf-accent);stroke:var(--wtf-accent);flex-shrink:0;margin-top:2px}
.footer-info-item a{color:var(--wtf-muted);transition:color .2s}
.footer-info-item a:hover{color:var(--wtf-accent)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.75rem;padding:1.5rem 0;border-top:1px solid var(--wtf-border);color:var(--wtf-muted);font-size:.78rem}
.footer-bottom-social{display:flex;gap:1rem}
.footer-bottom-social a{color:var(--wtf-muted);font-size:.78rem;font-weight:600;transition:color .2s;text-transform:uppercase;letter-spacing:.06em}
.footer-bottom-social a:hover{color:var(--wtf-accent)}

/* ===== WA FLOTANTE ===== */
.wa-float{position:fixed;bottom:1.75rem;right:1.75rem;z-index:90;width:52px;height:52px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 4px 20px rgba(37,211,102,.35);transition:transform .2s,box-shadow .2s}
.wa-float:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(37,211,102,.5)}

/* ===== SOCIAL BAR BLOCK ===== */
.wtf-social-bar{padding:2rem 0}
.social-bar-label{display:block;color:var(--wtf-muted);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;margin-bottom:1rem}
.social-bar-icons{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}
.layout-vertical .social-bar-icons{flex-direction:column}
.wtf-social-bar .social-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.55rem 1.1rem;border-radius:var(--radius-sm);color:#fff;font-size:.85rem;font-weight:600;transition:opacity .2s,transform .15s}
.wtf-social-bar .social-btn:hover{opacity:.85;transform:translateY(-2px)}
.wtf-social-bar .social-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.wtf-social-bar .social-fb{background:#1877F2}
.wtf-social-bar .social-wa{background:#25D366}

/* ===== SERVICIO ITEM ===== */
.wtf-block-servicio-item{background:var(--wtf-bg-card);border:1px solid var(--wtf-border);border-radius:var(--radius);padding:2rem;transition:border-color .25s,transform .25s}
.wtf-block-servicio-item:hover{border-color:rgba(255,101,66,.3);transform:translateY(-4px)}

/* ===== ANIMACIONES ===== */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.fade-up{opacity:0;transform:translateY(24px);transition:opacity .55s ease,transform .55s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* =============================================
   RESPONSIVE
============================================= */

/* 1024px */
@media(max-width:1024px){
    .nosotros-grid.has-image{grid-template-columns:1fr 280px;gap:2.5rem}
    .services-grid{grid-template-columns:repeat(2,1fr)}
    .pillars-grid{grid-template-columns:repeat(3,1fr)}
}

/* 900px */
@media(max-width:900px){
    .nosotros-grid.has-image{grid-template-columns:1fr}
    .nosotros-image{display:none}
    .contacto-grid{grid-template-columns:1fr}
    .footer-top{gap:2rem}
    .cta-block{flex-direction:column;gap:1.5rem;padding:2.5rem 2rem}
    .cta-bg-word{display:none}
    .pillars-grid{grid-template-columns:repeat(2,1fr)}
}

/* 768px — MOBILE */
@media(max-width:768px){
    :root{--nav-h:62px}
    .container{padding:0 1.25rem}
    section{padding:3.5rem 0}
    .nav-hamburger{display:flex}
    .nav-links{position:fixed;top:var(--nav-h);left:0;right:0;background:rgba(23,36,45,.98);flex-direction:column;padding:1.5rem 1.25rem;gap:0;transform:translateY(-110%);opacity:0;pointer-events:none;transition:transform .3s ease,opacity .3s ease;border-bottom:1px solid var(--wtf-border);max-height:calc(100vh - var(--nav-h));overflow-y:auto;z-index:99}
    .nav-links.open{transform:translateY(0);opacity:1;pointer-events:all}
    .nav-links li{width:100%}
    .nav-links a{font-size:.95rem;display:block;padding:.875rem 0;border-bottom:1px solid var(--wtf-border);color:var(--wtf-text)}
    .nav-links li:last-child a{border-bottom:none}
    .nav-logo img{height:32px;max-width:130px}
    .nav-logo .custom-logo-link img{height:32px;max-width:130px}
    .nav-cta{padding:.45rem .9rem;font-size:.78rem}
    .wtf-hero{padding:calc(var(--nav-h) + 2rem) 1.25rem 3rem;min-height:auto}
    .hero-content{max-width:100%}
    .hero-title{font-size:1.6rem;line-height:1.08}
    .hero-subtitle{font-size:.95rem;max-width:100%;line-height:1.65}
    .hero-badge{font-size:.68rem;padding:.28rem .8rem}
    .hero-btns{flex-direction:column;align-items:stretch;gap:.75rem;width:100%;max-width:300px;margin-left:auto;margin-right:auto}
    .hero-btns .btn-primary,.hero-btns .btn-ghost{width:100%;padding:.85rem 1rem}
    .wtf-slider-wrap{margin:2rem -1.25rem 0;border-radius:0;border-left:none;border-right:none;width:calc(100% + 2.5rem)}
    .wtf-slide{height:220px}
    .slide-inner{padding:1rem}
    .slide-inner h3{font-size:clamp(1rem,5vw,1.5rem)}
    .slide-inner p{font-size:.82rem}
    .slide-deco{font-size:4rem}
    .wtf-prev,.wtf-next{width:28px!important;height:28px!important}
    .wtf-prev::after,.wtf-next::after{font-size:10px!important}
    .pillars-grid{grid-template-columns:1fr}
    .services-grid{grid-template-columns:1fr}
    .service-card{padding:1.5rem}
    .cta-block{padding:2rem 1.25rem;border-radius:var(--radius-sm);text-align:center}
    .cta-btns{flex-direction:column;align-items:stretch;gap:.75rem}
    .roadmap-step{flex-direction:column;gap:.75rem;padding:1.5rem 0}
    .roadmap-step:hover{padding-left:0}
    .step-num{width:36px;height:36px;min-width:36px}
    .wtf-valor{padding:4rem 1.25rem}
    .valor-inner h2{font-size:clamp(1.8rem,8vw,2.8rem)}
    .contacto-grid{gap:2rem;margin-top:2rem}
    .form-row{grid-template-columns:1fr}
    .contact-info{order:-1}
    .contact-info h3{font-size:1.1rem;margin-bottom:1rem}
    .btn-wa-contact{width:100%;justify-content:center}
    .footer-top{flex-direction:column;padding:2rem 0 1.5rem}
    .footer-brand{max-width:100%}
    .footer-bottom{flex-direction:column;text-align:center}
    .footer-bottom-social{justify-content:center}
    .wa-float{bottom:1rem;right:1rem;width:46px;height:46px}
    .wa-float svg{width:22px;height:22px}
    .section-title{font-size:clamp(1.6rem,6vw,2.4rem)}
    .section-sub{margin-bottom:2rem}
}

/* 480px — MOBILE CHICO */
@media(max-width:480px){
    :root{--nav-h:58px}
    .container{padding:0 1rem}
    section{padding:3rem 0}
    .nav-logo img{height:28px;max-width:110px}
    .nav-logo .custom-logo-link img{height:28px;max-width:110px}
    .nav-cta-text{display:none}
    .nav-cta{padding:.45rem .65rem;border-radius:6px;font-size:.75rem}
    .nav-wa{width:30px;height:30px;min-width:30px}
    .nav-wa svg{width:15px;height:15px}
    .nav-actions{gap:.4rem}
    .wtf-hero{padding:calc(var(--nav-h) + 1.5rem) 1rem 2.5rem}
    .hero-title{font-size:clamp(1.7rem,9.5vw,2.5rem);line-height:1.07}
    .hero-subtitle{font-size:.875rem}
    .hero-badge{font-size:.64rem;padding:.25rem .7rem}
    .hero-btns{max-width:280px}
    .wtf-slider-wrap{margin:1.5rem -1rem 0;width:calc(100% + 2rem)}
    .wtf-slide{height:190px}
    .slide-inner h3{font-size:1rem}
    .slide-inner p{font-size:.78rem}
    .pillar{padding:1.1rem}
    .service-card{padding:1.25rem}
    .pillar-icon{width:38px;height:38px;font-size:1.1rem}
    .step-body h3{font-size:.95rem}
    .step-body p{font-size:.85rem}
    .form-group input,.form-group select,.form-group textarea{font-size:.875rem;padding:.65rem .875rem}
    .btn-submit{font-size:.9rem;padding:.85rem}
    .footer-logo img{height:26px}
    .social-btn{width:32px;height:32px}
    .valor-inner h2{font-size:clamp(1.7rem,9vw,2.4rem)}
    .valor-inner p{font-size:.9rem}
    .wtf-valor{padding:3.5rem 1rem}
    .section-title{font-size:clamp(1.5rem,7vw,2.1rem)}
}
