:root {
  --radius: 0.875rem;
  --background: oklch(0.985 0.008 80);
  --foreground: oklch(0.15 0.02 40);
  --card: oklch(1 0 0);
  --primary: oklch(0.68 0.19 40);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.96 0.01 80);
  --muted: oklch(0.95 0.008 80);
  --muted-foreground: oklch(0.45 0.02 40);
  --border: oklch(0.9 0.01 60);
  --whatsapp: oklch(0.68 0.16 145);
  --gradient-brand: linear-gradient(135deg, oklch(0.72 0.19 45), oklch(0.6 0.2 30));
  --shadow-brand: 0 20px 60px -20px oklch(0.68 0.19 40 / 0.45);
  --shadow-card: 0 10px 40px -20px oklch(0.2 0.02 40 / 0.15);
  --shadow-whatsapp: 0 12px 32px -8px oklch(0.68 0.16 145 / 0.55);
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; font: inherit; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4, .logo-text strong { font-family: var(--font-display); letter-spacing: -0.02em; }

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid oklch(0.9 0.01 60 / 0.6);
  background: oklch(0.985 0.008 80 / 0.8);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-card);
  outline: 2px solid var(--border);
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1;
}
.logo-text small {
  display: block;
  margin-top: 3px;
  color: var(--muted-foreground);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.main-nav {
  display: none;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 700;
}
.main-nav a:hover { color: var(--primary); }

.header-cta,
.button,
.gallery-cta,
.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.header-cta {
  min-height: 42px;
  background: var(--whatsapp);
  padding: 10px 16px;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: var(--shadow-whatsapp);
}
.button {
  min-height: 56px;
  padding: 16px 28px;
}
.button:hover,
.header-cta:hover,
.gallery-cta:hover,
.footer-wa:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.05);
}
.button-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
}
.button-glass {
  border: 1px solid rgb(255 255 255 / 0.3);
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}
.button-glass:hover { background: rgb(255 255 255 / 0.2); }

.wa-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}
.wa-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg,
.hero-overlay,
.hero-side {
  position: absolute;
  inset: 0;
}
.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  z-index: -2;
  background: linear-gradient(to bottom, oklch(0.15 0.02 40 / 0.7), oklch(0.15 0.02 40 / 0.55), oklch(0.15 0.02 40 / 0.85));
}
.hero-side {
  z-index: -1;
  background: linear-gradient(to right, oklch(0.15 0.02 40 / 0.4), transparent);
}
.hero-inner {
  padding-block: 96px;
  color: #fff;
}
.hero-copy {
  max-width: 770px;
  animation: fadeInUp .5s ease-out both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}
.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: oklch(0.75 0.18 145);
  animation: pulse 1.4s ease-in-out infinite;
}
.hero h1 {
  margin-top: 20px;
  font-size: clamp(2.65rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
}
.hero p {
  max-width: 600px;
  margin-top: 24px;
  color: rgb(255 255 255 / 0.86);
  font-size: 1.125rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 40px;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.875rem;
}
.hero-checks span {
  position: relative;
  padding-left: 27px;
}
.hero-checks span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: oklch(0.78 0.17 145);
}
.hero-checks span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 3px solid oklch(0.78 0.17 145);
  border-bottom: 3px solid oklch(0.78 0.17 145);
  transform: rotate(-45deg);
}

.stats-bar {
  border-block: 1px solid var(--border);
  background: oklch(0.96 0.01 80 / 0.4);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: 40px;
}
.stats-grid article { text-align: center; }
.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 900;
}
.stats-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 690px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading > span {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.25rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
}
.section-heading p {
  margin-top: 16px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.reviews-section {
  background: var(--background);
  padding-block: 56px 80px;
}
.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: oklch(0.75 0.17 75);
}
.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.stars.big svg {
  width: 28px;
  height: 28px;
}
.reviews-layout {
  display: grid;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
}
.score-card {
  text-align: center;
}
.score-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
}
.score-card .stars { margin-top: 8px; }
.score-card p {
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}
.score-card strong { color: var(--foreground); }
.google-word {
  margin-top: 10px;
  color: #4285f4;
  font-size: 1.25rem;
  font-weight: 900;
}
.reviews-carousel {
  position: relative;
  min-width: 0;
}
.reviews-window {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}
.review-slide {
  flex: 0 0 var(--slide-width, 100%);
  min-width: 0;
  padding-inline: 6px;
}
.review-card {
  height: 100%;
  border: 1px solid oklch(0.9 0.01 60 / 0.6);
  border-radius: 14px;
  background: var(--card);
  padding: 12px;
  box-shadow: var(--shadow-card);
}
.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.review-person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}
.avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}
.review-meta {
  min-width: 0;
}
.review-meta strong {
  display: block;
  overflow: hidden;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-meta small {
  color: var(--muted-foreground);
  font-size: 0.62rem;
}
.google-g {
  flex: 0 0 auto;
  color: #4285f4;
  font-size: 0.9rem;
  font-weight: 900;
}
.review-card .stars {
  margin-top: 8px;
}
.review-card .stars svg {
  width: 14px;
  height: 14px;
}
.review-card p {
  margin-top: 6px;
  color: oklch(0.15 0.02 40 / 0.82);
  font-size: 0.7rem;
  line-height: 1.55;
}
.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid oklch(0.9 0.01 60 / 0.6);
  border-radius: 999px;
  background: var(--card);
  color: var(--foreground);
  font-size: 1.35rem;
  box-shadow: var(--shadow-card);
  transform: translateY(-50%);
}
.review-arrow.prev { left: -8px; }
.review-arrow.next { right: -8px; }
.review-arrow:disabled { opacity: .35; }

.services-section,
.gallery-section,
.why-section,
.final-section {
  padding-block: 80px;
}
.services-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}
.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-media img,
.gallery-card:hover img {
  transform: scale(1.05);
}
.service-icon {
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.service-body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.service-body h3 {
  font-size: 1.45rem;
  font-weight: 800;
}
.service-body p {
  flex: 1;
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}
.service-body .button {
  width: 100%;
  min-height: 50px;
  margin-top: 24px;
  padding: 14px 18px;
}

.gallery-section {
  background: oklch(0.96 0.01 80 / 0.4);
}
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.gallery-cta {
  background: var(--foreground);
  padding: 12px 20px;
  color: var(--background);
  font-size: 0.875rem;
}
.gallery-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.15 0.02 40 / 0.6), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-card:hover::after { opacity: 1; }

.why-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
.reasons-grid {
  display: grid;
  gap: 16px;
}
.reason-card {
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.reason-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: #fff;
}
.reason-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}
.reason-card p {
  margin-top: 4px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.55;
}

.final-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--gradient-brand);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.orb {
  position: absolute;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: rgb(255 255 255 / .1);
  filter: blur(42px);
}
.orb-a { right: -80px; top: -80px; }
.orb-b { left: -40px; bottom: -90px; }
.final-grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}
.final-card .final-kicker {
  display: inline-block;
  border-radius: 999px;
  background: rgb(255 255 255 / .2);
  padding: 7px 16px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.final-card h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
}
.final-card p {
  margin-top: 16px;
  color: rgb(255 255 255 / .9);
  line-height: 1.65;
}
.final-card .button {
  margin-top: 32px;
}
.contact-box {
  border: 1px solid rgb(255 255 255 / .2);
  border-radius: 20px;
  background: rgb(255 255 255 / .1);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.contact-box small {
  color: rgb(255 255 255 / .8);
  font-size: .875rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-box strong {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.contact-box p {
  margin-top: 10px;
  font-size: .9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: oklch(0.96 0.01 80 / .5);
}
.footer-grid {
  display: grid;
  gap: 32px;
  padding-block: 48px;
}
.site-footer p,
.site-footer li {
  color: var(--muted-foreground);
  font-size: .875rem;
  line-height: 1.65;
}
.site-footer p { max-width: 340px; margin-top: 16px; }
.site-footer h4 {
  margin: 0;
  font-size: .875rem;
  font-weight: 900;
}
.site-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.footer-wa {
  margin-top: 16px;
  background: var(--whatsapp);
  padding: 9px 16px;
  color: #fff;
  font-size: .875rem;
  box-shadow: var(--shadow-whatsapp);
}
.copyright {
  border-top: 1px solid var(--border);
  padding-block: 20px;
  color: var(--muted-foreground);
  text-align: center;
  font-size: .75rem;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
  animation: waPulse 2s ease-out infinite;
  transition: transform .2s ease;
}
.floating-wa:hover { transform: scale(1.05); }
.floating-wa .wa-icon {
  width: 32px;
  height: 32px;
}

.promo-popup[hidden] { display: none; }
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.15 0.02 40 / .6);
  backdrop-filter: blur(5px);
}
.popup-card {
  position: relative;
  width: min(100%, 448px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow-brand);
  animation: fadeInUp .35s ease both;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: oklch(0.15 0.02 40 / .6);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}
.popup-image {
  height: 192px;
  overflow: hidden;
}
.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.popup-offer {
  position: relative;
  margin: -32px 24px 0;
  border-radius: 20px;
  background: var(--gradient-brand);
  padding: 24px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-brand);
}
.popup-offer span {
  display: inline-block;
  border-radius: 999px;
  background: oklch(0.15 0.02 40 / .25);
  padding: 6px 16px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.popup-offer h3 {
  margin-top: 12px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.popup-offer p {
  margin-top: 12px;
  color: rgb(255 255 255 / .92);
  font-size: .875rem;
  line-height: 1.55;
}
.popup-body {
  padding: 24px;
}
.popup-body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.popup-body li {
  position: relative;
  padding-left: 40px;
  font-size: .875rem;
}
.popup-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: oklch(0.9 0.05 150);
}
.popup-body li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 11px;
  height: 6px;
  border-left: 3px solid oklch(0.45 0.15 150);
  border-bottom: 3px solid oklch(0.45 0.15 150);
  transform: rotate(-45deg);
}
.popup-body .button {
  width: 100%;
  margin-top: 24px;
}
.popup-no {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  color: var(--muted-foreground);
  font-size: .875rem;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.68 0.16 145 / .55); }
  50% { box-shadow: 0 0 0 18px oklch(0.68 0.16 145 / 0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@media (min-width: 640px) {
  .container { width: min(100% - 48px, 1280px); }
  .services-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .hero-inner { padding-block: 144px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .services-grid, .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-layout { grid-template-columns: 200px minmax(0, 1fr); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-grid { grid-template-columns: 1.4fr 1fr; }
}
@media (min-width: 1280px) {
  .review-arrow.prev { left: -12px; }
  .review-arrow.next { right: -12px; }
}
@media (max-width: 639px) {
  .header-cta {
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .header-cta span:last-child { display: none; }
  .hero-inner { padding-block: 84px; }
  .hero h1 { font-size: 2.45rem; }
  .hero p { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-checks { gap: 12px; }
  .services-section, .gallery-section, .why-section, .final-section { padding-block: 68px; }
  .service-body { min-height: auto; }
  .final-card { padding: 28px 20px; border-radius: 28px; }
  .contact-box strong { font-size: 1.2rem; }
  .floating-wa {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}
