/* =========================================================
   01. VARIABLES GLOBALES
   ========================================================= */
:root{
  --font-heading:"Inter", sans-serif;
  --font-body:"Inter", sans-serif;

  --bg:#faf7f2;
  --bg-alt:#eee5da;
  --white:#ffffff;

  --navy:#0f1a24;
  --coffee:#2b1f18;
  --coffee-soft:#6d5b4d;
  --micro:#9a8878;
  --gold:#c9a86a;
  --gold-dark:#b79254;
  --success:#1f7a52;
  --danger:#b94a48;

  --line:rgba(43,31,24,.12);
  --line-soft:rgba(0,0,0,.08);

  --maxw-mobile:430px;
  --sticky-cta-height:68px;
  --bottom-h:var(--sticky-cta-height);

  --shadow-card:0 6px 18px rgba(0,0,0,.06);
  --shadow-soft:0 16px 40px rgba(0,0,0,.08);

  --content-max:1100px;
  --content-step-max:360px;
}

/* =========================================================
   02. RESET Y BASE
   ========================================================= */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-bottom:calc(var(--sticky-cta-height) + env(safe-area-inset-bottom) + 20px);
  overflow-x:hidden;
}

body{
  margin:0;
  min-height:100vh;
  padding-bottom:calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
  font-family:var(--font-body);
  background:#e8dfd6;
  color:var(--coffee);
  overflow-x:hidden;
}

@media (min-width:769px) and (max-width:1099px){
  .included-section{
    padding:68px 28px 70px;
  }

  .included-section__header{
    margin-bottom:38px;
  }

  .included-section__header h2{
    font-size:38px;
  }

  .included-section__header p{
    font-size:17px;
  }

  .benefits-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:40px;
    row-gap:30px;
  }

  .benefit-item{
    grid-template-columns:42px minmax(0, 1fr);
    gap:16px;
  }

  .benefit-icon{
    width:42px;
    height:42px;
  }

  .benefit-icon svg{
    width:21px;
    height:21px;
  }
}

@media (max-width:768px){
  :root{
    --sticky-cta-height:76px;
  }
}

body.modal-open{
  overflow:hidden;
  height:100vh;
  overscroll-behavior:none;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font-family:var(--font-body);
}

button{
  -webkit-tap-highlight-color:transparent;
}

.feature-icon{
  stroke:currentColor;
  fill:none;
}

/* =========================================================
   03. APP PRINCIPAL
   ========================================================= */
.app{
  position:relative;
  width:100%;
  max-width:var(--maxw-mobile);
  min-height:100vh;
  margin:0 auto;
  padding-bottom:20px;
  background:var(--bg);
  overflow:hidden;
}

/* =========================================================
   04. OVERLAY INICIAL
   ========================================================= */
.entry-overlay{
  position:fixed;
  inset:0;
  z-index:1200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(15,26,36,.28);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  animation:overlayFadeIn .35s ease;
  transition:opacity .3s ease, visibility .3s ease;
}

.entry-overlay.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.entry-card{
  width:min(100%, 380px);
  padding:18px 24px 26px;
  text-align:center;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,26,36,.08);
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
  animation:overlayCardIn .45s cubic-bezier(.22,1,.36,1);
  transform-origin:center;
}

.entry-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:4px;
  animation:overlayItemIn .45s cubic-bezier(.22,1,.36,1) .05s both;
}

.brand-logo{
  display:block;
  width:250px;
  height:auto;
  margin:0 auto;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.15));
}

.entry-title{
  margin:2px 0 4px !important;
  color:#2b1f18;
  font-size:28px;
  font-weight:700;
  line-height:1.08;
  text-align:center;
  text-wrap:balance;
  animation:overlayItemIn .45s cubic-bezier(.22,1,.36,1) .1s both;
}

.entry-sub{
  margin:0 0 18px;
  color:#6d5b4d;
  font-size:14px;
  line-height:1.6;
  text-align:center;
  opacity:.75;
  animation:overlayItemIn .45s cubic-bezier(.22,1,.36,1) .15s both;
}

.entry-options,
.wizard-options{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:stretch;
}

.entry-option,
.wizard-option{
  appearance:none;
  width:100%;
  padding:16px;
  cursor:pointer;
  border-radius:18px;
  transition:.2s ease;
}

.entry-option{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:22px;
  text-align:center;
  background:linear-gradient(135deg, #c9a86a 0%, #d4b576 40%, #c9a86a 100%);
  border:none;
  box-shadow:
    0 10px 26px rgba(0,0,0,.15),
    0 6px 14px rgba(201,168,106,.25),
    inset 0 1px 0 rgba(255,255,255,.3);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.entry-option:first-child{
  transform:scale(1.02);
}

.entry-option:hover{
  transform:translateY(-4px) scale(1.01);
  background:linear-gradient(135deg, #b79254 0%, #c9a86a 100%);
  box-shadow:
    0 18px 36px rgba(0,0,0,.2),
    0 8px 18px rgba(201,168,106,.35);
}

.entry-option:active{
  transform:scale(.97);
  box-shadow:0 6px 16px rgba(201,168,106,.25);
}

.wizard-option{
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:86px;
}

.wizard-option:hover{
  background:rgba(255,255,255,.95);
  border-color:rgba(201,168,106,.55);
}

.wizard-option.selected{
  background:#fffaf2;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,168,106,.14);
  transform:translateY(-1px);
}

.wizard-option:disabled{
  cursor:default;
}

.entry-option-title,
.wizard-option-title{
  display:block;
  margin-bottom:4px;
  font-weight:600;
}

.entry-option-title{
  color:#1a140f;
  font-size:18px;
  text-align:center;
}

.entry-option-sub{
  display:block;
  margin-top:6px;
  color:#1a140f;
  font-size:13px;
  line-height:1.45;
  text-align:center;
  opacity:.65;
}

.wizard-option-title{
  color:var(--coffee);
  font-size:16px;
  text-align:center;
}

.wizard-option-sub{
  color:var(--coffee-soft);
  font-size:13px;
  line-height:1.45;
  text-align:center;
}

.wizard-number-card{
  padding:16px;
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
}

.wizard-number-label{
  margin-bottom:12px;
  color:var(--coffee);
  font-size:15px;
  font-weight:600;
}

.wizard-number-control{
  display:grid;
  grid-template-columns:44px minmax(0, 1fr) 44px;
  align-items:center;
  gap:10px;
}

.wizard-number-btn{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(201,168,106,.55);
  border-radius:999px;
  background:#fffaf5;
  color:var(--coffee);
  cursor:pointer;
  font-size:24px;
  line-height:1;
  text-align:center;
}

.wizard-number-value{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  padding:0 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#faf7f3;
  color:var(--coffee);
  font-weight:700;
}

.wizard-number-input{
  width:88px;
  min-width:0;
  border:0;
  background:transparent;
  color:var(--coffee);
  font:inherit;
  text-align:center;
  outline:none;
}

.wizard-number-help{
  margin-top:10px;
  color:var(--coffee-soft);
  font-size:13px;
  line-height:1.45;
}

.wizard-number-help:empty{
  display:none;
}

.wizard-number-help.dynamic{
  margin-top:4px;
  color:#8a6b3d;
  font-weight:600;
}

/* =========================================================
   05. SELECTOR SUPERIOR
   ========================================================= */
.selector-block{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:5px 16px;
  background:var(--bg);
}

.toggle{
  display:grid;
  grid-template-columns:repeat(2, auto);
  justify-content:center;
  gap:8px;
  width:100%;
}

.toggle-btn{
  appearance:none;
  min-width:138px;
  min-height:38px;
  padding:9px 16px;
  text-align:center;
  cursor:pointer;
  background:transparent;
  border:1px solid rgba(15,26,36,.10);
  border-radius:999px;
  color:var(--navy);
  font-size:13px;
  font-weight:500;
  transition:.2s ease;
}

.toggle-btn.active{
  background:rgba(201,168,106,.10);
  border-color:rgba(201,168,106,.58);
  color:var(--coffee);
  box-shadow:inset 0 0 0 1px rgba(201,168,106,.18);
}

/* =========================================================
   06. HERO
   ========================================================= */
.hero{
  position:relative;
  height:65svh;
  min-height:480px;
  max-height:560px;
  background:#ddd;
  overflow:hidden;
}

.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:66% center;
  filter:saturate(.94) contrast(.98);
}

.hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.66) 0%,
    rgba(0,0,0,.44) 24%,
    rgba(0,0,0,.22) 46%,
    rgba(0,0,0,.05) 68%,
    rgba(0,0,0,0) 82%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  height:100%;
  max-width:100%;
  padding:12px 22px 24px;
  color:var(--white);
}

.hero-title{
  max-width:100%;
  margin:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#fff;
  font-size:31px;
  font-weight:700;
  line-height:.95;
  letter-spacing:0;
  text-wrap:nowrap;
}

.hero-subtitle{
  margin:8px 0 0;
  max-width:clamp(240px, 60%, 480px);
  color:rgba(255,255,255,.95);
  font-size:15px;
  line-height:1.5;
}

.hero-support{
  margin-top:auto;
  max-width:300px;
  color:rgba(255,255,255,.76);
  font-size:13px;
  line-height:1.65;
  text-wrap:balance;
}

/* =========================================================
   07. SECCIONES BASE
   ========================================================= */
.section{
  padding:52px 22px;
  background:var(--bg);
}

.section.alt{
  background:#ede4d8;
}

.section.white{
  background:var(--white);
}

.section h2{
  margin:0 0 12px;
  color:var(--coffee);
  font-size:32px;
  font-weight:700;
  line-height:1.02;
  text-wrap:balance;
}

.sub{
  max-width:360px;
  margin:0 0 8px;
  color:var(--coffee-soft);
  font-size:15px;
  line-height:1.65;
}

.step-label{
  margin:-20px 0 6px;
  color:var(--micro);
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.no-bottom-space{
  padding-bottom:0;
}

/* =========================================================
   08. FRANJAS FULL WIDTH
   ========================================================= */
.machines-strip,
.clients-strip-full{
  position:relative;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
}

.machines-section{
  text-align:center;
  background:#f8f4ee;
}

.machines-section.no-bottom-space{
  padding-bottom:48px;
}

.machines-section .sub{
  max-width:560px;
  margin:0 auto 8px;
}

.machines-strip{
  margin-top:20px;
  background:inherit;
}

.clients-strip-full{
  margin-top:0;
  background:var(--bg-alt);
}

.logo-strip-section{
  background:#eee5da;
  padding:20px 0;
  border-top:1px solid rgba(43,31,24,.06);
  border-bottom:1px solid rgba(43,31,24,.06);
}

.machines-strip-inner,
.clients-strip-inner{
  overflow:hidden;
}

.machines-strip-inner{
  padding:0;
  background:inherit;
}

.clients-strip-inner{
  padding:0;
  background:transparent;
}

/* =========================================================
   09. LOGOS Y CARRUSELES
   ========================================================= */
.logo-track{
  display:flex;
  align-items:center;
  width:max-content;
}

/* =========================================================
   10. TODO INCLUIDO
   ========================================================= */
.included-section{
  padding:56px 22px;
  background:#faf7f2;
}

.included-section__inner{
  width:min(100%, 1120px);
  margin:0 auto;
}

.included-section__header{
  max-width:720px;
  margin:0 auto 34px;
  text-align:center;
}

.included-section__header h2{
  max-width:620px;
  margin:0 auto 12px;
  color:var(--coffee);
  font-size:30px;
  font-weight:700;
  line-height:1.06;
  text-wrap:balance;
}

.included-section__header p{
  max-width:640px;
  margin:0 auto;
  color:var(--coffee-soft);
  font-size:15px;
  line-height:1.45;
  text-wrap:balance;
}

.benefits-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  width:100%;
  margin:0;
  padding:0;
  list-style:none;
}

.benefit-item{
  display:grid;
  grid-template-columns:40px minmax(0, 1fr);
  align-items:start;
  gap:14px;
  min-width:0;
}

.benefit-icon{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  color:var(--gold);
  background:rgba(201,168,106,.10);
  border:1px solid rgba(201,168,106,.20);
  border-radius:50%;
}

.benefit-icon svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.benefit-content{
  min-width:0;
}

.benefit-content h3{
  margin:0 0 5px;
  color:var(--coffee);
  font-size:20px;
  font-weight:700;
  line-height:1.18;
  text-wrap:balance;
}

.benefit-content p{
  max-width:520px;
  margin:0;
  color:var(--coffee-soft);
  font-size:15px;
  line-height:1.45;
}

.recommendation-section{
  padding:54px 24px 60px;
  text-align:center;
  background:#eee5da;
}

.recommendation-section > h2{
  max-width:760px;
  margin:0 auto 10px;
  color:var(--coffee);
  font-size:32px;
  line-height:1.08;
  text-wrap:balance;
}

.recommendation-section > .recommendation-sub{
  max-width:620px;
  margin:0 auto 26px;
  color:var(--coffee-soft);
  font-size:16px;
  line-height:1.55;
  text-wrap:balance;
}

.recommendation-card{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:14px;
  width:min(100%, 860px);
  margin:0 auto;
  padding:22px;
  color:inherit;
  text-align:left;
  background:#fff;
  border:1px solid rgba(201,168,106,.24);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(43,31,24,.06);
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.recommendation-card:hover{
  border-color:rgba(201,168,106,.5);
  box-shadow:0 18px 42px rgba(43,31,24,.1);
  transform:translateY(-3px);
}

.recommendation-card:active{
  transform:translateY(-1px);
}

.recommendation-card__icon{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  color:var(--gold);
  background:rgba(201,168,106,.12);
  border:1px solid rgba(201,168,106,.26);
  border-radius:999px;
}

.recommendation-card__icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.recommendation-card__content{
  display:grid;
  gap:5px;
  min-width:0;
}

.recommendation-card__eyebrow{
  color:var(--coffee);
  font-size:15px;
  font-weight:700;
  line-height:1.2;
}

.recommendation-card__text{
  color:var(--coffee-soft);
  font-size:15px;
  line-height:1.45;
}

.recommendation-card__arrow{
  color:var(--gold);
  font-size:22px;
  line-height:1;
  transition:transform .2s ease;
}

.recommendation-card:hover .recommendation-card__arrow{
  transform:translateX(4px);
}

.trust-section{
  padding-top:58px;
  padding-bottom:34px;
  background:#faf7f2;
}

.trust-section > h2,
.trust-section > .sub{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.feature{
  display:grid;
  grid-template-columns:26px 1fr;
  gap:14px;
  align-items:flex-start;
}

.feature-icon{
  width:20px;
  height:20px;
  margin-top:2px;
  color:var(--navy);
}

.feature-title{
  margin:0 0 4px;
  color:var(--coffee);
  font-size:18px;
  font-weight:700;
}

.feature-text{
  margin:0;
  color:var(--coffee-soft);
  font-size:14px;
  line-height:1.65;
}

/* =========================================================
   11. MÁQUINAS
   ========================================================= */
.machines-row{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  width:min(100%, 390px);
  margin:0 auto;
}

.machines-row:not(.is-expanded) .machine-card[data-mobile-extra="true"]{
  display:none;
}

.machine-card{
  display:grid;
  grid-template-columns:104px minmax(0, 1fr);
  align-items:center;
  gap:16px;
  width:100%;
  min-height:132px;
  padding:14px 18px;
  text-align:left;
  text-decoration:none;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(201,168,106,.20);
  border-radius:18px;
  box-shadow:0 16px 42px rgba(43,31,24,.06);
}

.machine-media{
  display:flex;
  align-items:center;
  justify-content:center;
  width:104px;
  height:104px;
  min-width:0;
  aspect-ratio:auto;
  margin:0;
  overflow:hidden;
  grid-row:1 / span 2;
}

.machine-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.machine-name{
  min-width:0;
  margin:0 0 3px;
  color:var(--coffee);
  font-size:16px;
  font-weight:700;
  line-height:1.18;
}

.machine-tag{
  min-width:0;
  color:var(--coffee-soft);
  font-size:13px;
  line-height:1.25;
}

.machines-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  margin:20px auto 0;
  padding:0 22px;
  color:var(--coffee);
  font:700 14px/1 var(--font-body);
  background:rgba(255,255,255,.58);
  border:1px solid rgba(201,168,106,.45);
  border-radius:999px;
  cursor:pointer;
}

.machines-toggle:hover{
  background:rgba(201,168,106,.24);
}

/* =========================================================
   12. MÉTRICAS
   ========================================================= */
.stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin:18px 0 8px;
}

.stat{
  display:flex;
  flex-direction:column;
  justify-content:center;
  width:100%;
  min-width:0;
  min-height:104px;
  padding:14px 10px;
  text-align:center;
  background:rgba(255,255,255,.42);
  border:1px solid var(--line);
  border-radius:20px;
}

.stat strong{
  display:block;
  margin-bottom:6px;
  color:var(--coffee);
  font-size:17px;
  font-weight:700;
  line-height:1.08;
}

.stat span{
  display:block;
  max-width:none;
  color:var(--coffee-soft);
  font-size:11.5px;
  line-height:1.4;
}

/* =========================================================
   13. LOGOS
   ========================================================= */
.logo-track{
  gap:32px;
  animation:scrollLogos 24s linear infinite;
}

.logo-track img{
  width:auto;
  height:40px;
  object-fit:contain;
  background:transparent;
  opacity:1;
  filter:grayscale(100%) contrast(1);
}

/* =========================================================
   14. CONTACTO
   ========================================================= */
.contact-section{
  padding-top:58px;
  padding-bottom:62px;
  background:#faf7f2;
  text-align:center;
}

.contact-panel{
  display:grid;
  gap:20px;
  width:min(100%, 720px);
  margin:0 auto;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.contact-copy{
  text-align:center;
}

.contact-copy h2{
  max-width:560px;
  margin:0 auto 12px;
}

.contact-copy .sub{
  max-width:560px;
  margin:0 auto;
}

.contact-actions{
  display:grid;
  gap:12px;
  width:min(100%, 520px);
  margin:8px auto 2px;
}

.contact-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  line-height:1;
  text-align:center;
  transition:.2s ease;
}

.contact-action.primary{
  background:var(--gold);
  color:#1a140f;
  box-shadow:0 8px 20px rgba(201,168,106,.18);
}

.contact-action.secondary{
  background:#fffaf5;
  border:1px solid rgba(201,168,106,.45);
  color:var(--coffee);
}

.contact-action:hover{
  transform:translateY(-1px);
}

.contact-grid{
  display:grid;
  gap:8px;
  margin-top:12px;
  text-align:center;
}

.contact-item{
  padding:0;
  text-align:center;
}

.contact-item strong{
  display:none;
  margin-bottom:0;
  color:var(--coffee);
  font-size:13px;
  font-weight:600;
  opacity:.6;
}

.contact-item span{
  display:block;
  color:var(--coffee-soft);
  font-size:13px;
  line-height:1.45;
}

/* =========================================================
   15. CIERRE VISUAL
   ========================================================= */
.brand-end{
  width:100%;
  height:76px;
  overflow:hidden;
  background:var(--bg);
  margin-bottom:0;
}

.brand-end img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

/* =========================================================
   16. FLOW
   ========================================================= */
.flow{
  display:block;
}

/* =========================================================
   17. CTA FIJO
   ========================================================= */
.bottom-bar{
  position:fixed;
  left:50%;
  bottom:0;
  z-index:900;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:var(--maxw-mobile);
  min-height:var(--sticky-cta-height);
  height:calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
  padding:8px 16px calc(8px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.94);
  border-top:1px solid rgba(43,31,24,.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transform:translateX(-50%);
}

.bottom-cta{
  appearance:none;
  width:100%;
  max-width:320px;
  min-height:52px;
  padding:0 18px;
  cursor:pointer;
  background:var(--gold);
  border:0;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  color:#1a140f;
  font-size:15px;
  font-weight:600;
  letter-spacing:.2px;
  transition:.2s ease;
}

.bottom-cta:hover{
  background:var(--gold-dark);
  color:#fff;
}

/* =========================================================
   18. MODAL RECOMENDACIÓN
   ========================================================= */
.recommendation-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  background:rgba(15,26,36,.45);
  backdrop-filter:blur(12px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
}

.recommendation-modal.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.recommendation-sheet{
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:var(--maxw-mobile);
  min-height:auto;
  height:min(100dvh, 820px);
  max-height:100dvh;
  background:var(--bg);
  transform:translateY(18px);
  transition:.25s ease;
}

.recommendation-modal.open .recommendation-sheet{
  transform:translateY(0);
}

.recommendation-top{
  flex:0 0 auto;
  padding:14px 18px 0;
  background:rgba(255,255,255,.72);
  border-bottom:1px solid var(--line-soft);
  backdrop-filter:blur(8px);
}

.recommendation-top-row{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
  min-height:48px;
  margin-bottom:0;
}

.recommendation-top-row > strong{
  grid-column:2;
  text-align:center;
}

.recommendation-close{
  grid-column:3;
  justify-self:end;
  appearance:none;
  padding:4px;
  cursor:pointer;
  background:transparent;
  border:0;
  color:var(--navy);
  font-size:20px;
  line-height:1;
}

.wizard-progress{
  width:100%;
  height:3px;
  overflow:hidden;
  background:rgba(201,168,106,.16);
}

.wizard-progress-bar{
  width:0;
  height:100%;
  background:linear-gradient(90deg, rgba(201,168,106,.75), var(--gold));
  border-radius:999px;
  transition:width .22s ease;
}

.recommendation-body{
  display:flex;
  flex:1;
  min-height:0;
  padding:22px 22px 22px;
  overflow:auto;
}

.recommendation-step{
  display:none;
}

.recommendation-step.active{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  width:100%;
  max-width:760px;
  margin:0 auto;
}

.recommendation-kicker{
  margin:-4px auto 9px;
  color:var(--micro);
  font-size:12px;
  letter-spacing:.8px;
  text-align:center;
  text-transform:uppercase;
}

.recommendation-title{
  max-width:320px;
  margin:0 auto 10px;
  color:var(--coffee);
  font-size:28px;
  font-weight:700;
  line-height:1.08;
  text-align:center;
  text-wrap:balance;
}

.recommendation-step .recommendation-sub{
  max-width:340px;
  margin:0 auto 18px;
  color:var(--coffee-soft);
  font-size:15px;
  line-height:1.5;
  text-align:center;
  text-wrap:balance;
}

.recommendation-kicker:empty,
.recommendation-title:empty,
.recommendation-step .recommendation-sub:empty{
  display:none;
}

.wizard-form{
  display:grid;
  gap:14px;
}

.wizard-field{
  display:grid;
  gap:6px;
}

.wizard-label{
  color:var(--coffee);
  font-size:13px;
  font-weight:600;
}

.wizard-input{
  width:100%;
  padding:14px;
  outline:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  color:var(--coffee);
  font-size:15px;
}

.wizard-input:focus{
  border-color:rgba(201,168,106,.75);
  box-shadow:0 0 0 3px rgba(201,168,106,.12);
}

.wizard-error{
  display:none;
  margin-top:12px;
  color:var(--danger);
  font-size:13px;
  line-height:1.5;
}

.wizard-error:not(:empty){
  display:block;
}

.wizard-success{
  padding:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
}

.wizard-success-mark{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  margin-bottom:14px;
  background:rgba(31,122,82,.10);
  border-radius:50%;
  color:var(--success);
  font-size:22px;
}

.recommendation-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px 18px;
  background:rgba(255,255,255,.92);
  border-top:1px solid var(--line-soft);
}

.recommendation-btn{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 16px;
  cursor:pointer;
  border:0;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
  line-height:1.15;
  text-align:center;
  transition:.2s ease;
}

.recommendation-btn.secondary{
  flex:0 0 auto;
  min-width:120px;
  background:transparent;
  border:1px solid var(--line);
  color:var(--coffee);
}

.recommendation-btn.primary{
  flex:1;
  background:var(--gold);
  color:#1a140f;
}

.recommendation-btn.primary:hover{
  background:var(--gold-dark);
  color:#fff;
}

.recommendation-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

/* =========================================================
   19. ANIMACIONES
   ========================================================= */
@keyframes scrollMachines{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@keyframes scrollLogos{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* =========================================================
   20. DESKTOP
   ========================================================= */
@media (min-width:1100px){
  :root{
    --sticky-cta-height:68px;
  }

  .recommendation-modal{
    align-items:center;
    padding:36px;
  }

  .recommendation-sheet,
  .recommendation-modal.open .recommendation-sheet{
    width:min(100%, 860px);
    height:min(82vh, 780px);
    min-height:620px;
    max-height:780px;
    border:1px solid rgba(43,31,24,.12);
    border-radius:0;
    transform:none;
    box-shadow:0 28px 72px rgba(15,26,36,.18);
  }

  .recommendation-body{
    padding:24px 44px 34px;
  }

  .recommendation-step.active{
    max-width:720px;
  }

  .app{
    width:100%;
    max-width:none;
    margin:0;
    padding-bottom:20px;
  }

  .entry-card{
    width:min(100%, 430px);
    padding:34px 26px 24px;
  }

  .entry-title{
    font-size:38px;
  }

  .entry-sub{
    font-size:15px;
  }

 .selector-block{
  min-height:48px;
  padding:6px 72px;
}

.toggle-btn{
  min-width:170px;
  min-height:36px;
  padding:8px 18px;
  font-size:14px;
}

  .hero{
    height:82vh;
    min-height:680px;
    max-height:920px;
  }

  .hero-image{
    object-position:62% center;
  }

  .hero-content{
    padding:28px 72px 44px;
  }

  .hero-title{
    font-size:64px;
    line-height:.9;
    letter-spacing:0;
  }

  .hero-subtitle{
    max-width:420px;
    margin-top:10px;
    font-size:20px;
    line-height:1.62;
  }

  .hero-support{
    max-width:460px;
    color:rgba(255,255,255,.74);
    font-size:16px;
    line-height:1.72;
  }

  .section{
    padding:78px 72px;
  }

  .section > *{
    max-width:var(--content-max);
    margin-left:auto;
    margin-right:auto;
  }

  .section h2,
  .sub{
    text-align:left;
  }

  .section h2{
    max-width:900px;
    font-size:56px;
  }

  .sub{
    max-width:860px;
    font-size:17px;
  }

  .step-label{
    margin:-24px 0 8px;
  }

  .steps-desktop-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:0;
    align-items:start;
    max-width:var(--content-max);
    margin:0 auto 48px;
    background:#f1ebe5;
    border-radius:28px;
    overflow:hidden;
  }

  .steps-desktop-grid .section{
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width:none;
    margin:0;
    padding:40px 28px;
    background:transparent;
  }

  .steps-desktop-grid .section.alt{
    background:transparent;
  }

  .steps-desktop-grid .section:nth-child(2){
    background:rgba(201,168,106,.08);
  }

  .steps-desktop-grid .section:not(:last-child){
    border-right:1px solid rgba(0,0,0,.06);
  }

  .steps-desktop-grid .section > *{
    width:100%;
    max-width:var(--content-step-max);
    margin-left:0;
    margin-right:0;
  }

  .steps-desktop-grid h2,
  .steps-desktop-grid .sub,
  .steps-desktop-grid .step-label{
    text-align:center;
  }

  .steps-desktop-grid h2{
    max-width:100%;
    font-size:36px;
  }

  .steps-desktop-grid .sub{
    max-width:100%;
    font-size:16px;
  }

  .steps-desktop-grid .step-label{
    margin:-10px 0 8px;
  }

  .included-section{
    padding:82px 32px 84px;
  }

  .included-section__header{
    margin-bottom:44px;
  }

  .included-section__header h2{
    max-width:760px;
    margin-bottom:14px;
    font-size:44px;
  }

  .included-section__header p{
    font-size:18px;
  }

  .benefits-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:64px;
    row-gap:36px;
  }

  .benefit-item{
    grid-template-columns:44px minmax(0, 1fr);
    gap:18px;
  }

  .benefit-icon{
    width:44px;
    height:44px;
  }

  .benefit-icon svg{
    width:22px;
    height:22px;
  }

  .benefit-content h3{
    margin-bottom:7px;
    font-size:22px;
  }

  .benefit-content p{
    font-size:16px;
    line-height:1.5;
  }

  .recommendation-section{
    padding:72px 40px 76px;
  }

  .recommendation-section > h2{
    margin-bottom:14px;
    font-size:42px;
  }

  .recommendation-section > .recommendation-sub{
    margin-bottom:32px;
    font-size:17px;
  }

  .recommendation-card{
    gap:22px;
    width:min(100%, 900px);
    max-width:900px;
    padding:28px 32px;
  }

  .recommendation-card__icon{
    width:44px;
    height:44px;
  }

  .recommendation-card__eyebrow{
    font-size:15px;
  }

  .recommendation-card__text{
    font-size:16px;
    line-height:1.45;
  }

  .recommendation-card__arrow{
    font-size:20px;
  }

  .trust-section{
    padding-top:58px;
    padding-bottom:30px;
  }

  .feature{
    gap:18px;
  }

  .feature-icon{
    width:22px;
    height:22px;
  }

  .feature-title{
    font-size:22px;
  }

  .feature-text{
    font-size:16px;
    line-height:1.7;
  }

  .machines-strip{
    left:auto;
    width:100%;
    transform:none;
    margin-top:24px;
  }

  .machines-strip-inner{
    padding:0;
    overflow:visible;
  }

  .machines-row{
    display:grid;
    grid-template-columns:repeat(3, minmax(220px, 1fr));
    gap:16px 22px;
    align-items:start;
    justify-content:center;
    width:100%;
    max-width:1120px;
    margin:0 auto;
    padding-left:0;
    animation:none;
  }

  .machines-row:not(.is-expanded) .machine-card[data-mobile-extra="true"]{
    display:block;
  }

  .machine-card{
    display:block;
    max-width:290px;
    min-height:304px;
    width:100%;
    margin:0 auto;
    padding:16px 16px 14px;
    text-align:center;
  }

  .machine-media{
    width:100%;
    height:auto;
    min-height:218px;
    max-height:250px;
    aspect-ratio:4 / 5;
    margin:0 auto 8px;
    grid-row:auto;
  }

  .machine-media img{
    width:92%;
    height:92%;
    transform:scale(1.04);
  }

  .machine-name{
    font-size:17px;
    margin-bottom:2px;
  }

  .machine-tag{
    font-size:14px;
  }

  .machines-toggle{
    display:none;
  }

  .stats{
    gap:16px;
    max-width:900px;
    margin:20px auto 0;
  }

  .stat{
    min-height:116px;
    padding:18px 18px;
    border-radius:22px;
  }

  .stat strong{
    margin-bottom:6px;
    font-size:28px;
  }

  .stat span{
    max-width:170px;
    font-size:15px;
    line-height:1.5;
  }

  .clients-strip-inner{
    padding:0;
  }

  .logo-track{
    gap:52px;
  }

  .logo-track img{
    height:52px;
  }

  .contact-section{
    padding-top:54px;
    padding-bottom:52px;
  }

  .contact-panel{
    width:min(100%, 980px);
    grid-template-columns:minmax(0, 1fr) 320px;
    align-items:center;
    gap:24px 64px;
    padding:0;
  }

  .contact-copy{
    text-align:left;
  }

  .contact-copy h2,
  .contact-copy .sub{
    margin-left:0;
    margin-right:0;
    text-align:left;
  }

  .contact-copy .sub{
    margin-bottom:0;
  }

  .contact-actions{
    grid-template-columns:1fr;
    gap:12px;
    min-width:0;
    width:100%;
    margin:0;
  }

  .contact-grid{
    grid-column:1 / -1;
    grid-template-columns:repeat(3, minmax(0, auto));
    justify-content:center;
    gap:10px 22px;
    max-width:var(--content-max);
    margin-top:4px;
  }

  .contact-item{
    padding:0;
  }

  .contact-item strong{
    font-size:14px;
  }

  .contact-item span{
    font-size:16px;
  }


  .recommendation-modal{
  align-items:center;
  justify-content:center;
  padding:24px;
}

.recommendation-sheet{
  max-width:860px;
  min-height:auto;
  height:min(82vh, 780px);
  min-height:620px;
  max-height:780px;
  margin:0;
  overflow:hidden;
  border-radius:0;
  transform:none;
}

.recommendation-modal.open .recommendation-sheet{
  transform:none;
}

.recommendation-top{
  padding:14px 24px 0;
}

.recommendation-body{
  padding:24px 44px 34px;
  overflow:auto;
}

.recommendation-kicker{
  margin:0 auto 9px;
}

.recommendation-title{
  max-width:560px;
  font-size:42px;
}

.recommendation-step .recommendation-sub{
  max-width:600px;
  font-size:17px;
}

  .wizard-options{
    gap:14px;
  }

  .wizard-option{
    padding:18px 20px;
    border-radius:20px;
  }

  .wizard-option-title{
    font-size:18px;
  }

  .wizard-option-sub{
    font-size:14px;
  }

  .wizard-form{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }

  .wizard-field:last-child:nth-child(odd){
    grid-column:1 / -1;
  }

  .wizard-input{
    padding:15px 16px;
    font-size:16px;
  }

  .recommendation-actions{
    padding:18px 24px 24px;
  }

  .recommendation-btn{
    padding:16px 18px;
    font-size:16px;
  }
}

/* =========================================================
   21. ACCESIBILIDAD
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .logo-track,
  .machines-row{
    animation:none;
  }

  .entry-overlay,
  .recommendation-modal,
  .recommendation-sheet,
  .recommendation-card,
  .recommendation-card__arrow{
    transition:none;
  }
}

.toggle-btn:focus-visible,
.machines-toggle:focus-visible,
.faq-toggle:focus-visible,
.faq-item summary:focus-visible,
.contact-action:focus-visible,
.recommendation-card:focus-visible,
.entry-option:focus-visible,
.bottom-cta:focus-visible,
.recommendation-btn:focus-visible,
.recommendation-close:focus-visible,
.wizard-option:focus-visible,
.wizard-input:focus-visible{
  outline:2px solid rgba(201,168,106,.9);
  outline-offset:2px;
}
/* =========================================================
   ENDING IMAGE - SIN ZOOM (ALTURA FIJA)
   ========================================================= */
@media (min-width:1100px){

  .brand-end{
    height:112px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
  }

  .brand-end img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
  }

}
/* =========================================================
   CTA ANIMADO SOLO CSS
   ========================================================= */

.bottom-cta{
  position:relative;
  z-index:1;
  animation:none;
}

/* pulso suave */
@keyframes ctaPulse{
  0%,100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.03);
  }
}

/* halo suave */
.bottom-cta::after{
  content:none;
  position:absolute;
  inset:-6px;
  border-radius:inherit;
  background:rgba(201,168,106,.25);
  z-index:-1;
  opacity:0;
  animation:ctaGlow 2.4s ease-in-out infinite;
}

@keyframes ctaGlow{
  0%,100%{
    opacity:0;
    transform:scale(1);
  }
  50%{
    opacity:.5;
    transform:scale(1.08);
  }
}

/* UX: al interactuar se detiene */
.bottom-cta:hover,
.bottom-cta:active{
  animation:none;
}

.bottom-cta:hover::after,
.bottom-cta:active::after{
  animation:none;
  opacity:0;
}
/* =========================================================
   BOTTOM BAR PREMIUM (DESKTOP)
   ========================================================= */
@media (min-width:1100px){

  .bottom-bar{
    position:fixed;
    bottom:0;
    left:0;
    right:auto;
    width:100%;
    max-width:none;
    height:calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));

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

    min-height:var(--sticky-cta-height);
    padding:8px 24px calc(8px + env(safe-area-inset-bottom));

    background:rgba(255,255,255,.94);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-top:1px solid rgba(0,0,0,.05);
    box-shadow:0 -6px 24px rgba(0,0,0,.06);

    transform:none;
    z-index:900;
  }

  .bottom-cta{
    width:auto;
    min-width:280px;
    max-width:320px;
    height:52px;
    padding:0 30px;

    font-size:16px;
    font-weight:600;

    border-radius:16px;
    border:none;
    cursor:pointer;

    background:var(--gold);
    color:#1a140f;

    transition:all .25s ease;

    box-shadow:0 8px 20px rgba(201,168,106,.22);
  }

  /* hover elegante */
  .bottom-cta:hover{
    transform:translateY(-1px);
    color:#fff;
    box-shadow:0 10px 24px rgba(201,168,106,.28);
  }

  /* click */
  .bottom-cta:active{
    transform:translateY(0);
    box-shadow:0 6px 16px rgba(201,168,106,.25);
  }

}
/* =========================================================
   FLOW DESKTOP LIMPIO
   ========================================================= */
@media (min-width:1100px){

  .steps-desktop-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    width:100%;
    max-width:none;
    margin:0;
    border-radius:0;
    background:#f1ebe5;
    overflow:hidden;
  }

  .steps-desktop-grid > .section{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    min-height:430px;
    margin:0;
    padding:40px 28px;
    background:transparent;
    text-align:center;
  }

  .steps-desktop-grid > .section:not(:last-child){
    border-right:1px solid rgba(0,0,0,.06);
  }

  .steps-desktop-grid > .section > *{
    width:100%;
    max-width:340px;
  }

  .steps-desktop-grid .step-label{
    margin:0 0 10px 0;
    text-align:center;
  }

  .steps-desktop-grid h2{
    margin:0 0 14px 0;
    font-size:30px;
    line-height:.98;
    letter-spacing:0;
    text-align:center;
  }

  .steps-desktop-grid .sub{
    margin:0;
    max-width:320px;
    font-size:15px;
    line-height:1.55;
    text-align:center;
  }

  .step-visual{
    margin-top:auto;
    width:100%;
    min-height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .step-flow-icon{
    width:64px;
    height:auto;
    object-fit:contain;
  }

}


/* ================= ICONOS ================= */

.flow-step .step-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px; /* separación visual */
}

.flow-step .step-flow-icon {
  width: 120px; /* tamaño destacado */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.95;
}
@media (max-width: 768px) {

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

  .flow-step h2,
  .flow-step .sub,
  .flow-step .step-label {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* ancho controlado para que se vea bien centrado */
  .flow-step h2 {
    max-width: 90%;
  }

  .flow-step .sub {
    max-width: 85%;
  }

  /* icono */
  .flow-step .step-visual {
    justify-content: center;
  }

}
/* =========================================================
   FEATURES (solo header centrado)
   ========================================================= */

#featuresTitle,
#featuresSub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* opcional pero recomendado: limitar ancho */
#featuresTitle {
  max-width: 520px;
  margin-bottom: 12px;
}

#featuresSub {
  max-width: 560px;
  margin-bottom: 0;
  opacity: 0.9;
}
/* =========================================================
   HEADERS DE SECCIÓN (GLOBAL)
   ========================================================= */

.section > h2,
.section > .sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ancho controlado (clave para que se vea premium) */
.section > h2 {
  max-width: 520px;
  margin-bottom: 12px;
}

.section > .sub {
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0.9;
}
/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 12px;
  bottom:calc(
    var(--sticky-cta-height) +
    env(safe-area-inset-bottom) +
    16px
  );

  width: 70px;
  height: 70px;

  background: #c9a86a; /* tu color */
  border-radius: 50%;

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

  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 910;

  opacity: 0.9;
  transition: all 0.2s ease;
}

body.entry-overlay-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.modal-open .whatsapp-float{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
body.modal-open .selector-block{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

body.modal-open .bottom-bar{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
/* control directo del SVG */
.whatsapp-icon {
  width: 40px;
  height: 40px;
  fill: white;
}

/* hover sutil */
.whatsapp-float:hover {
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}


/* mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom:calc(
      var(--sticky-cta-height) +
      env(safe-area-inset-bottom) +
      14px
    );
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
  scroll-margin-top: 100px;
  padding-top: 58px;
  padding-bottom: calc(58px + var(--sticky-cta-height) + env(safe-area-inset-bottom));
}

/* Header */
.faq-section > h2,
.faq-section > .sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-section > h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.faq-section > .sub {
  max-width: 760px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.55;
}

/* Lista */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list.is-compact:not(.is-expanded) .faq-item[data-faq-extra="true"] {
  display: none;
}

/* Item */
.faq-item {
  scroll-margin-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom) + 24px);
  background: #ffffff;
  border: 1px solid rgba(15, 26, 36, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(15, 26, 36, 0.14);
  box-shadow: 0 8px 22px rgba(15, 26, 36, 0.06);
}

/* Summary */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  min-height: 58px;
  padding: 19px 56px 19px 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f1a24;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Icono + / - */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: #c9a86a;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

/* Answer */
.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(15, 26, 36, 0.06);
}

.faq-answer p {
  margin: 16px 0 0;
  line-height: 1.65;
  color: #2b1f18;
}

.faq-answer p:first-child {
  margin-top: 16px;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 24px auto 0;
  padding: 0 20px;
  color: var(--coffee);
  font: 700 14px/1 var(--font-body);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(201, 168, 106, 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  scroll-margin-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom) + 24px);
}

.faq-toggle:hover {
  background: rgba(201, 168, 106, 0.13);
  border-color: rgba(201, 168, 106, 0.62);
}

/* =========================================================
   FAQ MACHINES
   ========================================================= */

.faq-machines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.faq-machine-card {
  background: #faf7f3;
  border: 1px solid rgba(15, 26, 36, 0.06);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.faq-machine-card img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.faq-machine-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.faq-machine-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6d5b4d;
}

/* =========================================================
   FAQ DRINKS
   ========================================================= */

.faq-drinks-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.faq-drinks-grid img {
  width: 100%;
  max-width: 74px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  background: #faf7f3;
  padding: 8px;
  border: 1px solid rgba(15, 26, 36, 0.05);
}

/* =========================================================
   FAQ LINKS O CTA DENTRO DE RESPUESTAS
   ========================================================= */

.faq-answer a {
  color: #0f1a24;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: #c9a86a;
}

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

@media (max-width: 768px) {
  .faq-section {
    padding-top: 48px;
    padding-bottom: calc(48px + var(--sticky-cta-height) + env(safe-area-inset-bottom));
  }

  .machines-section.no-bottom-space{
    padding-bottom:32px;
  }

  .faq-section > h2 {
    width:min(100%, 350px);
    max-width:100%;
    margin-bottom: 10px;
    font-size:clamp(29px, 7.6vw, 34px);
    line-height:1.04;
    letter-spacing:-0.025em;
  }

  .faq-section > .sub {
    max-width: 350px;
    margin-bottom: 24px;
    font-size:15px;
    line-height:1.45;
  }

  .faq-list {
    max-width: 100%;
    gap: 9px;
  }

  .faq-item summary {
    min-height: 48px;
    padding: 14px 48px 14px 16px;
    font-size: 14.5px;
    line-height:1.35;
  }

  .faq-item summary::after {
    right: 16px;
    font-size: 28px;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-toggle {
    min-height:44px;
    margin-top: 20px;
  }

  .faq-machines-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-machine-card img {
    max-width: 120px;
  }

  .faq-drinks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .faq-drinks-grid img {
    max-width: 68px;
  }
}

@media (max-width:480px){
  .contact-section{
    padding:52px 22px 54px;
  }

  .contact-copy h2{
    font-size:30px;
    line-height:1.06;
  }

  .contact-copy .sub{
    font-size:15px;
    line-height:1.5;
  }

  .contact-grid{
    gap:7px;
    margin-top:10px;
  }

  .contact-item span{
    font-size:14px;
    line-height:1.4;
  }

  .recommendation-section{
    padding:50px 20px 56px;
  }

  .recommendation-section > h2{
    font-size:clamp(28px, 8vw, 34px);
    line-height:1.05;
  }

  .recommendation-section > .recommendation-sub{
    margin-bottom:22px;
    font-size:15px;
    line-height:1.5;
  }

  .recommendation-card{
    grid-template-columns:auto minmax(0, 1fr) auto;
    gap:12px;
    padding:18px;
    border-radius:20px;
  }

  .recommendation-card__icon{
    width:38px;
    height:38px;
  }

  .recommendation-card__icon svg{
    width:20px;
    height:20px;
  }

  .recommendation-card__eyebrow{
    font-size:14px;
  }

  .recommendation-card__text{
    font-size:14px;
    line-height:1.42;
  }

  .included-section{
    padding:54px 20px 56px;
  }

  .included-section__header{
    margin-bottom:30px;
  }

  .included-section__header h2{
    font-size:32px;
    line-height:1.05;
  }

  .included-section__header p{
    font-size:16px;
    line-height:1.4;
  }

  .benefits-grid{
    row-gap:24px;
  }

  .benefit-content h3{
    font-size:20px;
  }

  .benefit-content p{
    font-size:15px;
    line-height:1.45;
  }

  .contact-panel{
    padding:0;
  }

  .contact-actions{
    gap:12px;
  }

  .contact-action{
    width:100%;
    min-height:48px;
  }

  .brand-end{
    height:72px;
  }
}



/* =========================================================
   TRANSICIÓN STEPS → SIGUIENTE SECCIÓN
   ========================================================= */
@media (min-width:1100px){

  .steps-desktop-grid{
    position:relative;
  }

  /* fade inferior suave */
  .steps-desktop-grid::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:60px;

    background:linear-gradient(
      to bottom,
      rgba(241,235,229,0) 0%,
      rgba(241,235,229,1) 100%
    );

    pointer-events:none;
  }

}
/* =========================================================
   TITULOS DESKTOP - ANCHO Y SALTOS DE LINEA
   ========================================================= */

@media (min-width:1100px){

  /* TITULOS GENERALES */
  .section h2{
    max-width: 820px !important;   /* ancho controlado */
  }


}
.hero-cta-btn{
  appearance:none;
  padding:14px 22px;
  border-radius:14px;

  background:rgba(201,168,106,.6); /* transparencia */
  color:#fff;

  border:none; /* elimina línea blanca */

  font-size:14px;
  font-weight:600;

  cursor:pointer;
  transition:.25s ease;

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.hero-cta-btn:hover{
  background:rgba(255,255,255,.22); /* se ilumina */
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(0,0,0,.3);
}

/* =========================================================
   ANIMACIONES TIPO APPLE / STRIPE
   ========================================================= */

@keyframes overlayFadeIn{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

@keyframes overlayCardIn{
  from{
    opacity:0;
    transform:translateY(10px) scale(.985);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes overlayItemIn{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce){
  .entry-overlay,
  .entry-card,
  .entry-brand,
  .entry-title,
  .entry-sub,
  .entry-options,
  .entry-option{
    animation:none !important;
    transition:none !important;
  }
}

/* =========================================================
   TOPBAR FIJO / SELECTOR ESPACIO-EVENTO
   ========================================================= */

.app{
  padding-top:46px;
}

.selector-block{
  position:fixed;
  top:0;
  left:50%;
  z-index:1100;

  width:100%;
  max-width:var(--maxw-mobile);
  min-height:46px;
  padding:5px 16px;

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

  background:rgba(246,242,237,.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(43,31,24,.08);
  box-shadow:0 6px 18px rgba(0,0,0,.04);

  transform:translateX(-50%);
}

.toggle{
  max-width:430px;
  margin:0 auto;
}

/* Desktop */
@media (min-width:1100px){
  .app{
    padding-top:54px;
  }

  .selector-block{
    left:0;
    transform:none;
    max-width:none;
    min-height:54px;
    padding:8px 24px;
  }

  .toggle{
    max-width:520px;
  }
}

/* =========================================================
   WIZARD MOBILE - ENCUADRE CONSISTENTE
   ========================================================= */
@media (max-width:768px){
  .recommendation-modal{
    align-items:stretch;
    justify-content:center;
    padding:0;
  }

  .recommendation-sheet,
  .recommendation-modal.open .recommendation-sheet{
    width:100%;
    max-width:var(--maxw-mobile);
    min-height:100dvh;
    height:100dvh;
    max-height:100dvh;
    border-radius:0;
    transform:none;
  }

  .recommendation-top{
    flex:0 0 auto;
    padding:8px 14px 0;
  }

  .recommendation-top-row{
    min-height:42px;
  }

  .wizard-progress{
    height:3px;
  }

  .recommendation-body{
    flex:1 1 auto;
    min-height:0;
    padding:14px 16px 16px;
    overflow:auto;
  }

  .recommendation-step.active{
    margin:0 auto;
  }

  .recommendation-kicker{
    margin:0 auto 6px;
    font-size:10.5px;
    letter-spacing:.7px;
  }

  .recommendation-title{
    max-width:320px;
    margin-bottom:10px;
    font-size:22px;
    line-height:1.06;
  }

  .recommendation-step .recommendation-sub{
    margin-bottom:10px;
    font-size:12.5px;
    line-height:1.3;
  }

  .wizard-options{
    gap:10px;
  }

  .wizard-option,
  .wizard-number-card{
    padding:12px 14px;
    border-radius:14px;
  }

  .wizard-option{
    min-height:74px;
  }

  .wizard-option-title{
    margin-bottom:2px;
    font-size:14.5px;
  }

  .wizard-option-sub{
    font-size:11.8px;
    line-height:1.25;
  }

  .wizard-form{
    gap:10px;
  }

  .wizard-field{
    gap:4px;
  }

  .wizard-label{
    font-size:12px;
  }

  .wizard-input{
    min-height:40px;
    padding:10px 12px;
    border-radius:12px;
    font-size:14px;
  }

  .wizard-number-label{
    margin-bottom:6px;
    font-size:13px;
  }

  .wizard-number-control{
    grid-template-columns:36px minmax(0, 1fr) 36px;
    gap:7px;
  }

  .wizard-number-btn{
    width:36px;
    height:36px;
    font-size:20px;
  }

  .wizard-number-value{
    min-height:40px;
    padding:0 8px;
  }

  .wizard-number-help{
    margin-top:5px;
    font-size:11.5px;
    line-height:1.25;
  }

  .recommendation-actions{
    flex:0 0 auto;
    gap:8px;
    padding:8px 14px calc(8px + env(safe-area-inset-bottom));
  }

  .recommendation-btn{
    min-height:42px;
    padding:10px 12px;
    font-size:13.5px;
  }

  .recommendation-btn.secondary{
    min-width:96px;
  }
}
