:root {
  --ink: #101820;
  --muted: #5f6b76;
  --paper: #fffdf8;
  --surface: #ffffff;
  --surface-2: #f5f1e8;
  --orange: #f97316;
  --orange-dark: #c94f08;
  --yellow: #facc15;
  --green: #166534;
  --line: #ded8cc;
  --shadow: 0 20px 55px rgba(16, 24, 32, 0.11);
  --radius: 22px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: .65rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-alt { background: var(--surface-2); }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.lede { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2.25rem; }
.section-heading.row { grid-template-columns: 1fr auto; align-items: end; }

.announcement {
  padding: .55rem 0;
  background: var(--ink);
  color: white;
  font-size: .86rem;
}
.announcement .container { display: flex; justify-content: space-between; gap: 1rem; }
.announcement a { color: var(--yellow); font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 216, 204, .75);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 130px; height: 66px; object-fit: contain; display: block; }
.brand-logo-footer { width: 150px; height: 76px; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links > a, .nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  padding: .7rem .8rem;
  border-radius: 999px;
  color: #2d3842;
  font-size: .9rem;
  font-weight: 760;
}
.nav-links > a:hover, .nav-links > a[aria-current="page"], .nav-dropdown > summary:hover { background: #efe8dc; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; cursor: pointer; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 260px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.dropdown-panel a { display: block; padding: .7rem .8rem; border-radius: 10px; font-weight: 700; }
.dropdown-panel a:hover { background: var(--surface-2); }
.nav-cta { margin-left: .5rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 830;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16,24,32,.17); }
.btn-primary { background: var(--orange); color: #1d1209; }
.btn-primary:hover { background: #ff8a35; }
.btn-whatsapp { background: #25d366; color: #092413; }
.btn-light { background: white; color: var(--ink); border-color: var(--line); }
.btn-small { min-height: 40px; padding: .6rem .9rem; font-size: .88rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.text-link { color: var(--orange-dark); font-weight: 850; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero { position: relative; overflow: hidden; padding: 5rem 0 4.5rem; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 86% 15%, rgba(250,204,21,.38), transparent 25%),
    radial-gradient(circle at 10% 65%, rgba(249,115,22,.15), transparent 26%);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 4rem; align-items: center; }
.hero-copy { display: grid; gap: 1.45rem; }
.hero-copy h1 span { color: var(--orange-dark); }
.hero-trust { display: flex; flex-wrap: wrap; gap: .7rem 1.25rem; color: var(--muted); font-size: .92rem; font-weight: 720; }
.hero-trust span::before { content: "✓"; margin-right: .4rem; color: var(--green); font-weight: 950; }
.hero-visual { position: relative; min-height: 500px; }
.hero-photo {
  position: absolute;
  inset: 0 2rem 2rem 0;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 260px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; margin-bottom: .25rem; font-size: 1.05rem; }

.stats { border-block: 1px solid var(--line); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.45rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.55rem; }
.stat span { color: var(--muted); font-size: .9rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(16,24,32,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image-wrap { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #ece8de; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.product-category {
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(16,24,32,.9);
  color: white;
  font-size: .72rem;
  font-weight: 850;
}
.product-content { display: grid; gap: .8rem; flex: 1; padding: 1.2rem; }
.product-content p { margin: 0; color: var(--muted); font-size: .94rem; }
.product-meta { display: flex; gap: .7rem; flex-wrap: wrap; color: var(--muted); font-size: .82rem; }
.price { color: var(--orange-dark); font-size: 1.18rem; font-weight: 900; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: auto; }

.benefit-grid, .steps-grid, .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.info-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: #fff1e7;
  color: var(--orange-dark);
  font-size: 1.35rem;
}
.info-card h3 { margin-bottom: .55rem; }
.info-card p { margin: 0; color: var(--muted); }
.step-number { color: var(--orange); font-size: 2rem; font-weight: 950; }

.country-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.country-card { padding: clamp(2rem, 5vw, 4rem); background: var(--ink); color: white; }
.country-card + .country-card { background: var(--orange); color: #1d1209; }
.country-card p { color: rgba(255,255,255,.74); }
.country-card + .country-card p { color: rgba(29,18,9,.75); }
.country-card .btn { margin-top: .75rem; }

.review-empty {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px dashed #b9af9e;
  border-radius: var(--radius);
  background: rgba(255,255,255,.6);
}
.review-empty .quote-mark { color: var(--orange); font-size: 3rem; font-weight: 950; line-height: 1; }

.page-hero { padding: 4.6rem 0 3.7rem; background: var(--surface-2); }
.page-hero .lede { margin-top: 1.2rem; }
.breadcrumbs { margin-bottom: 1.25rem; color: var(--muted); font-size: .84rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--orange-dark); }

.product-detail { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.5rem; align-items: start; }
.product-detail-image {
  position: sticky;
  top: 110px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: #ece8de;
  box-shadow: var(--shadow);
}
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-copy { display: grid; gap: 1.25rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { padding: .42rem .72rem; border-radius: 999px; background: var(--surface-2); color: #3d4650; font-size: .83rem; font-weight: 780; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; padding: 0; margin: 0; list-style: none; }
.feature-list li { padding: .8rem; border: 1px solid var(--line); border-radius: 12px; background: white; }
.feature-list li::before { content: "✓"; margin-right: .45rem; color: var(--green); font-weight: 950; }
.pricing-table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; }
.pricing-table th, .pricing-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.pricing-table th { background: var(--ink); color: white; }
.pricing-table tr:last-child td { border-bottom: 0; }
.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--orange); border-radius: 10px; background: #fff4e9; color: #4d392a; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3rem; align-items: start; }
.prose { font-size: 1.02rem; }
.prose h2 { margin: 2.6rem 0 1rem; font-size: clamp(1.55rem, 3vw, 2.2rem); }
.prose h3 { margin: 1.8rem 0 .65rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.sidebar-card { position: sticky; top: 110px; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }

.faq-list { display: grid; gap: .85rem; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: white; }
.faq-item summary { padding: 1rem 1.1rem; cursor: pointer; font-weight: 850; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--orange-dark); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 1.1rem 1rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card h3 { margin-bottom: .5rem; }
.contact-card p { color: var(--muted); }
.quote-inline { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 28px; background: var(--ink); color: white; }
.quote-inline .field label { color: #dce2e6; }

.field { display: grid; gap: .42rem; }
.field label { font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem .85rem;
  border: 1px solid #cfc7ba;
  border-radius: 11px;
  background: white;
  color: var(--ink);
}
.field textarea { min-height: 100px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field-full { grid-column: 1 / -1; }
.check-row { display: flex; gap: .65rem; align-items: flex-start; }
.check-row input { margin-top: .3rem; }
.form-note { margin: 0; color: #bac4cc; font-size: .82rem; }

.quote-dialog {
  width: min(700px, calc(100% - 1.5rem));
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}
.quote-dialog::backdrop { background: rgba(5, 10, 15, .68); backdrop-filter: blur(4px); }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.5rem 1rem; border-bottom: 1px solid var(--line); }
.dialog-header p { margin: .3rem 0 0; color: var(--muted); }
.dialog-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 1.2rem; }
.quote-form { padding: 1.4rem 1.5rem 1.5rem; }
.quote-form .form-note { color: var(--muted); margin-top: .75rem; }

.cta-band { padding: 4rem 0; background: var(--orange); color: #1d1209; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-grid p { margin: .65rem 0 0; color: rgba(29,18,9,.74); }

.site-footer { background: #0b1117; color: white; }
.footer-main { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 2.2rem; padding: 4rem 0 2.5rem; }
.footer-brand p { max-width: 320px; color: #aeb9c1; }
.footer-col h3 { margin-bottom: .9rem; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: .52rem; color: #b9c3ca; font-size: .92rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid #26313a; color: #89959e; font-size: .82rem; }

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 78px 1rem auto;
    display: none;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links > a, .nav-dropdown > summary { justify-content: space-between; border-radius: 10px; }
  .nav-cta { margin-left: 0; }
  .dropdown-panel { position: static; min-width: 0; margin-top: .35rem; box-shadow: none; }
  .hero-grid, .product-detail, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .hero-visual { min-height: 430px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-image, .sidebar-card { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { padding-bottom: 70px; }
  .announcement .container { justify-content: center; text-align: center; }
  .announcement span:last-child { display: none; }
  .brand-logo { width: 112px !important; height: 56px !important; }
  .brand-logo-footer { width: 140px !important; height: 71px !important; }
  .section { padding: 4rem 0; }
  .section-heading.row, .cta-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.6rem; }
  .hero-visual { min-height: 360px; }
  .hero-photo { inset: 0 1rem 1rem 0; width: calc(100% - 1rem); height: calc(100% - 1rem); border-radius: 24px; }
  .hero-card { max-width: 225px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid, .benefit-grid, .steps-grid, .trust-grid, .country-panel { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr; }
  .review-empty { grid-template-columns: 1fr; }
  .review-empty .quote-mark { display: none; }
  .feature-list, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    z-index: 45;
    right: .7rem;
    bottom: .65rem;
    left: .7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    padding: .55rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 15px 35px rgba(16,24,32,.2);
  }
  .mobile-actions .btn { min-height: 44px; padding: .65rem; }
}

@media (max-width: 430px) {
  .footer-main { grid-template-columns: 1fr; }
  .hero-card { right: -.15rem; max-width: 200px; padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
