
:root{
  --bg:#f7f4ef;
  --paper:#fffaf3;
  --ink:#1f2522;
  --muted:#66706b;
  --line:#e6ded2;
  --brand:#355c3f;
  --brand-dark:#25432e;
  --accent:#c77d3a;
  --accent-soft:#f3dfc8;
  --ok:#2f6b48;
  --shadow:0 18px 50px rgba(31,37,34,.12);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
}
a{color:inherit}
.container{
  width:min(1120px, calc(100% - 36px));
  margin:0 auto;
}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(247,244,239,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(230,222,210,.8);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:70px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:-.02em;
}
.logo-mark{
  width:38px;
  height:38px;
  flex:none;
  border-radius:13px;
  background:linear-gradient(135deg,var(--brand),#76a07d);
  display:grid;
  place-items:center;
  box-shadow:0 8px 18px rgba(53,92,63,.2);
}
.logo-mark svg{width:23px;height:23px;display:block}
.logo-text{line-height:1.15}
.logo-short{display:none}
.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  font-size:14px;
  color:var(--muted);
}
.nav-links a{text-decoration:none}
.nav-links a:hover{color:var(--ink)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:none;
  border-radius:999px;
  padding:13px 19px;
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  font-weight:750;
  line-height:1.1;
  box-shadow:0 10px 24px rgba(53,92,63,.22);
  cursor:pointer;
}
.btn:hover{background:var(--brand-dark)}
.btn.secondary{
  background:#fff;
  color:var(--brand);
  box-shadow:none;
  border:1px solid var(--line);
}
.btn.secondary:hover{background:var(--paper)}
.hero{
  padding:74px 0 54px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:#794715;
  font-weight:800;
  font-size:13px;
  margin-bottom:16px;
}
h1{
  font-size:clamp(36px, 5vw, 62px);
  line-height:1.02;
  margin:0 0 18px;
  letter-spacing:-.055em;
}
.lead{
  font-size:clamp(18px, 2.1vw, 22px);
  color:#4c5751;
  margin:0 0 26px;
  max-width:760px;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin:28px 0 18px;
}
.trust{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
  margin-top:18px;
}
.trust span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{
  padding:26px;
}
.price-box{
  display:grid;
  gap:14px;
}
.price-main{
  display:flex;
  align-items:end;
  gap:9px;
  margin:8px 0;
}
.price-main strong{
  font-size:48px;
  letter-spacing:-.05em;
}
.price-main span{color:var(--muted); padding-bottom:9px}
.mini-list{
  display:grid;
  gap:10px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.mini-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.check{
  color:var(--ok);
  font-weight:900;
}
.section{
  padding:54px 0;
}
.section.alt{background:#fffdf8}
.section h2{
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.08;
  letter-spacing:-.04em;
  margin:0 0 14px;
}
.section-intro{
  color:var(--muted);
  font-size:18px;
  max-width:770px;
  margin:0 0 28px;
}
.quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.quick-item{
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
}
.quick-item small{
  display:block;
  color:var(--muted);
  font-weight:700;
  margin-bottom:5px;
}
.quick-item strong{font-size:17px}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.info-card{
  padding:24px;
}
.info-card h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.02em;
}
.info-card p{margin:0;color:var(--muted)}
.info-card ul{margin:12px 0 0;padding-left:20px;color:var(--muted)}
.price-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
}
.price-table th,.price-table td{
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  text-align:left;
}
.price-table tr:last-child th,.price-table tr:last-child td{border-bottom:0}
.price-table th{color:var(--muted);font-weight:750}
.price-table td{font-weight:850}
.towns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}
.towns li{
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
  padding:11px 13px;
  color:#334039;
}
.steps{
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:13px;
}
.step{
  position:relative;
  padding:20px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
}
.step:before{
  counter-increment:step;
  content:counter(step);
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  margin-bottom:12px;
}
.step h3{font-size:17px;margin:0 0 7px}
.step p{font-size:14px;color:var(--muted);margin:0}
.faq{
  display:grid;
  gap:12px;
}
details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:0;
}
summary{
  cursor:pointer;
  padding:18px 20px;
  font-weight:850;
}
details p{
  padding:0 20px 18px;
  margin:0;
  color:var(--muted);
}
.final-cta{
  text-align:center;
  padding:42px;
}
.final-cta p{
  color:var(--muted);
  margin:0 auto 22px;
  max-width:660px;
  font-size:18px;
}
.footer{
  padding:30px 0;
  color:var(--muted);
  border-top:1px solid var(--line);
  font-size:14px;
}
.footer .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}
.hero-visual{
  min-height:440px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(199,125,58,.18), transparent 30%),
    linear-gradient(135deg,#fffaf3,#e8efe7);
}
.machine{
  position:absolute;
  left:50%;
  top:53%;
  transform:translate(-50%,-50%);
  width:min(350px,78%);
  height:330px;
  border-radius:32px;
  background:linear-gradient(160deg,#34483b,#1f2a24);
  box-shadow:0 30px 70px rgba(31,37,34,.26);
}
.machine:before{
  content:"";
  position:absolute;
  top:32px;
  left:50%;
  transform:translateX(-50%);
  width:56%;
  height:18px;
  border-radius:999px;
  background:#17201b;
}
.machine:after{
  content:"";
  position:absolute;
  left:42px;
  right:42px;
  top:78px;
  height:126px;
  border-radius:22px;
  background:
    repeating-linear-gradient(0deg, #1a241f 0 8px, #314437 8px 13px);
  border:8px solid #18231d;
}
.machine .drop{
  position:absolute;
  bottom:46px;
  left:50%;
  transform:translateX(-50%);
  width:74px;
  height:96px;
  border-radius:50% 50% 50% 50%;
  background:linear-gradient(180deg,#95c7e5,#407c9d);
  clip-path:polygon(50% 0, 87% 43%, 100% 72%, 50% 100%, 0 72%, 13% 43%);
  opacity:.95;
}
.local-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
}
@media (max-width: 900px){
  .hero-grid,.grid-2{grid-template-columns:1fr}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .towns{grid-template-columns:1fr 1fr}
  .nav-links a:not(.btn){display:none}
  .hero{padding:48px 0 36px}
}
@media (max-width: 480px){
  .logo-full{display:none}
  .logo-short{display:inline}
}
@media (max-width: 560px){
  .container{width:min(100% - 24px,1120px)}
  .quick-grid,.steps,.towns{grid-template-columns:1fr}
  .hero-card{padding:20px}
  .btn{width:100%;padding:15px 18px}
  .cta-row{align-items:stretch}
  .final-cta{padding:28px 18px}
  .price-main strong{font-size:42px}
  .hero-visual{min-height:330px}
  .machine{height:260px}
  .footer .container{display:block}
}


/* Bloque de modelo concreto */
.product-model{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:center;
}
.product-photo-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
}
.product-photo-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  background:#fff;
}
.photo-caption{
  margin:12px 4px 2px;
  color:var(--muted);
  font-size:13px;
}
.product-copy h2{
  margin-top:12px;
}
.spec-list{
  list-style:none;
  padding:0;
  margin:20px 0;
  display:grid;
  gap:10px;
}
.spec-list li{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  color:#334039;
}
@media (max-width: 900px){
  .product-model{grid-template-columns:1fr}
}


/* Widget flotante tipo WhatsApp */
.wa-widget{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  font-family:inherit;
}
.wa-float{
  border:0;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  background:#1f7a4c;
  color:#fff;
  padding:14px 18px;
  box-shadow:0 14px 34px rgba(31,37,34,.24);
  font-weight:850;
  cursor:pointer;
}
.wa-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#8cffb7;
  box-shadow:0 0 0 4px rgba(140,255,183,.18);
}
.wa-panel{
  position:absolute;
  right:0;
  bottom:64px;
  width:min(360px, calc(100vw - 28px));
  background:#fffaf3;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 70px rgba(31,37,34,.24);
}
.wa-panel-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
  padding:16px 18px;
  background:#1f7a4c;
  color:#fff;
}
.wa-panel-head strong{
  display:block;
  font-size:16px;
}
.wa-panel-head span{
  display:block;
  opacity:.84;
  font-size:13px;
  margin-top:2px;
}
.wa-close{
  border:0;
  background:rgba(255,255,255,.16);
  color:#fff;
  width:30px;
  height:30px;
  border-radius:50%;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.wa-panel-body{
  padding:16px;
  background:
    radial-gradient(circle at 20% 10%, rgba(31,122,76,.08), transparent 30%),
    #f7f4ef;
}
.wa-msg{
  max-width:88%;
  padding:11px 13px;
  margin:0 0 10px;
  border-radius:15px;
  font-size:14px;
  line-height:1.35;
}
.wa-msg-them{
  background:#fff;
  border:1px solid var(--line);
  color:#334039;
  border-top-left-radius:5px;
}
.wa-panel-actions{
  padding:14px 16px 16px;
  background:#fffaf3;
}
.wa-open{
  width:100%;
  border:0;
  border-radius:999px;
  background:#1f7a4c;
  color:#fff;
  padding:13px 16px;
  font-weight:850;
  cursor:pointer;
}
.wa-open:hover,
.wa-float:hover{
  background:#17623c;
}
.wa-panel-actions small{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}
@media (max-width:560px){
  .wa-widget{
    left:14px;
    right:14px;
    bottom:14px;
  }
  .wa-float{
    width:100%;
    justify-content:center;
  }
  .wa-panel{
    left:0;
    right:0;
    bottom:62px;
    width:100%;
  }
}

.table-note{
  display:inline-block;
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  background:var(--accent-soft);
  color:#794715;
  font-size:12px;
  font-weight:850;
  vertical-align:middle;
}
