:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.04 250);
  --card: oklch(1 0 0);
  --primary: oklch(0.45 0.18 250);
  --primary-foreground: oklch(0.99 0 0);
  --primary-glow: oklch(0.62 0.18 245);
  --whatsapp: oklch(0.68 0.18 150);
  --whatsapp-hover: oklch(0.62 0.19 150);
  --secondary: oklch(0.96 0.02 250);
  --muted: oklch(0.5 0.03 250);
  --accent: oklch(0.95 0.04 245);
  --border: oklch(0.92 0.01 250);
  --gradient-hero: linear-gradient(135deg, oklch(0.35 0.18 255) 0%, oklch(0.55 0.18 240) 100%);
  --shadow-brand: 0 18px 40px -18px oklch(0.45 0.18 250 / 0.45);
  --shadow-whatsapp: 0 12px 28px -10px oklch(0.6 0.2 150 / 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(100% - 32px, 1280px); margin-inline: auto; }

.topbar { background: var(--primary); color: var(--primary-foreground); }
.topbar__inner { display: flex; justify-content: space-between; gap: 18px; padding-block: 8px; font-size: 13px; }
.topbar__link { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: oklch(1 0 0 / 0.9);
  backdrop-filter: blur(12px);
}
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px oklch(0.45 0.18 250 / 0.18); }
.brand strong { display: block; color: var(--primary); font-size: 18px; line-height: 1; font-weight: 900; }
.brand small { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; color: oklch(0.26 0.04 250); }
.main-nav a:hover { color: var(--primary); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--foreground); border-radius: 2px; }

.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: var(--whatsapp);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-whatsapp);
  transition: transform .18s ease, background .18s ease;
  white-space: nowrap;
}
.wa-button:hover { background: var(--whatsapp-hover); transform: scale(1.02); }
.wa-button svg { width: 20px; height: 20px; fill: currentColor; }
.wa-button--large { min-height: 56px; padding-inline: 28px; font-size: 16px; }
.wa-button--small { min-height: 40px; padding-inline: 16px; font-size: 14px; }
.wa-button--outline { border: 2px solid var(--whatsapp); background: white; color: var(--whatsapp); box-shadow: none; }
.wa-button--outline:hover { color: white; }

.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 670px; background: var(--primary); }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  scale: 1.1;
  background: url("assets/hero-main.jpeg") center/cover no-repeat;
  filter: blur(4px) brightness(.82) contrast(1.05);
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, oklch(0.08 0.03 255 / .15), oklch(0.06 0.03 255 / .55) 82%),
    linear-gradient(135deg, oklch(0.08 0.03 255 / .55), oklch(0.13 0.06 250 / .42), oklch(0.18 0.08 245 / .5));
}
.hero__content { max-width: 960px; padding-block: 96px 114px; text-align: center; color: white; }
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pill--light { border: 1px solid oklch(1 0 0 / .3); background: oklch(1 0 0 / .1); color: white; backdrop-filter: blur(8px); }
.hero h1 { margin: 24px 0 0; font-size: clamp(40px, 6vw, 72px); line-height: 1.08; font-weight: 900; letter-spacing: 0; text-wrap: balance; text-shadow: 0 4px 24px rgb(0 0 0 / .6); }
.hero h1 span { color: var(--primary-glow); }
.hero p { max-width: 700px; margin: 24px auto 0; color: oklch(1 0 0 / .9); font-size: 18px; text-shadow: 0 2px 12px rgb(0 0 0 / .5); }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ghost-button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; border: 2px solid oklch(1 0 0 / .4); border-radius: 999px; background: oklch(1 0 0 / .05); padding-inline: 28px; color: white; font-size: 14px; font-weight: 800; backdrop-filter: blur(8px); }
.ghost-button:hover { background: oklch(1 0 0 / .15); }
.hero__stats { margin-top: 48px; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.hero__stats strong { display: block; font-size: 30px; line-height: 1; font-weight: 900; }
.hero__stats span { display: block; margin-top: 8px; color: oklch(1 0 0 / .72); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.brand-strip { padding: 40px 0; border-block: 1px solid var(--border); background: oklch(0.96 0.02 250 / .4); }
.section-kicker { margin: 0 0 24px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker--center { text-align: center; }
.marquee-mask { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.brand-marquee { display: flex; width: max-content; gap: 56px; animation: marquee 35s linear infinite; }
.brand-card { width: 176px; height: 96px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border); border-radius: 12px; background: white; padding: 18px; box-shadow: 0 2px 8px rgb(15 23 42 / .05); }
.brand-card img { max-height: 64px; object-fit: contain; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 80px 0; }
.section-title { max-width: 672px; margin-inline: auto; text-align: center; }
.section-title--left { margin: 0; text-align: left; }
.section-title h2, .about-section h2, .cta-box h2 { margin: 16px 0 0; font-size: clamp(32px, 4vw, 42px); line-height: 1.15; font-weight: 900; letter-spacing: 0; text-wrap: balance; }
.section-title p, .about-section > p { margin: 12px 0 0; color: var(--muted); }
.rating-line { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.google-mark { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4); color: white; font-weight: 900; font-size: 14px; }
.stars { color: #fbbc05; letter-spacing: 1px; }
.reviews-wrap { margin-top: 40px; }
.review-marquee { display: flex; width: max-content; gap: 24px; padding-inline: 16px; animation: marquee 55s linear infinite; }
.review-card { width: min(360px, 86vw); flex: 0 0 auto; margin: 0; padding: 20px; border: 1px solid var(--border); border-radius: 16px; background: var(--card); box-shadow: 0 2px 9px rgb(15 23 42 / .05); }
.review-card header { display: flex; align-items: center; gap: 12px; }
.review-card header div { min-width: 0; flex: 1; }
.review-card strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.review-card small { color: var(--muted); font-size: 12px; }
.avatar { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--gradient-hero); color: white; font-weight: 900; }
.review-card blockquote { margin: 12px 0 0; color: oklch(0.28 0.03 250); font-size: 14px; }

.video-section { padding-top: 72px; }
.video-container { max-width: 480px; }
.phone-video { width: min(100%, 448px); aspect-ratio: 9 / 16; margin: 40px auto 0; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: black; box-shadow: var(--shadow-brand); }
.phone-video video { width: 100%; height: 100%; object-fit: cover; }

.services-grid { margin-top: 48px; display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--card); box-shadow: 0 2px 8px rgb(15 23 42 / .05); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-brand); }
.service-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }
.service-card:hover > img { transform: scale(1.05); }
.service-card > div { padding: 24px; }
.service-card h3 { margin: 0; font-size: 18px; line-height: 1.25; }
.service-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.service-card ul { margin: 16px 0 20px; padding: 0; list-style: none; color: oklch(0.28 0.03 250); font-size: 14px; }
.service-card li { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.service-card li::before, .areas-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex: 0 0 auto; }

.gallery-section, .about-section, .contact-section { background: oklch(0.96 0.02 250 / .4); }
.gallery-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid button { aspect-ratio: 1; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: var(--card); box-shadow: 0 2px 8px rgb(15 23 42 / .05); cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid button:hover img { transform: scale(1.1); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-section p { color: var(--muted); }
.reasons-grid { margin: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.reasons-grid h3 { margin: 0; font-size: 16px; }
.reasons-grid p { margin: 4px 0 0; font-size: 14px; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.about-photos img { width: 100%; object-fit: cover; border-radius: 16px; }
.about-photos > img { height: 100%; aspect-ratio: 3 / 4; }
.about-photos div { display: grid; gap: 12px; }
.about-photos div img { aspect-ratio: 1; }

.cta-section { padding: 64px 0; }
.cta-box { border-radius: 28px; padding: 56px 40px; text-align: center; color: white; background: var(--gradient-hero); box-shadow: var(--shadow-brand); overflow: hidden; }
.cta-box h2 { margin-top: 0; }
.cta-box p { max-width: 580px; margin: 12px auto 32px; color: oklch(1 0 0 / .86); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-list { margin-top: 32px; display: grid; gap: 20px; }
.contact-list small { display: block; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a:not(.wa-button) { color: var(--primary); font-size: 18px; font-weight: 800; }
.contact-list p { margin: 0; color: oklch(0.28 0.03 250); }
.areas-card { border: 1px solid var(--border); border-radius: 28px; background: var(--card); padding: 32px; box-shadow: 0 2px 8px rgb(15 23 42 / .05); }
.areas-card h3 { margin: 0; font-size: 22px; }
.areas-card p { color: var(--muted); font-size: 14px; }
.areas-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; margin: 20px 0 24px; list-style: none; font-size: 14px; }
.areas-card li { display: flex; align-items: center; gap: 8px; }

.footer { background: var(--primary); color: var(--primary-foreground); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding: 48px 0; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 2px oklch(1 0 0 / .3); }
.footer-brand strong { display: block; font-size: 18px; }
.footer-brand small, .footer p, .footer li { color: oklch(1 0 0 / .75); font-size: 14px; }
.footer p { max-width: 430px; }
.footer h4 { margin: 0; color: oklch(1 0 0 / .82); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.footer ul { padding: 0; margin: 16px 0 0; list-style: none; }
.footer li { margin-top: 8px; }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / .1); padding: 16px; text-align: center; color: oklch(1 0 0 / .62); font-size: 12px; }

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--whatsapp);
  box-shadow: var(--shadow-whatsapp);
  transition: transform .2s ease;
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa::before { content: ""; position: absolute; inset: -4px; z-index: -1; border-radius: inherit; background: var(--whatsapp); opacity: .3; animation: ping 1.4s cubic-bezier(0, 0, .2, 1) infinite; }
.floating-wa svg { width: 32px; height: 32px; fill: currentColor; }
@keyframes ping { 75%, 100% { transform: scale(1.35); opacity: 0; } }

.lightbox { width: min(92vw, 980px); padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: transparent; }
.lightbox::backdrop { background: rgb(4 12 22 / .82); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; background: black; }
.lightbox__close { position: fixed; top: 18px; right: 22px; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: white; color: var(--foreground); font-size: 30px; line-height: 1; cursor: pointer; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 82px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 22px; background: white; border-bottom: 1px solid var(--border); box-shadow: 0 20px 40px rgb(15 23 42 / .12); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: block; }
  .header__inner > .wa-button { display: none; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1280px); }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__link { display: none; }
  .header__inner { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .main-nav { top: 72px; }
  .hero { min-height: auto; }
  .hero__content { padding-block: 76px 88px; }
  .hero h1 { font-size: 39px; }
  .hero p { font-size: 16px; }
  .hero__stats { gap: 26px; }
  .brand-card { width: 150px; height: 84px; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-photos { grid-template-columns: 1fr; }
  .cta-box { padding: 42px 22px; border-radius: 22px; }
  .areas-card { padding: 24px; border-radius: 20px; }
  .areas-card ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-wa { width: 58px; height: 58px; right: 16px; bottom: 16px; }
}
