.elementor-18997 .elementor-element.elementor-element-671e4410{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4f36aba *//* =====================================================
   VARIABLES
===================================================== */

:root{
  --brand:#ff4322;
  --brand-dark:#e63c1e;
  --text:#1d1d1f;
  --muted:#666;
  --light:#f5f5f5;
  --max-width:1200px;
}

/* =====================================================
   BASE
===================================================== */

.ba-home{
  font-family:"Space Mono", monospace;
  color:var(--text);
  line-height:1.7;
}

.ba-container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}

.ba-narrow{ max-width:760px; }
.ba-center{ text-align:center; }

/* =====================================================
   HERO
===================================================== */

.ba-hero{
  padding:120px 0 100px;
}

.ba-hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:60px;
}

.ba-eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:18px;
}

.ba-hero h1{
  font-size:clamp(32px,4vw,48px);
  line-height:1.15;
  margin:0 0 24px;
  font-weight:600;
}

.ba-lead{
  font-size:18px;
  color:var(--muted);
  max-width:520px;
}

.ba-hero-cta{
  margin-top:32px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* =====================================================
   BOTONES – SISTEMA PREMIUM UNIFICADO
===================================================== */

.ba-btn{
  position:relative;
  display:inline-block;
  padding:14px 26px;
  border-radius:4px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:.08em;
  transform:translateY(0);
  transition:
    transform .18s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

/* Hover elevación */
.ba-btn:hover{
  transform:translateY(-2px);
}

.ba-btn:active{
  transform:translateY(0);
}

/* Primary */
.ba-btn-primary{
  background:var(--brand);
  color:#fff;
  overflow:hidden;
  isolation:isolate;
  box-shadow:
    0 2px 8px rgba(0,0,0,.08),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

.ba-btn-primary:hover{
  background:var(--brand-dark);
  color:#fff;
  box-shadow:
    0 6px 18px rgba(0,0,0,.12),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

/* Brillo cinematográfico */
.ba-btn-primary::before{
  content:"";
  position:absolute;
  top:0;
  left:-140%;
  width:60%;
  height:100%;
  background:linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.12) 45%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.12) 55%,
    rgba(255,255,255,0) 100%
  );
  transform:skewX(-18deg);
  transition:left .9s cubic-bezier(.19,1,.22,1);
  pointer-events:none;
}

.ba-btn-primary:hover::before{
  left:160%;
}

/* Outline */
.ba-btn-outline{
  background:transparent;
  border:2px solid var(--brand);
  color:var(--brand);
  overflow:hidden;
}

.ba-btn-outline::after{
  content:"";
  position:absolute;
  inset:0;
  background:var(--brand);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s cubic-bezier(.19,1,.22,1);
  z-index:-1;
}

.ba-btn-outline:hover::after{
  transform:scaleX(1);
}

.ba-btn-outline:hover{
  color:#fff;
}

/* Light (CTA final) */
.ba-btn-light{
  background:var(--brand);
  color:#fff;
}

.ba-btn-light:hover{
  background:var(--brand-dark);
  color:#fff;
}

/* =====================================================
   HERO VISUAL – ONDA ANIMADA
===================================================== */

.ba-hero-wave svg{
  width:100%;
  height:260px;
}

.ba-wave-path{
  fill:none;
  stroke:var(--brand);
  stroke-width:2;
  stroke-linecap:round;

  stroke-dasharray:800;
  stroke-dashoffset:800;

  animation:
    wave-draw 4s ease forwards,
    wave-float 6s ease-in-out infinite;
}

@keyframes wave-draw{
  to{ stroke-dashoffset:0; }
}

@keyframes wave-float{
  0%{ transform:translateX(0); }
  50%{ transform:translateX(-8px); }
  100%{ transform:translateX(0); }
}

/* =====================================================
   SECCIONES EDITORIALES
===================================================== */

.ba-editorial{
  padding:90px 0;
}

.ba-editorial h2{
  font-size:28px;
  margin:0 0 28px;
  font-weight:600;
}

.ba-editorial h2 a{
  text-decoration:none;
  color:var(--text);
  transition:.2s ease;
}

.ba-editorial h2 a:hover{
  color:var(--brand);
}

.ba-editorial p{
  margin:0 0 22px;
  font-size:17px;
  color:#444;
}

/* =====================================================
   SERVICES
===================================================== */

.ba-services{
  padding:100px 0;
  background:var(--light);
}

.ba-section-title{
  font-size:26px;
  margin-bottom:50px;
  font-weight:600;
}

.ba-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.ba-service h3{
  font-size:20px;
  margin:0 0 18px;
  font-weight:600;
}

.ba-service h3 a{
  text-decoration:none;
  color:var(--text);
}

.ba-service h3 a:hover{
  color:var(--brand);
}

.ba-service p{
  font-size:16px;
  color:#444;
}

/* =====================================================
   ABOUT
===================================================== */

.ba-about{
  padding:120px 0;
}

.ba-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.ba-about-text h2{
  font-size:26px;
  margin-bottom:30px;
}

.ba-about-text p{
  margin:0 0 20px;
  font-size:16px;
  color:#444;
}

.ba-about-image img{
  width:100%;
  border-radius:6px;
}

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

.ba-process-pro{
  padding:100px 0;
  background:var(--light);
}

.ba-process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
  margin-top:50px;
}

.ba-process-number{
  font-size:12px;
  letter-spacing:.25em;
  color:var(--brand);
  margin-bottom:14px;
}

.ba-process-item h3{
  font-size:18px;
  margin:0 0 16px;
  font-weight:600;
}

.ba-process-item p{
  font-size:15px;
  color:#444;
}

/* =====================================================
   LOCAL SEO
===================================================== */

.ba-local-seo{
  padding:90px 0;
}

.ba-local-seo h2{
  font-size:24px;
  margin-bottom:24px;
  font-weight:600;
}

.ba-local-seo p{
  font-size:16px;
  color:#444;
}

.ba-local-seo a{
  color:var(--brand);
  text-decoration:none;
}

.ba-local-seo a:hover{
  text-decoration:underline;
}

/* =====================================================
   CTA FINAL
===================================================== */

.ba-cta{
  padding:110px 0 120px;
}

.ba-eyebrow-light{
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:18px;
  display:inline-block;
}

.ba-cta h2{
  font-size:clamp(24px,3vw,36px);
  font-weight:600;
  max-width:760px;
  margin:0 auto 36px;
  line-height:1.3;
}

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

@media(max-width:1024px){
  .ba-hero-grid,
  .ba-about-grid,
  .ba-grid-2,
  .ba-process-grid{
    grid-template-columns:1fr;
  }

  .ba-hero{
    padding:90px 0 60px;
  }

  .ba-process-grid{
    gap:40px;
  }
}

@media(max-width:600px){
  .ba-container{ padding:0 18px; }

  .ba-editorial,
  .ba-services,
  .ba-about,
  .ba-process-pro,
  .ba-local-seo,
  .ba-cta{
    padding:70px 0;
  }
}
/* ==============================
   STUDIO / SOFTWARE
============================== */

.ba-studio{
  padding:90px 20px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.ba-studio-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.ba-studio h2{
  font-size:32px;
  margin:0 0 18px;
}

.ba-studio p{
  font-size:17px;
  line-height:1.7;
  color:#666;
  max-width:520px;
}

.ba-studio img{
  max-width:420px;
  width:100%;
  height:auto;
  display:block;
}

@media(max-width:900px){
  .ba-studio-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  .ba-studio img{
    max-width:300px;
  }
}
/* ==============================
   STUDIO · SOFTWARE
============================== */

.ba-studio{
  padding:100px 20px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.ba-studio-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:70px;
  align-items:center;
}

.ba-studio h2{
  font-size:34px;
  margin:0 0 18px;
}

.ba-studio p{
  font-size:17px;
  line-height:1.7;
  color:#666;
  max-width:540px;
}

.ba-tools-visual{
  display:flex;
  flex-direction:column;
  gap:30px;
  align-items:center;
}

.ba-tools-visual img{
  max-width:380px;
  width:100%;
  height:auto;
  display:block;
}

.ba-tools-caption{
  font-size:14px;
  color:#777;
  text-align:center;
}

@media(max-width:900px){
  .ba-studio-grid{
    grid-template-columns:1fr;
    gap:50px;
  }
  .ba-tools-visual img{
    max-width:300px;
  }
}/* End custom CSS */