:root {
  --teal: #0f766e;
  --teal-deep: #115e59;
  --teal-dark: #0b3d3a;
  --coral: #e85d4a;
  --amber: #f4a259;
  --ink: #22302e;
  --muted: #5d6b68;
  --bg: #faf7f2;
  --card: #fffdfa;
  --line: #e6dfd4;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(11, 61, 58, .10);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.2; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: .01em; color: var(--teal-deep); }
.brand-name em { font-style: normal; color: var(--coral); }
.site-nav { display: flex; align-items: center; gap: 1.3rem; font-size: .95rem; }
.site-nav a:not(.btn) { color: var(--muted); font-weight: 600; transition: color .15s; }
.site-nav a:not(.btn):hover { color: var(--teal-deep); }

.btn {
  display: inline-block;
  padding: .68rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px rgba(232, 93, 74, .32);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(232, 93, 74, .42); }
.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid rgba(15, 118, 110, .4);
}
.btn-lg { padding: .9rem 1.9rem; font-size: 1.02rem; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2.8rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(900px 460px at 100% -10%, #f4a259 0%, transparent 55%),
    linear-gradient(150deg, #0b3d3a 0%, #115e59 58%, #0f766e 135%);
  color: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: .7rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
}
.hero h1 span { color: var(--amber); font-style: italic; }
.hero-sub { margin: 1rem 0 1.6rem; font-size: 1.08rem; opacity: .92; max-width: 33em; }
.hero-sub strong { color: var(--amber); }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.hero-badges { list-style: none; display: flex; gap: 1.1rem; flex-wrap: wrap; margin-top: 1.8rem; font-size: .9rem; opacity: .95; }
.hero-badges li::before { content: "●"; color: var(--amber); margin-right: .4rem; font-size: .7rem; vertical-align: middle; }

.quote-card {
  background: var(--card);
  color: var(--ink);
  border-radius: 16px;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
  border-top: 6px solid var(--amber);
}
.label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 700;
}
.quote-amount { font-size: 1.7rem; font-weight: 800; margin: .3rem 0 .9rem; color: var(--teal-deep); font-variant-numeric: tabular-nums; }
.quote-card input[type="range"] { width: 100%; accent-color: var(--coral); }
.quote-row {
  display: flex;
  justify-content: space-between;
  font-size: .95rem;
  padding: .45rem 0;
  border-bottom: 1px dashed var(--line);
}
.quote-row span { color: var(--muted); }
.quote-row.total { border: none; margin-top: .4rem; font-size: 1.05rem; }
.quote-row.total strong { color: var(--coral); }
.quote-note { font-size: .78rem; color: var(--muted); margin-top: .6rem; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item { background: var(--card); text-align: center; padding: 1.4rem 1rem; }
.trust-item strong { display: block; font-size: 1.5rem; color: var(--teal-deep); }
.trust-item span { font-size: .88rem; color: var(--muted); }

.services { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); }
.section-head { max-width: 44em; margin-bottom: 2.2rem; }
.section-head .eyebrow { color: var(--coral); }
.section-head h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--teal-deep); margin-bottom: .5rem; }
.section-head p:not(.eyebrow) { color: var(--muted); }
.section-head.light .eyebrow { color: var(--amber); }
.section-head.light h2 { color: #fff; }
.section-head.light p:not(.eyebrow) { color: rgba(255, 255, 255, .75); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(11, 61, 58, .16); }
.card-art {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: .7rem;
  background: #e6f1ef;
  border: 1px solid #cfe3e0;
}
.art-blue { background: #e7f0fa; border-color: #cfe0f3; }
.art-emerald { background: #e6f1ef; border-color: #cfe3e0; }
.art-violet { background: #f0e9f6; border-color: #e0d2ec; }
.art-gold { background: #fcf0dc; border-color: #f3e0ba; }
.card h3 { font-size: 1.15rem; color: var(--teal-deep); margin-bottom: .4rem; }
.card p { font-size: .93rem; color: var(--muted); }
.card-list { list-style: none; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line); display: grid; gap: .3rem; }
.card-list li { font-size: .88rem; color: var(--muted); }
.card-list li::before { content: "✓ "; color: var(--coral); font-weight: 700; }

.about {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(150deg, #0b3d3a 0%, #115e59 58%, #0f766e 135%);
  color: #fff;
}
.about-text { max-width: 52em; display: grid; gap: 1rem; }
.about-text p { font-size: 1.02rem; opacity: .92; }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.stat {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat strong { display: block; font-size: 1.9rem; color: var(--amber); }
.stat span { font-size: .88rem; opacity: .85; }

.steps { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); }
.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}
.steps-list li {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem 3.1rem;
  box-shadow: var(--shadow);
}
.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.4rem;
  left: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}
.steps-list h4 { font-size: 1.05rem; color: var(--teal-deep); margin-bottom: .3rem; }
.steps-list p { font-size: .9rem; color: var(--muted); }

.transparency { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); background: #efece4; }
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; align-items: start; }
.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tier-featured { border: 2px solid var(--coral); position: relative; transform: translateY(-6px); }
.tier-featured::before {
  content: "Más solicitado";
  position: absolute;
  top: -13px;
  left: 1.2rem;
  background: var(--coral);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 999px;
}
.tier h3 { color: var(--teal-deep); font-size: 1.15rem; }
.tier-price { font-size: 1.02rem; margin: .5rem 0 1rem; color: var(--muted); }
.tier-price strong { font-size: 1.9rem; color: var(--coral); }
.tier ul { list-style: none; display: grid; gap: .4rem; margin-bottom: 1rem; }
.tier ul li { font-size: .92rem; color: var(--muted); }
.tier ul li::before { content: "✓ "; color: var(--teal); font-weight: 700; }
.tier-disclosure {
  margin-top: auto;
  font-size: .8rem;
  color: var(--muted);
  background: #f5f2ea;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem .8rem;
}
.disclosure-note {
  margin-top: 1.4rem;
  font-size: .8rem;
  color: var(--muted);
  max-width: 52em;
}

.faq { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); }
.faq-list { max-width: 760px; display: grid; gap: .8rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--coral); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: .7rem; font-size: .94rem; color: var(--muted); }

.contact { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); background: #efece4; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1.8rem;
  align-items: start;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--teal-deep); }
.field input, .field select, .field textarea {
  padding: .75rem .9rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fffefb;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); }
.form-note { text-align: center; font-weight: 600; min-height: 1.4em; font-size: .92rem; }
.form-note.ok { color: var(--teal); }
.privacy-note { font-size: .8rem; color: var(--muted); text-align: center; }
.privacy-note a { color: var(--teal-deep); text-decoration: underline; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); margin-bottom: .4rem; }
.info-card p { font-size: .95rem; color: var(--muted); }
.info-card a { color: var(--teal-deep); font-weight: 700; }
.info-note { font-size: .82rem !important; opacity: .85; margin-top: .2rem; }

.site-footer { background: #092a27; color: rgba(255, 255, 255, .75); padding: 2.5rem clamp(1rem, 4vw, 3rem) 1.5rem; }
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .brand { color: #fff; }
.site-footer .brand-name { color: #fff; }
.footer-brand p { margin-top: .7rem; font-size: .9rem; opacity: .8; }
.footer-brand a { color: var(--amber); }
.footer-links { display: flex; gap: 3rem; }
.footer-links h5 { color: var(--amber); margin-bottom: .6rem; font-size: .9rem; }
.footer-links a { display: block; font-size: .92rem; padding: .18rem 0; opacity: .8; }
.footer-links a:hover { opacity: 1; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 1.4rem;
  display: grid;
  gap: .5rem;
}
.footer-legal p { font-size: .8rem; opacity: .65; line-height: 1.55; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .quote-card { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-nav a:not(.btn) { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .tier-featured { transform: none; }
}
@media (max-width: 520px) {
  .contact-form { grid-template-columns: 1fr; }
}
