:root {
  --ink: #26363b;
  --muted: #617174;
  --primary: #5e7f88;
  --primary-dark: #3f5f68;
  --cream: #f7f0e7;
  --warm: #fbf8f2;
  --beige: #e8dccd;
  --mint: #cfe4d7;
  --mint-dark: #7fa994;
  --white: #ffffff;
  --line: #e4ddd2;
  --shadow: 0 20px 50px rgba(45, 64, 69, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 221, 210, 0.8);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}

.brand picture {
  display: block;
  line-height: 0;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 176px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

.brand-logo[src=""] {
  display: none;
}

.brand-fallback {
  display: none;
  font-weight: 800;
  color: var(--primary-dark);
}

.brand-logo:not([src]),
.brand-logo:not([src]) + .brand-fallback {
  display: inline-flex;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px 0;
  border-radius: 99px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
}

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

.button-primary {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(63, 95, 104, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #334f57;
}

.button-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--line);
}

.button-light {
  background: var(--white);
  color: var(--primary-dark);
}

.hero {
  padding-top: 72px;
  background:
    linear-gradient(130deg, rgba(207, 228, 215, 0.58), rgba(247, 240, 231, 0.72) 42%, rgba(251, 248, 242, 0.95)),
    var(--warm);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.reversed {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero-subtitle {
  margin: 24px 0 14px;
  font-size: 1.22rem;
  color: #40565c;
}

.hero-support,
.section-heading p,
.split-grid p,
.closing-text,
.note {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 12px;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-stack.align-left {
  align-items: flex-start;
  margin-top: 28px;
}

.cta-microcopy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-microcopy {
  color: #4f666c;
}

.final-box .cta-microcopy {
  color: rgba(255, 255, 255, 0.82);
  margin: 14px auto 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #435b61;
  border: 1px solid rgba(228, 221, 210, 0.85);
  font-size: 0.88rem;
}

.hero-media,
.image-frame,
.value-panel,
.differential-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-image,
.image-frame img,
.value-panel img,
.differential-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.soft-card,
.step-card,
.team-card,
.faq details,
.info-list div,
.three-points article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(45, 64, 69, 0.06);
}

.soft-card {
  padding: 22px;
  font-weight: 700;
  color: #40565c;
}

.problem-card {
  padding: 0;
  overflow: hidden;
  font-weight: 400;
}

.problem-card summary {
  position: relative;
  min-height: 90px;
  padding: 22px 52px 22px 22px;
  cursor: pointer;
  font-weight: 800;
  color: #40565c;
  list-style: none;
}

.problem-card summary::-webkit-details-marker {
  display: none;
}

.problem-card summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--primary-dark);
  font-weight: 850;
}

.problem-card[open] summary::after {
  content: "-";
}

.problem-card-body {
  padding: 0 22px 22px;
}

.problem-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 400;
}

.text-cta,
.faq-micro-cta {
  display: inline-flex;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.text-cta:hover,
.text-cta:focus-visible,
.faq-micro-cta:hover,
.faq-micro-cta:focus-visible {
  text-decoration: underline;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.value {
  background: #f2eadf;
}

.prebooking {
  background: #eef3ef;
}

.value-panel {
  padding: 16px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #40565c;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mint-dark);
}

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

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--primary-dark);
  font-weight: 850;
  margin-bottom: 16px;
}

.step-card p {
  margin: 0;
  color: #40565c;
}

.gentle-steps .step-card h3 {
  color: var(--primary-dark);
}

.gentle-steps .step-card p {
  color: var(--muted);
}

.closing-text {
  max-width: 700px;
  margin: 34px auto 0;
  text-align: center;
}

.modality {
  background: #eef3ef;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 26px;
}

.info-list div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
}

.info-list strong {
  color: var(--primary-dark);
}

.info-list span {
  color: var(--muted);
}

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

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: center top;
}

.team-card div {
  padding: 24px;
}

.team-card p {
  color: var(--muted);
  margin: 0;
}

.note {
  max-width: 800px;
  margin: 28px auto 0;
  text-align: center;
}

.differential {
  background: var(--cream);
}

.differential-panel {
  padding: 16px;
}

.three-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.three-points article {
  padding: 16px;
}

.three-points h3 {
  color: var(--primary-dark);
}

.three-points p {
  margin: 0;
}

.instagram-feed {
  background: #eef3ef;
}

.instagram-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.instagram-viewport {
  overflow: hidden;
}

.instagram-track {
  display: flex;
  transition: transform 0.28s ease;
}

.instagram-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  padding: 0 18px;
}

.instagram-slide iframe {
  width: min(540px, 100%);
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(45, 64, 69, 0.06);
}

.instagram-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 850;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(45, 64, 69, 0.1);
}

.instagram-control.prev {
  left: 0;
}

.instagram-control.next {
  right: 0;
}

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

.instagram-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(63, 95, 104, 0.28);
  cursor: pointer;
}

.instagram-dot.is-active {
  background: var(--primary-dark);
}

.instagram-profile-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.instagram-profile-link:hover,
.instagram-profile-link:focus-visible {
  text-decoration: underline;
}

.after-whatsapp {
  background: #f2eadf;
}

.after-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.final-cta {
  padding: 72px 0;
}

.final-box {
  background: linear-gradient(135deg, var(--primary-dark), #547882);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(32px, 7vw, 68px);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-box h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.final-box p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--primary-dark);
}

.faq details p {
  margin: 0;
  padding: 0 22px 12px;
  color: var(--muted);
}

.faq-micro-cta {
  margin: 0 22px 22px;
}

.site-footer {
  padding: 56px 0 88px;
  background: #26363b;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright p {
  margin: 0;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #2f6f58;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(47, 111, 88, 0.28);
}

:focus-visible {
  outline: 3px solid rgba(127, 169, 148, 0.75);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    display: none;
    width: 100%;
    margin: 0;
    padding: 12px 0 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .reversed {
    grid-template-columns: 1fr;
  }

  .card-grid.six,
  .step-grid,
  .after-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand-logo {
    width: auto;
    height: 44px;
    max-width: 150px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    width: calc(50% - 6px);
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-actions,
  .center-action {
    align-items: stretch;
  }

  .hero-actions .button,
  .center-action .button {
    width: 100%;
  }

  .cta-stack,
  .cta-stack.align-left {
    align-items: stretch;
  }

  .card-grid.six,
  .step-grid,
  .after-steps,
  .team-grid,
  .check-list,
  .three-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .final-box {
    border-radius: 22px;
  }

  .instagram-carousel {
    padding-bottom: 60px;
  }

  .instagram-slide {
    padding: 0;
  }

  .instagram-slide iframe {
    min-height: 560px;
  }

  .instagram-control {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .instagram-control.prev {
    left: calc(50% - 54px);
  }

  .instagram-control.next {
    right: calc(50% - 54px);
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 18px;
    min-height: 48px;
    padding: 12px 16px;
    max-width: calc(100% - 28px);
  }
}
