:root {
  --radius: .75rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.15 0.02 250);
  --card: oklch(1 0 0);
  --secondary: oklch(0.96 0.01 250);
  --muted-foreground: oklch(0.5 0.02 255);
  --border: oklch(0.92 0.01 250);
  --whatsapp: oklch(0.68 0.18 145);
  --whatsapp-hover: oklch(0.6 0.18 145);
  --brand-navy: oklch(0.18 0.04 255);
  --brand-yellow: oklch(0.85 0.17 90);
  --brand-blue: oklch(0.45 0.18 255);
  --gradient-hero: linear-gradient(135deg, oklch(0.18 0.04 255) 0%, oklch(0.28 0.12 255) 100%);
  --gradient-cta: linear-gradient(135deg, oklch(0.35 0.14 255) 0%, oklch(0.5 0.16 240) 100%);
  --shadow-elegant: 0 20px 50px -20px oklch(0.35 0.14 255 / 0.35);
  --shadow-card: 0 4px 20px -8px oklch(0.15 0.02 250 / 0.15);
  --shadow-whatsapp: 0 8px 24px -6px oklch(0.68 0.18 145 / 0.5);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
body.popup-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
svg { width: 1em; height: 1em; }
.container { width: min(100% - 32px, 1280px); margin-inline: auto; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(0.18 0.04 255 / .95);
  border-bottom: 1px solid rgb(255 255 255 / .05);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.brand span { display: block; color: white; font-weight: 900; line-height: 1.1; letter-spacing: -0.01em; }
.brand small {
  display: block;
  color: var(--brand-yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.main-nav { display: flex; gap: 28px; color: rgb(255 255 255 / .8); font-size: 14px; }
.main-nav a:hover { color: var(--brand-yellow); }
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: white;
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: var(--shadow-whatsapp);
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-button:hover { background: var(--whatsapp-hover); transform: translateY(-1px); }
.whatsapp-button.big { padding: 16px 28px; }
.wa-icon { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }

.hero { position: relative; overflow: hidden; min-height: 620px; isolation: isolate; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { z-index: -1; background: linear-gradient(to bottom, oklch(0.18 0.04 255 / .85), oklch(0.18 0.04 255 / .70), oklch(0.18 0.04 255 / .90)); }
.hero-content { padding-block: 96px 128px; }
.hero-copy { max-width: 672px; color: white; animation: floatIn .6s ease-out both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid oklch(0.85 0.17 90 / .3);
  border-radius: 999px;
  background: oklch(0.85 0.17 90 / .15);
  color: var(--brand-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(40px, 5.5vw, 60px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero h1 span, .final-cta .cta-icon { color: var(--brand-yellow); }
.hero p { max-width: 576px; color: rgb(255 255 255 / .85); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / .25);
  border-radius: 999px;
  color: white;
  padding: 16px 28px;
  font-weight: 800;
}
.outline-button:hover { background: rgb(255 255 255 / .1); }
.hero-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 540px; margin-top: 40px; }
.hero-features div { text-align: center; }
.hero-features i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / .15);
  border-radius: 999px;
  background: rgb(255 255 255 / .1);
  color: var(--brand-yellow);
}
.hero-features span { display: block; margin-top: 8px; color: rgb(255 255 255 / .9); font-size: 12px; font-weight: 700; }

.brands-section { padding-block: 40px; background: white; border-block: 1px solid var(--border); overflow: hidden; }
.mini-title, .section-title > p { color: var(--brand-blue); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.brands-marquee {
  position: relative;
  overflow: hidden;
  contain: paint;
  height: 76px;
}
.brands-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 28px;
  width: max-content;
  padding-block: 4px;
  animation: marquee 34s linear infinite;
}
.brand-pill {
  flex: 0 0 160px;
  min-width: 160px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: var(--shadow-card);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.fade-left, .fade-right { position: absolute; top: 0; bottom: 0; z-index: 2; width: 96px; pointer-events: none; }
.fade-left { left: 0; background: linear-gradient(to right, white, transparent); }
.fade-right { right: 0; background: linear-gradient(to left, white, transparent); }

.testimonials-section { padding-block: 44px; background: oklch(0.98 0.01 240); overflow: hidden; }
.section-title h2 {
  margin: 12px 0 0;
  color: var(--brand-navy);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.section-title small { display: block; margin-top: 16px; color: var(--muted-foreground); }
.section-title.wide { max-width: 768px; }
.section-title span, .about-copy h2 span { color: var(--brand-blue); }
.testimonials-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 40px; align-items: start; margin-top: 32px; }
.google-box { padding-top: 24px; }
.google-box strong { color: var(--brand-navy); font-weight: 900; letter-spacing: .12em; }
.stars { margin-top: 8px; color: var(--brand-yellow); letter-spacing: 2px; font-size: 24px; }
.google-box p, .testimonial-card p { color: var(--muted-foreground); font-size: 14px; }
.google-word { margin-top: 12px; font-size: 24px; font-weight: 800; }
.google-word span:nth-child(1), .google-word span:nth-child(4) { color: #4285f4; }
.google-word span:nth-child(2), .google-word span:nth-child(6) { color: #ea4335; }
.google-word span:nth-child(3) { color: #fbbc05; }
.google-word span:nth-child(5) { color: #34a853; }
.google-cta { margin-top: 20px; font-size: 14px; }
.carousel {
  position: relative;
  min-width: 0;
  padding-inline: 48px;
  contain: layout paint;
}
.carousel-window {
  overflow: hidden;
  contain: strict;
  height: 260px;
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(var(--per-view, 3), minmax(0, 1fr));
  gap: 24px;
  transition: opacity .2s ease-out;
}
.testimonial-slide { min-width: 0; }
.testimonial-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-card);
}
.testimonial-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; color: white; border-radius: 999px; font-size: 14px; font-weight: 900; }
.testimonial-person b { display: block; font-size: 14px; }
.testimonial-person small { color: var(--muted-foreground); font-size: 12px; }
.g-mark { color: #4285f4; font-size: 22px; font-weight: 900; }
.testimonial-card .stars { font-size: 20px; }
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-card);
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.locations-section { padding-block: 64px; background: white; border-block: 1px solid var(--border); }
.locations-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; margin-top: 48px; align-items: stretch; }
.cities-card { padding: 32px; background: var(--secondary); border: 1px solid var(--border); border-radius: 28px; }
.card-heading { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.card-heading > span {
  display: grid; place-items: center; width: 48px; height: 48px;
  color: white; background: var(--brand-blue); border-radius: 12px; box-shadow: var(--shadow-elegant);
}
.card-heading h3 { margin: 0; color: var(--brand-navy); }
.card-heading p { margin: 2px 0 0; color: var(--muted-foreground); font-size: 12px; }
.cities-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cities-list span {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; background: white; border: 1px solid var(--border);
  border-radius: 12px; color: var(--brand-navy); font-size: 14px; font-weight: 700;
}
.cities-list span i { color: var(--brand-blue); flex: 0 0 auto; }
.cities-list span.active { color: white; background: var(--brand-blue); border-color: var(--brand-blue); }
.cities-list span.active i { color: white; }
.quote-card {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 32px; border-radius: 28px; color: white; background: var(--gradient-hero);
}
.quote-card h3 { margin: 0; font-size: clamp(26px, 3vw, 36px); line-height: 1.1; }
.quote-card p { color: rgb(255 255 255 / .85); }
.quote-card ul { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 12px; }
.quote-card li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.quote-card li i { color: var(--brand-yellow); }

.services-section, .trust-section { padding-block: 80px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.service-image { position: relative; height: 176px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.18 0.04 255 / .70), transparent); }
.service-image span {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  display: grid; place-items: center; width: 44px; height: 44px;
  color: white; background: var(--gradient-cta); border-radius: 12px; box-shadow: var(--shadow-elegant);
}
.service-body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.service-body h3 { margin: 0; font-size: 22px; }
.service-body p { flex: 1; color: var(--muted-foreground); font-size: 14px; line-height: 1.65; }
.service-btn { width: 100%; padding-block: 14px; font-size: 14px; }

.about-section, .work-section { padding-block: 80px; background: var(--secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image { position: relative; }
.about-image > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-elegant); }
.years-badge {
  position: absolute; right: -24px; bottom: -24px; padding: 16px 24px;
  color: var(--brand-navy); background: var(--brand-yellow); border-radius: 18px; box-shadow: var(--shadow-elegant);
}
.years-badge strong { display: block; font-size: 32px; line-height: 1; }
.years-badge span { display: block; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.about-copy h2 { margin: 12px 0 0; font-size: clamp(34px, 4.2vw, 48px); line-height: 1.08; letter-spacing: -0.03em; }
.about-copy p:not(.mini-title) { color: var(--muted-foreground); line-height: 1.7; }
.about-copy ul { padding: 0; margin: 24px 0; list-style: none; display: grid; gap: 12px; }
.about-copy li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 700; }
.about-copy li i { color: var(--whatsapp); flex: 0 0 auto; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.trust-grid article { padding: 24px; text-align: center; background: white; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-card); }
.trust-grid i { display: inline-flex; width: 56px; height: 56px; padding: 14px; border-radius: 999px; color: var(--brand-navy); background: oklch(0.85 0.17 90 / .2); }
.trust-grid h3 { margin: 14px 0 0; }
.trust-grid p { color: var(--muted-foreground); font-size: 14px; }

.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.work-grid figure { position: relative; overflow: hidden; margin: 0; aspect-ratio: 3 / 4; border-radius: 18px; box-shadow: var(--shadow-card); }
.work-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-grid figure:hover img { transform: scale(1.05); }
.work-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.18 0.04 255 / .9), transparent); }
.work-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px; color: white; font-size: 14px; font-weight: 800; }
.action-bottom { margin-top: 40px; }

.final-cta { padding-block: 80px; color: white; background: var(--gradient-hero); }
.final-cta .container { max-width: 896px; }
.cta-icon { width: 48px; height: 48px; }
.final-cta h2 { margin: 16px 0 0; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.03em; }
.final-cta p { max-width: 672px; margin: 16px auto 0; color: rgb(255 255 255 / .8); }
.final-cta .whatsapp-button { margin-top: 32px; }
.phone-line { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; color: rgb(255 255 255 / .7); font-size: 14px; }

.site-footer { padding-block: 40px 0; color: rgb(255 255 255 / .8); background: var(--brand-navy); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-brand { align-items: flex-start; }
.site-footer p, .site-footer li { font-size: 14px; }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.site-footer h4 { color: white; margin: 0 0 12px; }
.site-footer p i { margin-right: 8px; }
.copyright { margin-top: 32px; padding-block: 24px; border-top: 1px solid rgb(255 255 255 / .1); color: rgb(255 255 255 / .5); text-align: center; font-size: 12px; }
.floating-whatsapp {
  position: fixed; right: 24px; bottom: 24px; z-index: 30;
  display: grid; place-items: center; width: 56px; height: 56px;
  color: white; background: var(--whatsapp); border-radius: 999px; box-shadow: var(--shadow-whatsapp);
}
.floating-whatsapp .wa-icon { width: 28px; height: 28px; }

.popup { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 16px; }
.popup.open { display: flex; animation: floatIn .25s ease-out both; }
.popup-bg { position: absolute; inset: 0; background: rgb(0 0 0 / .6); backdrop-filter: blur(4px); }
.popup-card { position: relative; width: min(100%, 448px); overflow: hidden; border-radius: 28px; background: white; box-shadow: var(--shadow-elegant); }
.popup-close { position: absolute; top: 12px; right: 12px; z-index: 3; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 999px; color: white; background: rgb(0 0 0 / .5); cursor: pointer; }
.popup-photo { height: 192px; }
.popup-photo img { width: 100%; height: 100%; object-fit: cover; }
.popup-offer { position: relative; margin: -80px 20px 0; padding: 24px; color: white; text-align: center; border-radius: 18px; background: linear-gradient(135deg, oklch(0.28 0.14 255), oklch(0.5 0.16 220)); box-shadow: var(--shadow-elegant); }
.popup-offer span { display: inline-block; padding: 4px 16px; border: 1px solid rgb(255 255 255 / .25); border-radius: 999px; background: rgb(255 255 255 / .15); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.popup-offer h2 { margin: 12px 0 0; font-size: 52px; line-height: 1; }
.popup-offer p { color: rgb(255 255 255 / .9); font-size: 14px; }
.popup-body { padding: 20px 24px 24px; }
.popup-body ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 12px; }
.popup-body li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.popup-body li i { color: var(--whatsapp); }
.popup-body .whatsapp-button { width: 100%; margin-top: 24px; }
.no-thanks { width: 100%; margin-top: 12px; border: 0; background: transparent; color: var(--muted-foreground); font-weight: 700; cursor: pointer; }

@keyframes floatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseWhatsapp { 0%,100% { box-shadow: 0 0 0 0 oklch(0.68 0.18 145 / .6); } 50% { box-shadow: 0 0 0 16px oklch(0.68 0.18 145 / 0); } }
.pulse-wa { animation: pulseWhatsapp 2s infinite; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 14px)); }
}

@media (max-width: 1024px) {
  .testimonials-layout, .locations-grid, .about-grid { grid-template-columns: 1fr; }
  .google-box { text-align: center; }
  .google-cta { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .years-badge { display: none; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .brand small { font-size: 8px; }
  .nav-whatsapp { padding-inline: 12px; }
  .hero-content { padding-block: 80px 96px; }
  .hero-actions, .hero-actions a { width: 100%; }
  .hero-features { grid-template-columns: repeat(3, 1fr); }
  .cities-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1280px); }
  .brand span { font-size: 13px; }
  .brand img { width: 40px; height: 40px; }
  .nav-whatsapp span { display: none; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .hero-features { gap: 10px; }
  .hero-features span { font-size: 10px; }
  .section-title h2, .about-copy h2 { font-size: 34px; }
  .carousel { padding-inline: 38px; }
  .carousel-window { height: 310px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { gap: 12px; }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .whatsapp-button.big { width: 100%; padding-inline: 18px; text-align: center; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
}
