:root {
  --bg: #fff9f0;
  --surface: #fffefb;
  --ink: #1e2633;
  --muted: #5f6472;
  --primary: #e06f22;
  --primary-dark: #b95013;
  --teal: #0b6e6b;
  --ring: #f5d19f;
  --line: #e6dbc9;
  --shadow: 0 24px 48px rgba(21, 34, 46, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffefb 0%, #fff7ea 50%, #fffef7 100%);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

p {
  margin: 0;
}

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

.wrapper {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.ambient-glow {
  position: fixed;
  z-index: -1;
  filter: blur(70px);
  opacity: 0.5;
}

.ambient-glow-a {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(224, 111, 34, 0.35);
  top: -70px;
  right: -40px;
  animation: drift 16s ease-in-out infinite;
}

.ambient-glow-b {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(11, 110, 107, 0.3);
  bottom: -110px;
  left: -70px;
  animation: drift 18s ease-in-out infinite reverse;
}

.top-contact {
  background: linear-gradient(120deg, #0d6d69 0%, #154f6b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.top-contact-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.top-phone {
  font-size: clamp(1.1rem, 2.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #ffffff;
  line-height: 1.2;
}

.top-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 700;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.06);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 252, 245, 0.88);
  border-bottom: 1px solid rgba(229, 219, 203, 0.9);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 180ms ease;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform 220ms ease, opacity 180ms ease;
}

.hero {
  padding-top: 5.5rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--teal);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0.7rem 0 1rem;
  max-width: 11ch;
}

.hero-text {
  font-size: 1rem;
  color: var(--muted);
  max-width: 53ch;
}

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(176, 80, 21, 0.28);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.btn-whatsapp {
  background: #1ba851;
  color: #fff;
}

.btn-call {
  background: #0b6e6b;
  color: #fff;
}

.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fffefc 0%, #fff6e7 100%);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 1.9rem;
}

.hero-panel p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.hero-panel ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--ink);
}

.hero-panel li + li {
  margin-top: 0.35rem;
}

.hero-stats {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px dashed #d4c3aa;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stats span {
  font-size: 0.74rem;
  color: var(--muted);
}

.section {
  padding: 4.7rem 0;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-top: 0.4rem;
  max-width: 19ch;
}

.card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid #eadfce;
  border-radius: 20px;
  padding: 1.2rem;
  min-height: 210px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #d7b98e;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-accent {
  background:
    radial-gradient(circle at 7% 15%, rgba(244, 201, 138, 0.35), transparent 35%),
    radial-gradient(circle at 90% 78%, rgba(119, 171, 169, 0.25), transparent 34%),
    #fffdf8;
  border-top: 1px solid #f2e6d8;
  border-bottom: 1px solid #f2e6d8;
}

.process-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  border: 1px solid #e9dbca;
  padding: 1.1rem;
  min-height: 200px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffedd1;
  color: #9a521c;
  font-weight: 700;
  font-size: 0.85rem;
}

.process-step h3 {
  margin-top: 0.9rem;
  font-size: 1.3rem;
}

.process-step p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e8dac8;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
}

.faq-item p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial {
  margin: 0;
  border-radius: 20px;
  border: 1px solid #e6d8c7;
  background: #fffefc;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 24px rgba(27, 37, 45, 0.06);
}

.testimonial p {
  color: #3e4451;
}

.testimonial cite {
  display: block;
  margin-top: 0.9rem;
  color: #8a5a30;
  font-size: 0.88rem;
  font-style: normal;
}

.contact-section {
  padding-top: 4.7rem;
  padding-bottom: 5.3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
  max-width: 15ch;
}

.contact-copy p:last-child {
  margin-top: 0.9rem;
  color: var(--muted);
  max-width: 44ch;
}

.contact-direct {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: #21414a;
}

.contact-form {
  border: 1px solid #e8dccd;
  border-radius: 24px;
  background: #fffdfa;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: #4a5160;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e3d5c3;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d69a4e;
  box-shadow: 0 0 0 3px rgba(241, 195, 133, 0.35);
}

.full-width {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.25rem;
  margin-top: 0.2rem;
  font-size: 0.86rem;
  color: #244954;
}

.site-footer {
  border-top: 1px solid #eadfce;
  background: #fff8eb;
}

.footer-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: #5d626f;
  font-size: 0.9rem;
}

.footer-row a {
  color: var(--teal);
  font-weight: 600;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  gap: 0.6rem;
}

.floating-btn {
  border-radius: 999px;
  padding: 0.62rem 0.96rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(30, 38, 51, 0.24);
}

.floating-call {
  background: #0b6e6b;
}

.floating-whatsapp {
  background: #1ba851;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .card-grid,
  .process-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .wrapper {
    width: min(1120px, calc(100% - 1.4rem));
  }

  .nav {
    height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .top-contact-row {
    min-height: 66px;
    justify-content: flex-start;
  }

  .top-phone {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 252, 245, 0.98);
    border-bottom: 1px solid #e8dac6;
    padding: 0.9rem 1.4rem 1.2rem;
    display: grid;
    gap: 0.65rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav.nav-open .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.nav-open .menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .card-grid,
  .process-grid,
  .testimonial-grid,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 0.6rem;
    left: 0.6rem;
    bottom: 0.55rem;
    justify-content: center;
  }

  .floating-btn {
    flex: 1;
    text-align: center;
  }
}

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