/* =========================================================
   ALESSANDRA LUSSANI TEDESCO — Psicóloga & Neuropsicóloga
   Design system: "Trilha do desenvolvimento"
   ========================================================= */

:root {
  /* cores */
  --bg: #fbf7f4;
  --bg-alt: #f3edf6;
  --white: #ffffff;
  --ink: #2e2a3d;
  --ink-soft: #5b5470;
  --primary: #6b5590;
  --primary-dark: #55447a;
  --lilac: #9b87b5;
  --quartz: #e8b4c0;
  --gold: #c9a66b;
  --dark: #241f33;

  /* tipografia */
  --font-display: "Fraunces", serif;
  --font-body: "Nunito", sans-serif;
  --font-ui: "Quicksand", sans-serif;

  /* layout */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow-soft: 0 20px 45px -20px rgba(107, 85, 144, 0.28);
  --shadow-card: 0 12px 30px -14px rgba(46, 42, 61, 0.18);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.5em;
  color: var(--ink);
  line-height: 1.15;
}
p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  line-height: 1.7;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow {
  max-width: 820px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- utility ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.9em;
}
.eyebrow--light {
  color: var(--quartz);
}
.section__lead {
  max-width: 620px;
  font-size: 1.05rem;
}
.section__lead--light {
  color: #d8d0e6;
}
.section__head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section__head--light h2 {
  color: var(--white);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}
.btn i {
  font-size: 1.1em;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -16px rgba(107, 85, 144, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--ghost:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--white);
  color: var(--primary);
}
.btn--light:hover {
  background: var(--quartz);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 18px 34px;
  font-size: 1.02rem;
}
.btn--sm {
  padding: 11px 20px;
  font-size: 0.85rem;
}

/* ---------- progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader__mark {
  width: 90px;
  height: 90px;
}
.preloader__wing {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.4s ease-in-out infinite alternate;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 247, 244, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107, 85, 144, 0.08);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(46, 42, 61, 0.25);
  background: rgba(251, 247, 244, 0.92);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 42px;
  height: 42px;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.brand__name em {
  font-style: italic;
  font-weight: 500;
}
.brand__name small {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover {
  color: var(--primary);
}
.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}
.mobile-menu .btn {
  margin-top: 10px;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.35);
}
.mobile-menu .btn:hover {
  background: var(--quartz);
  color: var(--primary-dark);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 80px;
}
.hero__title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}
.hero__title em {
  font-style: italic;
  color: var(--primary);
}
.hero__subtitle {
  font-size: 1.12rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 26px;
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 480/560;
}
.trilha {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.trilha__line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawTrilha 2.4s ease forwards 0.3s;
}
@keyframes drawTrilha {
  to {
    stroke-dashoffset: 0;
  }
}

.trilha__node {
  position: absolute;
  transform: translate(-50%, -50%) scale(0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: popIn 0.6s ease forwards var(--d);
}
.trilha__dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: var(--shadow-card);
}
.trilha__node em {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

.trilha__butterfly {
  position: absolute;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  animation: popIn 0.7s ease forwards var(--d);
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) translateY(6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
}

.hero__divider {
  line-height: 0;
}
.hero__divider svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ---------- sections ---------- */
.section {
  padding: 110px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: var(--dark);
  padding: 110px 0;
}
.section--dark h4 {
  color: var(--white);
}
.section--dark p {
  color: #c9c1da;
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about__photo {
  position: relative;
}
.about__photo-frame {
  border-radius: 44% 56% 58% 42% / 48% 44% 56% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
  aspect-ratio: 4/4.7;
  max-width: 380px;
  margin: 0 auto;
}
.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -10px;
  right: 6px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--primary);
}
.about__badge span {
  font-size: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.4;
  text-align: left;
}
.about__badge .fa-star {
  color: var(--gold);
  font-size: 0.6rem;
}

.about__content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.about__credentials {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}
.about__credentials li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
}
.about__credentials i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex: none;
}

/* ---------- services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.service-card--highlight {
  background: var(--primary);
}
.service-card--highlight h3,
.service-card--highlight p {
  color: var(--white);
}
.service-card--highlight p {
  color: #e6dff0;
}
.service-card--highlight .service-card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--quartz);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.25rem;
}

/* ---------- consultório / galeria ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3.2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.rooms__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rooms__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rooms__header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3em;
}
.rooms__header p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
.rooms__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 1.15rem;
}
.rooms__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ---------- when to seek help ---------- */
.when {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.when__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 32px;
}
.when__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
}
.when__item i {
  color: var(--primary);
  font-size: 1.05rem;
  flex: none;
}
.when__visual {
  position: relative;
  height: 340px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}
.blob--1 {
  width: 220px;
  height: 220px;
  background: var(--quartz);
  top: 10%;
  left: 15%;
  animation: float1 7s ease-in-out infinite;
}
.blob--2 {
  width: 160px;
  height: 160px;
  background: var(--lilac);
  bottom: 5%;
  right: 10%;
  animation: float2 8s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}
.when__icon-float {
  position: absolute;
  font-size: 1.8rem;
  color: var(--primary);
  background: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.when__icon-float--1 {
  top: 18%;
  left: 38%;
  animation: float1 6s ease-in-out infinite;
}
.when__icon-float--2 {
  top: 55%;
  left: 8%;
  animation: float2 7s ease-in-out infinite;
}
.when__icon-float--3 {
  bottom: 10%;
  right: 22%;
  color: var(--gold);
  animation: float1 9s ease-in-out infinite;
}

/* ---------- signs grid ---------- */
.signs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.signs__item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.signs__item:hover {
  transform: translateY(-6px);
}
.signs__item i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.signs__item h4 {
  font-size: 0.88rem;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.steps__number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--quartz);
  display: block;
  margin-bottom: 10px;
}
.steps__item h4 {
  color: var(--white);
  font-size: 1.1rem;
}

/* ---------- benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.benefits__col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.benefits__col h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  color: var(--primary);
}
.benefits__col ul {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.benefits__col li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-body);
  color: var(--ink-soft);
}
.benefits__col li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--quartz);
  font-size: 0.8rem;
}

/* ---------- testimonials ---------- */
.section__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 6px;
}
.testimonials {
  overflow: hidden;
  padding: 10px 0 30px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.testimonials__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.testimonials__track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonial-card {
  flex: 0 0 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.testimonial-card p {
  font-style: italic;
  color: var(--ink);
}
.testimonial-card__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
}
.testimonials__note {
  font-size: 0.76rem;
  color: var(--ink-soft);
  opacity: 0.7;
  text-align: center;
}

/* ---------- objections ---------- */
.objections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.objection {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.objection i {
  font-size: 1.4rem;
  color: var(--gold);
  flex: none;
  margin-top: 4px;
}
.objection h4 {
  font-size: 1.05rem;
}

/* ---------- accordion ---------- */
.accordion__item {
  border-bottom: 1px solid rgba(107, 85, 144, 0.18);
}
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.accordion__trigger i {
  color: var(--primary);
  transition: transform 0.3s ease;
  flex: none;
}
.accordion__item.is-open .accordion__trigger i {
  transform: rotate(180deg);
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion__panel p {
  padding: 0 4px 24px;
}

/* ---------- location ---------- */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location__list {
  display: grid;
  gap: 14px;
  margin: 22px 0 30px;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
}
.location__list i {
  color: var(--primary);
  width: 22px;
}
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 340px;
}

/* ---------- cta final ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__mark {
  width: 70px;
  margin: 0 auto 20px;
}
.cta-final__inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 640px;
  margin: 0 auto 0.4em;
}
.cta-final__inner p {
  color: #e6dff0;
  max-width: 480px;
  margin: 0 auto 34px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--dark);
  color: #c9c1da;
  padding: 60px 0 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.footer__brand span {
  font-size: 0.8rem;
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
}
.footer__nav a:hover {
  color: var(--quartz);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
}
.footer__contact i {
  color: var(--gold);
  margin-right: 8px;
}
.footer__contact a:hover {
  color: var(--quartz);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 28px;
  font-size: 0.78rem;
}
.footer__bottom a {
  color: var(--quartz);
  font-weight: 700;
}

/* ---------- whatsapp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 900;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .signs {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav,
  .header__cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 60px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero__subtitle {
    margin: 0 auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__proof {
    justify-content: center;
  }
  .hero__visual {
    margin-top: 20px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about__content {
    text-align: center;
  }
  .about__credentials {
    justify-items: center;
  }
  .about__credentials li {
    justify-content: center;
  }
  .when {
    grid-template-columns: 1fr;
  }
  .when__visual {
    order: -1;
    height: 220px;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .objections {
    grid-template-columns: 1fr;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .rooms {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .rooms__gallery {
    grid-template-columns: 1fr;
  }
  .signs {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
  }
  .about__badge {
    position: static;
    margin: 16px auto 0;
    width: fit-content;
  }
}
