:root {
  --bg: #ffffff;
  --bg-alt: #f6f5f2;
  --ink: #0f0f0f;
  --ink-soft: #2a2a2a;
  --ink-muted: #5b5b5b;
  --line: #e5e3dd;
  --gold: #b8893f;
  --gold-soft: #d8b674;
  --whats: #25d366;
  --whats-dark: #128c7e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 15, 15, .06);
  --shadow-md: 0 18px 40px -20px rgba(15, 15, 15, .25);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 15, 15, .92);
  backdrop-filter: blur(10px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #0f0f0f;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .4px;
}
.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: .68;
  margin-top: 5px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  opacity: .82;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--gold);
  color: #0f0f0f !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--gold-soft); }

@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav { height: 64px; }
  .brand-mark { width: 38px; height: 38px; font-size: 20px; }
  .brand-name { font-size: 18px; }
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 15, 15, .88) 0%, rgba(15, 15, 15, .65) 45%, rgba(15, 15, 15, .35) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, .25) 0%, rgba(15, 15, 15, .85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 110px;
  max-width: 900px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.5px;
  margin: 0 0 24px;
  font-weight: 600;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 640px;
  opacity: .88;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 26px;
  max-width: 720px;
}
.hero-trust li { font-size: 14px; opacity: .85; }
.hero-trust strong { color: var(--gold-soft); display: block; font-size: 22px; font-weight: 700; font-family: 'Playfair Display', serif; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--whats);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .55);
}
.btn-primary:hover { background: var(--whats-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .08); }
.btn-large { padding: 20px 32px; font-size: 17px; }

/* STRIP */
.strip {
  background: #0f0f0f;
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(184, 137, 63, .25);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--gold-soft);
  font-weight: 700;
  line-height: 1;
}
.strip-label { font-size: 14px; opacity: .78; max-width: 280px; }
@media (max-width: 760px) {
  .strip-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* SECTION HEAD */
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.3px;
  margin: 0 0 16px;
}
.section-head p {
  font-size: 16px;
  color: var(--ink-muted);
  margin: 0;
}
.section-head .eyebrow { color: var(--gold); }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255, 255, 255, .68); }

/* SERVICES */
.services { padding: 100px 0; background: var(--bg); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 137, 63, .35);
}
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.2px;
}
.card-body p { color: var(--ink-muted); font-size: 15px; margin: 0; flex: 1; }
.card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  transition: color .15s ease, gap .15s ease;
  letter-spacing: .2px;
}
.card-link:hover { color: var(--ink); }
.services-note {
  margin-top: 56px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
@media (max-width: 920px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
}

/* GALLERY */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.cases { display: flex; flex-direction: column; gap: 64px; }
.case {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.case-reverse { grid-template-columns: 1fr 1.1fr; }
.case-reverse .case-imgs { order: 2; }
.case-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.case-img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  position: relative;
  aspect-ratio: 3/4;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-img figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(15, 15, 15, .85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.case-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -.2px;
}
.case-body p { color: var(--ink-soft); margin: 0 0 22px; }
.case-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
}
.case-link:hover { color: var(--ink); }
@media (max-width: 880px) {
  .case, .case-reverse { grid-template-columns: 1fr; gap: 28px; }
  .case-reverse .case-imgs { order: 0; }
  .gallery { padding: 72px 0; }
}

/* REVIEWS */
.reviews { padding: 100px 0; background: #0f0f0f; }
.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video {
  margin: 0;
  background: #1c1c1c;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}
.video video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #000;
}
.video figcaption { padding: 18px 20px 22px; color: #fff; }
.video figcaption strong { font-family: 'Playfair Display', serif; font-size: 18px; display: block; margin-bottom: 4px; }
.video figcaption span { font-size: 14px; color: rgba(255, 255, 255, .68); font-style: italic; }
@media (max-width: 920px) {
  .videos { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews { padding: 72px 0; }
}

/* WHY */
.why { padding: 100px 0; background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-item {
  padding: 36px 32px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 4px;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}
.why-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
}
.why-item p { color: var(--ink-muted); margin: 0; font-size: 15px; }
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-item { padding: 28px 24px; }
  .why { padding: 72px 0; }
}

/* COVERAGE */
.coverage { padding: 100px 0; background: var(--bg-alt); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.3px;
  margin: 12px 0 18px;
}
.coverage-text p { color: var(--ink-soft); font-size: 16px; }
.city-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.city-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.city-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.city-list li span { color: var(--ink-muted); font-weight: 400; font-size: 13px; }
.coverage-note { color: var(--ink-muted); font-size: 14px; font-style: italic; }
.coverage-map {
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.coverage-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 880px) {
  .coverage-grid { grid-template-columns: 1fr; gap: 32px; }
  .coverage-map { height: 320px; }
  .coverage { padding: 72px 0; }
}

/* CTA */
.cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1815 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 137, 63, .15) 0%, transparent 70%);
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: -.3px;
}
.cta p { font-size: 17px; opacity: .85; margin: 0 0 36px; }
.cta small { display: block; margin-top: 24px; opacity: .58; font-size: 13px; letter-spacing: 1px; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 4px;
}
.faq summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 14px 0 0; color: var(--ink-muted); font-size: 15px; }
@media (max-width: 620px) {
  .faq { padding: 72px 0; }
  .faq summary { font-size: 16px; }
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, .72);
  padding: 72px 0 0;
  border-top: 1px solid rgba(184, 137, 63, .15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p { font-size: 14px; opacity: .68; margin-top: 18px; max-width: 320px; }
.footer-brand .brand-name { color: #fff; }
.footer-col h4 {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 22px 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: .55;
}
.footer-bar a { color: var(--gold-soft); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

/* WHATSAPP FLUTUANTE */
.whats-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 80;
  width: 60px;
  height: 60px;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
  transition: transform .2s ease;
  animation: pulse 2.6s infinite;
}
.whats-float:hover { transform: scale(1.06); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* MOBILE TWEAKS */
@media (max-width: 620px) {
  .hero { min-height: 640px; }
  .hero-content { padding: 80px 24px 90px; }
  .hero-trust { gap: 18px; padding-top: 22px; }
  .hero-trust strong { font-size: 18px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn-large { padding: 18px 26px; font-size: 16px; }
  .whats-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .container { padding: 0 18px; }
}
