:root {
  --bg: #f7f4eb;
  --text: #17202a;
  --surface: #ffffff;
  --surface-soft: #fffaf0;
  --line: #e4dac4;
  --primary: #0e6d58;
  --primary-2: #0b4b69;
  --highlight: #f4a300;
  --bg-photo: url("antibes-bg.jpg");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #f7f4eb 0%, #eff5f6 100%);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(
      130deg,
      rgba(247, 244, 235, 0.86) 0%,
      rgba(247, 244, 235, 0.78) 35%,
      rgba(231, 241, 244, 0.82) 100%
    ),
    var(--bg-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(2px);
  opacity: 0.35;
}

.bg-shape-a {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -90px;
  border-radius: 41% 59% 47% 53% / 55% 37% 63% 45%;
  background: linear-gradient(145deg, #f4a300, #f27a54);
  animation: floatA 9s ease-in-out infinite;
}

.bg-shape-b {
  width: 260px;
  height: 260px;
  bottom: -90px;
  left: -70px;
  border-radius: 53% 47% 64% 36% / 30% 60% 40% 70%;
  background: linear-gradient(140deg, #0b4b69, #0e6d58);
  animation: floatB 12s ease-in-out infinite;
}

.header {
  width: min(1100px, 92vw);
  margin: 1.1rem auto 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(7px);
  background: color-mix(in oklab, var(--surface) 84%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 12px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.25rem;
}

.brand-text {
  font-family: "Chivo", sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav-cta {
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1rem;
}

main {
  width: min(1100px, 92vw);
  margin: 1.5rem auto 3rem;
}

.hero {
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(140deg, #fffef7 10%, #edf9f4 95%);
  box-shadow: 0 12px 34px rgba(20, 44, 34, 0.09);
}

.kicker {
  margin: 0;
  font-weight: 700;
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Chivo", sans-serif;
  margin: 0.45rem 0 0.7rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 15ch;
}

.accent {
  color: var(--primary);
  display: inline-block;
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 62ch;
  margin-bottom: 1.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pill-row span {
  border: 1px solid var(--line);
  background: #ffffffcc;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.btn-wa {
  color: #fff;
  background: linear-gradient(120deg, #1f9f63, #127a4b);
}

section {
  margin-top: 1.35rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in oklab, var(--surface) 90%, #f8f2df 10%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: var(--surface-soft);
}

.services-note {
  margin-top: 0.9rem;
  font-weight: 600;
  color: #21485f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: linear-gradient(160deg, #ffffff, #f8fbff);
}

.about ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.schedule {
  font-weight: 600;
  color: #21485f;
}

.zone-detail {
  max-width: 70ch;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff, #f8fbff);
}

.faq-item h3 {
  font-size: 1.03rem;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.contact-box a {
  color: var(--primary-2);
  font-weight: 600;
}

.contact-form {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #ffffffde;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ced8dd;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #38556a;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  width: min(1100px, 92vw);
  margin: 0 auto 1.8rem;
  text-align: center;
  color: #304556;
  font-size: 0.95rem;
}

.footer p {
  margin: 0.3rem 0;
}

.footer-meta {
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--primary-2);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, #1f9f63, #127a4b);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.legal-main {
  width: min(950px, 92vw);
  margin: 1.8rem auto 3rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in oklab, var(--surface) 92%, #f8f2df 8%);
  padding: 1.3rem;
}

.legal-card h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.legal-card h2 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(16px) rotate(4deg);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: flex-start;
    width: min(220px, 70vw);
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
  }

  .nav.open {
    display: flex;
  }

  .header {
    position: relative;
    top: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.35rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    font-size: 0.92rem;
    padding: 0.65rem 0.85rem;
  }
}
