:root {
  --bg: #f4fafb;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #153041;
  --muted: #5f7785;
  --line: rgba(21, 48, 65, 0.1);
  --primary: #0d9eb4;
  --primary-dark: #08788a;
  --secondary: #e9f7fa;
  --accent: #0f6e85;
  --success: #1aa06d;
  --shadow: 0 24px 60px rgba(20, 55, 75, 0.12);
  --shadow-soft: 0 18px 44px rgba(20, 55, 75, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(13, 158, 180, 0.12), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(13, 158, 180, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fdff 0%, #eef8fb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-spacing {
  padding: 104px 0;
}

.demo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 12px 18px;
  background: #0b2430;
  color: #eff8fb;
  text-align: center;
}

.demo-banner span {
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-banner p {
  margin: 0;
  color: rgba(239, 248, 251, 0.82);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  width: var(--container);
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #edf7fa;
  color: var(--text);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 18px 32px rgba(13, 158, 180, 0.24);
}

.button-secondary {
  border-color: rgba(13, 158, 180, 0.2);
  background: #fff;
  color: var(--text);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366, #149c52);
  color: #fff;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.22);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 10% -8% auto auto;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 158, 180, 0.16), transparent 68%);
  filter: blur(16px);
}

.hero-grid,
.why-grid,
.about-grid,
.contact-shell,
.reviews-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(13, 158, 180, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: "Sora", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-text,
.section-heading p,
.about-copy p,
.contact-copy > p,
.benefit-card p,
.service-card p,
.review-card span,
.contact-note,
.footer-meta {
  color: var(--muted);
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-badges,
.hero-actions-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  margin-top: 24px;
}

.hero-actions-row {
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(13, 158, 180, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.pill-muted {
  background: rgba(233, 247, 250, 0.9);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.meta-card,
.service-card,
.benefit-card,
.about-copy,
.contact-copy,
.contact-form,
.review-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.meta-card {
  padding: 18px 20px;
}

.meta-card span,
.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image-shell {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 247, 250, 0.7));
  box-shadow: var(--shadow);
}

.hero-image-shell img,
.why-visual img,
.about-visual img,
.review-feature img {
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.hero-image-shell img {
  aspect-ratio: 5 / 6;
}

.hero-floating-card {
  position: relative;
  width: min(320px, 82%);
  padding: 20px 22px;
  border: 1px solid rgba(13, 158, 180, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-visual-stack {
  display: grid;
  gap: 16px;
  margin: -58px 0 0 auto;
  width: min(360px, 92%);
}

.hero-floating-card p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(13, 158, 180, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-mini-card img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
}

.hero-mini-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  padding: 0 0 26px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip-grid article,
.reviews-summary div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.trust-strip-grid strong,
.reviews-summary strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.trust-strip-grid span,
.reviews-summary span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.align-center p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid,
.benefits-grid {
  display: grid;
  gap: 18px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.benefit-card,
.review-card {
  padding: 24px;
}

.service-spotlight {
  position: sticky;
  top: 108px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #f8feff, #eef7fa);
  box-shadow: var(--shadow-soft);
}

.service-spotlight img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-spotlight-copy {
  padding: 24px;
}

.service-spotlight-copy h3 {
  margin-bottom: 12px;
}

.service-spotlight-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card h3,
.benefit-card strong {
  margin-bottom: 10px;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 158, 180, 0.14), rgba(8, 120, 138, 0.08));
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.why-copy,
.about-copy,
.contact-copy {
  padding: 34px;
}

.why-visual img,
.about-visual img,
.review-feature img {
  min-height: 100%;
  box-shadow: var(--shadow);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-highlights div {
  padding: 18px;
  border: 1px solid rgba(13, 158, 180, 0.12);
  border-radius: 20px;
  background: rgba(233, 247, 250, 0.76);
}

.about-highlights strong {
  display: block;
  font-size: 1.5rem;
}

.about-highlights span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-quote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 18px 18px 0;
  background: rgba(233, 247, 250, 0.8);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.reviews-summary strong {
  font-size: 1.4rem;
}

.review-feature img {
  aspect-ratio: 5 / 4;
}

.reviews-list {
  display: grid;
  gap: 18px;
}

.review-card p {
  margin: 10px 0 8px;
  font-size: 1.06rem;
  font-weight: 700;
}

.stars {
  color: #f3b53f;
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-card {
  display: block;
  padding: 18px 20px;
}

.contact-actions {
  margin-top: 24px;
}

.contact-note {
  margin-top: 18px;
  font-size: 0.94rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 48, 65, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid transparent;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 158, 180, 0.12);
}

.contact-form small {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 0 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid p,
.footer-grid a {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-disclaimer {
  max-width: 42ch;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #149c52);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 38px rgba(37, 211, 102, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .why-grid,
  .about-grid,
  .contact-shell,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid,
  .services-layout,
  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-spotlight {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .section-spacing {
    padding: 84px 0;
  }

  .site-header {
    width: calc(100vw - 24px);
    margin-top: 12px;
    padding: 12px 14px;
    gap: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-badges,
  .hero-actions-row,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .pill {
    width: 100%;
  }

  .hero-meta,
  .services-grid,
  .benefits-grid,
  .about-highlights,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-card {
    grid-template-columns: 1fr;
  }

  .hero-mini-card img {
    width: 100%;
    height: 180px;
  }

  .hero-floating-card {
    width: 100%;
  }

  .hero-visual-stack {
    width: 100%;
    margin-top: 16px;
  }

  .why-copy,
  .about-copy,
  .contact-copy,
  .contact-form,
  .service-card,
  .benefit-card,
  .review-card {
    padding: 22px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
