/* ===== Base ===== */
:root{
  --bg: #f3f2ef;
  --panel: #ffffff;
  --ink: #262a33;
  --muted: #5a606e;
  --dark: #2f333d;
  --accent: #b08f79; /* tono arena / cobre */
  --radius: 18px;
  --shadow: 0 14px 38px rgba(0,0,0,.10);
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== Header / Nav ===== */
.site-header{
  background:
    radial-gradient(800px 420px at 100% 0%, rgba(176,143,121,.18), transparent 60%),
    radial-gradient(500px 300px at 0% 15%, rgba(47,51,61,.10), transparent 55%);
  padding-bottom: 30px;
}

.nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(176,143,121,.18);
}

.brand-name{
  font-weight: 700;
  letter-spacing: .2px;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: rgba(38,42,51,.90);
}

/* ===== Hero ===== */
.hero{
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items: start;
}

.hero__content{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.eyebrow{
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 12px;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.6px;
}

.lead{
  margin: 0 0 16px;
  color: rgba(38,42,51,.88);
  font-size: 16px;
}

.hero__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.chip{
  background: rgba(176,143,121,.12);
  border: 1px solid rgba(176,143,121,.28);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.hero__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.micro{
  margin: 18px 0 0;
  color: rgba(90,96,110,.95);
  font-weight: 600;
}

.hero__card{
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero__card h2{
  margin: 0 0 10px;
  font-size: 18px;
}

/* ===== Sections ===== */
.section{
  padding: 64px 0;
}

.section--alt{
  background:
    linear-gradient(to bottom, rgba(47,51,61,.06), rgba(47,51,61,0));
}

.section--contact{
  background:
    radial-gradient(700px 420px at 0% 0%, rgba(176,143,121,.18), transparent 60%),
    radial-gradient(700px 420px at 100% 100%, rgba(47,51,61,.10), transparent 60%);
}

.section__header{
  margin-bottom: 22px;
}

.section__header h2{
  margin: 0 0 8px;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: -.4px;
}

.section__header p{
  margin: 0;
  color: rgba(90,96,110,.95);
  max-width: 70ch;
}

/* ===== Grids ===== */
.grid{
  display: grid;
  gap: 16px;
}
.grid--cards{ grid-template-columns: repeat(4, 1fr); }
.grid--two{ grid-template-columns: repeat(2, 1fr); }
.grid--pricing{ grid-template-columns: repeat(4, 1fr); }

/* ===== Cards ===== */
.card,
.panel,
.note,
.contact-card{
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.card h3,
.panel h3,
.note h3{
  margin: 0 0 10px;
}

.muted{ color: rgba(90,96,110,.95); }

/* ===== Lists ===== */
.bullet{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(38,42,51,.90);
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.checklist li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: rgba(38,42,51,.92);
}

.checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(176,143,121,.18);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.10);
  background: var(--dark);
  color: white;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.btn:hover{ text-decoration: none; filter: brightness(1.03); }

.btn--ghost{
  background: transparent;
  color: var(--dark);
  box-shadow: none;
  border: 1px solid rgba(47,51,61,.22);
}

.btn--small{ padding: 10px 14px; font-weight: 800; }
.btn--block{ width: 100%; }

/* ===== Pricing ===== */
.price{
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  position: relative;
  padding: 0;
}

.price__top{
  padding: 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background:
    radial-gradient(450px 260px at 100% 0%, rgba(176,143,121,.18), transparent 60%);
}

.price h3{ margin: 0 0 10px; }

.price__value{
  margin: 0;
  font-size: 34px;
  letter-spacing: -.6px;
  font-weight: 900;
}

.price__meta{
  margin: 4px 0 0;
  color: rgba(90,96,110,.95);
  font-weight: 700;
}

.price__list{
  list-style: none;
  margin: 0;
  padding: 14px 18px;
  color: rgba(38,42,51,.90);
}

.price__list li{ padding: 8px 0; border-bottom: 1px dashed rgba(0,0,0,.08); }
.price__list li:last-child{ border-bottom: none; }

.price .btn{ margin: 12px 18px 18px; }

.price--featured{
  border: 2px solid rgba(176,143,121,.55);
  transform: translateY(-4px);
}

.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(176,143,121,.18);
  border: 1px solid rgba(176,143,121,.45);
  color: rgba(38,42,51,.92);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

/* ===== KPIs ===== */
.kpis{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.kpi{
  background: rgba(47,51,61,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 10px;
}
.kpi__num{ display: block; font-weight: 900; }
.kpi__label{ display: block; color: rgba(90,96,110,.95); font-weight: 700; font-size: 12px; }

/* ===== Contact ===== */
.contact-actions{ display: grid; gap: 10px; margin-top: 12px; }

.contact-list{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-item{
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.contact-item:last-child{ border-bottom: none; }

.dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}

.label{ margin: 0; color: rgba(90,96,110,.95); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .3px; }

.footer{ text-align: center; padding-top: 24px; color: rgba(90,96,110,.95); font-weight: 700; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .grid--cards{ grid-template-columns: repeat(2, 1fr); }
  .grid--pricing{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .nav-links{ display: none; }
  .grid--cards{ grid-template-columns: 1fr; }
  .grid--two{ grid-template-columns: 1fr; }
  .grid--pricing{ grid-template-columns: 1fr; }
  .kpis{ grid-template-columns: 1fr; }
}
/* ===== WhatsApp flotante ===== */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9999;
  background: #111;
  color: #fff;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}


.wa-float:hover{
  text-decoration: none;
  filter: brightness(1.05);
}

@media (min-width: 980px){
  .wa-float{ bottom: 22px; right: 22px; }
}
/* ===== Alinear contenido de precios ===== */
.price{
  display: flex;
  flex-direction: column;
}

.price__list{
  flex: 1;              /* hace que la lista ocupe el espacio disponible */
}

.price .btn{
  margin-top: auto;     /* empuja el botón al fondo */
}

/* ===== Base ===== */
:root{
  --bg: #f3f2ef;
  --panel: #ffffff;
  --ink: #262a33;
  --muted: #5a606e;
  --dark: #2f333d;
  --accent: #b08f79; /* tono arena / cobre */
  --radius: 18px;
  --shadow: 0 14px 38px rgba(0,0,0,.10);
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== Header / Nav ===== */
.site-header{
  background:
    radial-gradient(800px 420px at 100% 0%, rgba(176,143,121,.18), transparent 60%),
    radial-gradient(500px 300px at 0% 15%, rgba(47,51,61,.10), transparent 55%);
  padding-bottom: 30px;
}

.nav{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(176,143,121,.18);
}

.brand-name{
  font-weight: 700;
  letter-spacing: .2px;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: rgba(38,42,51,.90);
}

/* ===== Hero ===== */
.hero{
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items: start;
}

.hero__content{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.eyebrow{
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 12px;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.6px;
}

.lead{
  margin: 0 0 16px;
  color: rgba(38,42,51,.88);
  font-size: 16px;
}

.hero__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.chip{
  background: rgba(176,143,121,.12);
  border: 1px solid rgba(176,143,121,.28);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.hero__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.micro{
  margin: 18px 0 0;
  color: rgba(90,96,110,.95);
  font-weight: 600;
}

.hero__card{
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero__card h2{
  margin: 0 0 10px;
  font-size: 18px;
}

/* ===== Sections ===== */
.section{
  padding: 64px 0;
}

.section--alt{
  background:
    linear-gradient(to bottom, rgba(47,51,61,.06), rgba(47,51,61,0));
}

.section--contact{
  background:
    radial-gradient(700px 420px at 0% 0%, rgba(176,143,121,.18), transparent 60%),
    radial-gradient(700px 420px at 100% 100%, rgba(47,51,61,.10), transparent 60%);
}

.section__header{
  margin-bottom: 22px;
}

.section__header h2{
  margin: 0 0 8px;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: -.4px;
}

.section__header p{
  margin: 0;
  color: rgba(90,96,110,.95);
  max-width: 70ch;
}

/* ===== Grids ===== */
.grid{
  display: grid;
  gap: 16px;
}
.grid--cards{ grid-template-columns: repeat(4, 1fr); }
.grid--two{ grid-template-columns: repeat(2, 1fr); }
.grid--pricing{ grid-template-columns: repeat(4, 1fr); }

/* ===== Cards ===== */
.card,
.panel,
.note,
.contact-card{
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.card h3,
.panel h3,
.note h3{
  margin: 0 0 10px;
}

.muted{ color: rgba(90,96,110,.95); }

/* ===== Lists ===== */
.bullet{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(38,42,51,.90);
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.checklist li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: rgba(38,42,51,.92);
}

.checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(176,143,121,.18);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.10);
  background: var(--dark);
  color: white;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.btn:hover{ text-decoration: none; filter: brightness(1.03); }

.btn--ghost{
  background: transparent;
  color: var(--dark);
  box-shadow: none;
  border: 1px solid rgba(47,51,61,.22);
}

.btn--small{ padding: 10px 14px; font-weight: 800; }
.btn--block{ width: 100%; }

/* ===== Pricing ===== */
.price{
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  position: relative;
  padding: 0;
}

.price__top{
  padding: 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background:
    radial-gradient(450px 260px at 100% 0%, rgba(176,143,121,.18), transparent 60%);
}

.price h3{ margin: 0 0 10px; }

.price__value{
  margin: 0;
  font-size: 34px;
  letter-spacing: -.6px;
  font-weight: 900;
}

.price__meta{
  margin: 4px 0 0;
  color: rgba(90,96,110,.95);
  font-weight: 700;
}

.price__list{
  list-style: none;
  margin: 0;
  padding: 14px 18px;
  color: rgba(38,42,51,.90);
}

.price__list li{ padding: 8px 0; border-bottom: 1px dashed rgba(0,0,0,.08); }
.price__list li:last-child{ border-bottom: none; }

.price .btn{ margin: 12px 18px 18px; }

.price--featured{
  border: 2px solid rgba(176,143,121,.55);
  transform: translateY(-4px);
}

.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(176,143,121,.18);
  border: 1px solid rgba(176,143,121,.45);
  color: rgba(38,42,51,.92);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

/* ===== KPIs ===== */
.kpis{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.kpi{
  background: rgba(47,51,61,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 10px;
}
.kpi__num{ display: block; font-weight: 900; }
.kpi__label{ display: block; color: rgba(90,96,110,.95); font-weight: 700; font-size: 12px; }

/* ===== Contact ===== */
.contact-actions{ display: grid; gap: 10px; margin-top: 12px; }

.contact-list{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-item{
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.contact-item:last-child{ border-bottom: none; }

.dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}

.label{ margin: 0; color: rgba(90,96,110,.95); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .3px; }

.footer{ text-align: center; padding-top: 24px; color: rgba(90,96,110,.95); font-weight: 700; }

/* ===== Reseñas (embed) ===== */
.review-wrap{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.review-embed{
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.review-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.lang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47,51,61,.22);
  font-weight: 900;
  letter-spacing: .2px;
}

.lang:hover{ text-decoration: none; filter: brightness(1.02); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .grid--cards{ grid-template-columns: repeat(2, 1fr); }
  .grid--pricing{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .nav-links{ display: none; }
  .grid--cards{ grid-template-columns: 1fr; }
  .grid--two{ grid-template-columns: 1fr; }
  .grid--pricing{ grid-template-columns: 1fr; }
  .kpis{ grid-template-columns: 1fr; }
}
.lang-switch{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47,51,61,.22);
  font-weight: 900;
  letter-spacing: .2px;
  background: rgba(255,255,255,.75);
}
.lang-switch:hover{ text-decoration: none; filter: brightness(1.02); }