:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #4f5b60;
  --accent: #e76f51;
  --accent-2: #2a9d8f;
  --sun: #f4a261;
  --paper: #f7f3ed;
  --sand: #eadcc7;
  --stone: #f3eee7;
  --shadow: 0 22px 60px rgba(31, 42, 46, 0.16);
  --radius-xl: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(31, 42, 46, 0.02) 0, rgba(31, 42, 46, 0.02) 1px, transparent 1px),
    linear-gradient(30deg, rgba(31, 42, 46, 0.015) 0, rgba(31, 42, 46, 0.015) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
  opacity: 0.35;
  z-index: -1;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

.accent {
  position: relative;
  display: inline-block;
  padding: 0 2px;
  font-weight: 600;
  color: var(--ink);
  z-index: 0;
}

.accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 8px;
  border-radius: 999px;
  background: rgba(231, 111, 81, 0.28);
  z-index: -1;
}

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

.section {
  padding: 104px 0;
  scroll-margin-top: 110px;
}

.section-divider {
  position: relative;
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: 118px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 54px;
  pointer-events: none;
  z-index: 0;
}

.section-divider::before {
  top: 0;
  background: linear-gradient(120deg, rgba(231, 111, 81, 0.2), rgba(42, 157, 143, 0.18));
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.section-divider::after {
  bottom: 0;
  background: linear-gradient(120deg, rgba(42, 157, 143, 0.16), rgba(244, 162, 97, 0.22));
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.section-divider > .container {
  position: relative;
  z-index: 1;
}

.section.alt {
  background: var(--stone);
}

.backdrop {
  position: fixed;
  inset: -30% -10% auto -10%;
  height: 70vh;
  background:
    radial-gradient(closest-side at 15% 25%, rgba(244, 162, 97, 0.32), transparent 60%),
    radial-gradient(closest-side at 70% 20%, rgba(42, 157, 143, 0.25), transparent 62%),
    radial-gradient(closest-side at 45% 60%, rgba(231, 111, 81, 0.2), transparent 55%);
  opacity: 0.85;
  z-index: -2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 42, 46, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(231, 111, 81, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(231, 111, 81, 0.32);
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(31, 42, 46, 0.2);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(31, 42, 46, 0.06);
  transform: translateY(-1px);
}

.hero {
  padding-top: 136px;
  padding-bottom: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  font-weight: 600;
  color: var(--accent-2);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fdf3e4 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(231, 111, 81, 0.2);
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-card-header {
  display: grid;
  gap: 8px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 157, 143, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.8rem;
}

.hero-card-title {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.hero-card-subtitle {
  color: var(--muted);
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.hero-list li {
  padding-left: 22px;
  position: relative;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 42, 46, 0.08);
}

.hero-card-label {
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.strip {
  background: var(--sand);
  padding: 40px 0 56px;
}

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

.trust-item {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 42, 46, 0.08);
  display: grid;
  gap: 10px;
  min-height: 170px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(42, 157, 143, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-title {
  font-weight: 700;
  margin: 0;
}

.trust-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 600px;
}

.grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(31, 42, 46, 0.08);
  box-shadow: 0 14px 40px rgba(31, 42, 46, 0.08);
  display: grid;
  gap: 16px;
  min-height: 320px;
  grid-template-rows: auto auto 1fr auto;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(231, 111, 81, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.card-list li {
  padding-left: 18px;
  position: relative;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 42, 46, 0.08);
}

.step-number {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.price-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(31, 42, 46, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(31, 42, 46, 0.08);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(31, 42, 46, 0.06);
}

.price-row:last-child {
  border-bottom: none;
}

.price-title {
  font-weight: 600;
}

.price-desc {
  color: var(--muted);
  margin: 6px 0 0;
}

.price-range {
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent-2);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.calc-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.calc-form {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, rgba(42, 157, 143, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  border: 1px solid rgba(42, 157, 143, 0.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.calc-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  min-width: 0;
}

input,
select,
textarea {
  font: inherit;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 46, 0.15);
  padding: 12px 14px;
  background: #fff;
  width: 100%;
  max-width: 100%;
}

input[type="file"] {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  background: rgba(31, 42, 46, 0.04);
  border-style: dashed;
  overflow: hidden;
}

.form-hint {
  margin: -6px 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--accent-2);
  width: auto;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 2px solid rgba(42, 157, 143, 0.6);
  outline-offset: 3px;
}

fieldset {
  border: 1px solid rgba(31, 42, 46, 0.12);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
  min-width: 0;
}

legend {
  padding: 0 6px;
  font-weight: 600;
  color: var(--muted);
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: var(--muted);
}

.calc-result {
  padding: 16px;
  border-radius: 16px;
  background: rgba(42, 157, 143, 0.12);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(42, 157, 143, 0.18);
}

.calc-result-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.calc-result-note {
  color: var(--muted);
  margin: 0;
}

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 42, 46, 0.08);
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(31, 42, 46, 0.08);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.carousel {
  position: relative;
  display: grid;
  gap: 18px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scroll-padding: 2px;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(31, 42, 46, 0.2);
  border-radius: 999px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(31, 42, 46, 0.08);
  border-radius: 999px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(31, 42, 46, 0.08);
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
  display: grid;
  gap: 10px;
  min-height: 230px;
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.testimonial-text {
  margin: 0;
  color: var(--muted);
}

.testimonial-author {
  margin: 0;
  font-weight: 600;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(31, 42, 46, 0.12);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(31, 42, 46, 0.16);
  cursor: pointer;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(31, 42, 46, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.is-active {
  width: 22px;
  background: var(--accent-2);
}

.carousel-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  width: 100%;
  max-width: 100%;
}

.contact-grid > * {
  min-width: 0;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin: 24px 0 16px;
}

.contact-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 42, 46, 0.08);
}

.contact-label {
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
}

.contact-note {
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.form-disclaimer {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(15, 90, 47, 0.35);
  min-height: 52px;
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 90, 47, 0.4);
}

.floating-whatsapp-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.floating-whatsapp-icon svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp-text {
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}

.footer {
  background: #1f2a2e;
  color: #fff;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin: 32px 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .calc-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card {
    flex-basis: 80%;
  }

  .carousel-btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .section-divider {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .hero {
    padding-top: 110px;
  }

  .backdrop {
    inset: -25% 0 auto 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form {
    padding: 22px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .calc-badge {
    right: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 12px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .floating-whatsapp-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

  .carousel-track {
    scroll-behavior: auto;
  }
}
