/* --- Variables (identidade — Pantone TCX; bordo como cor principal) --- */
:root {
  /* Referência visual: paleta.jpeg */
  --p-pearl: #e6dac4;
  --p-moss: #858961; /* reservado; pouco uso na UI */

  --p-indigo: #233658;
  /* Índigo em apoio (textos secundários, sem competir com o bordo dos títulos) */
  --indigo-muted: #3d4a62;
  --indigo-soft: #4a5874;

  --p-marble: #f2e8da;
  --p-garnet: #953640;
  --p-oxblood: #722b3f;

  /* Principal — bordo */
  --accent: var(--p-garnet);
  --accent-deep: var(--p-oxblood);
  --accent-soft: rgba(149, 54, 64, 0.16);

  /* Apoio — vinho mais claro / terroso (substitui musgo na interface) */
  --support: #a34e59;
  --support-deep: #6b2f38;
  --support-soft: rgba(149, 54, 64, 0.11);

  --bg: #ede6db;
  --bg-elevated: #f8f3ec;
  /* Texto: tons escuros com base em bordo (menos azul frio) */
  --ink: #3a282d;
  --ink-muted: #5c4a50;
  --ink-soft: #6e5c62;
  --line: rgba(90, 48, 58, 0.1);

  /* Títulos grandes / hero — bordo legível */
  --heading: var(--accent-deep);

  /* Acentos secundários / blobs (mantém nome --blush nos trechos antigos) */
  --blush: var(--accent);
  --blush-soft: var(--accent-soft);

  --cream: #e6dfd3;
  --hero-ink: var(--p-marble);

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow: 0 4px 22px rgba(114, 43, 63, 0.07);
  --shadow-lg: 0 20px 48px rgba(114, 43, 63, 0.11);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .blob,
  .hero-float {
    animation: none !important;
  }
  .hero-entrance,
  .reveal-on-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.blob-a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  background: var(--blush-soft);
  top: -8%;
  right: -10%;
  animation: float 18s ease-in-out infinite;
}

.blob-b {
  width: 35vw;
  height: 35vw;
  max-width: 420px;
  max-height: 420px;
  background: var(--support-soft);
  bottom: 10%;
  left: -12%;
  animation: float 22s ease-in-out infinite reverse;
}

.blob-c {
  width: 28vw;
  height: 28vw;
  background: rgba(230, 218, 196, 0.75);
  top: 45%;
  right: 5%;
  animation: float 20s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2%, 3%) scale(1.05);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-entrance {
    animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .hero-copy .hero-entrance:nth-child(1) {
    animation-delay: 0.04s;
  }
  .hero-copy .hero-entrance:nth-child(2) {
    animation-delay: 0.1s;
  }
  .hero-copy .hero-entrance:nth-child(3) {
    animation-delay: 0.16s;
  }
  .hero-copy .hero-entrance:nth-child(4) {
    animation-delay: 0.22s;
  }
  .hero-copy .hero-entrance:nth-child(5) {
    animation-delay: 0.28s;
  }

  .hero-visual .hero-entrance {
    animation-delay: 0.14s;
    animation-duration: 0.8s;
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    pointer-events: none;
  }

  .reveal-on-scroll.is-visible {
    pointer-events: auto;
    animation: reveal-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* Pequeno escalonamento quando dois blocos entram na tela ao mesmo tempo */
  #sobre .split-content.reveal-on-scroll.is-visible {
    animation-delay: 0.14s;
  }

  #atendimento .atend-session.reveal-on-scroll.is-visible {
    animation-delay: 0.16s;
  }

  /* FAQ: entram em sequência quando a seção aparece na tela */
  #faq .faq-item.reveal-on-scroll.is-visible:nth-child(1) {
    animation-delay: 0s;
  }
  #faq .faq-item.reveal-on-scroll.is-visible:nth-child(2) {
    animation-delay: 0.1s;
  }
  #faq .faq-item.reveal-on-scroll.is-visible:nth-child(3) {
    animation-delay: 0.2s;
  }
  #faq .faq-item.reveal-on-scroll.is-visible:nth-child(4) {
    animation-delay: 0.3s;
  }
  #faq .faq-item.reveal-on-scroll.is-visible:nth-child(5) {
    animation-delay: 0.4s;
  }
  #faq .faq-item.reveal-on-scroll.is-visible:nth-child(6) {
    animation-delay: 0.5s;
  }
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.narrow {
  width: min(720px, 92vw);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 248, 245, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.logo-mark-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% 30%;
}

.logo-text {
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--p-indigo);
}

.nav-cta {
  background: var(--accent);
  color: var(--hero-ink) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 999px;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-deep);
  color: var(--hero-ink) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 0.5rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-muted);
  margin: 0 0 1rem;
}

.eyebrow.light {
  color: rgba(250, 248, 245, 0.85);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 5.5vw, 3.85rem);
  font-weight: 600;
  line-height:1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--heading);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--p-indigo);
}

.hero-lead {
  margin: 0 0 2rem;
  color: var(--indigo-muted);
  font-size: 1.125rem;
  max-width: 34ch;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-actions .btn {
  padding: 1.05rem 2rem;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions .btn-ghost {
  font-weight: 600;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--hero-ink);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: var(--shadow-lg);
}

.hero-actions .btn-primary {
  box-shadow: 0 8px 28px rgba(149, 54, 64, 0.28);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 14px 36px rgba(114, 43, 63, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(149, 54, 64, 0.35);
  background: var(--bg-elevated);
}

.btn-light {
  background: var(--hero-ink);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--hero-ink);
  border-color: rgba(250, 248, 245, 0.45);
}

.btn-outline-light:hover {
  border-color: var(--hero-ink);
  background: rgba(250, 248, 245, 0.08);
}

.hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.hero-badges li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.4rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.hero-card {
  position: relative;
  width: min(100%, 420px);
  padding: 1.35rem 1.35rem 1.6rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  text-align: center;
}

.hero-avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 1.15rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.hero-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 28%;
  display: block;
}

.hero-card-name {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
  font-size: 1.2rem;
  color: var(--heading);
}

.hero-card-role {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--indigo-muted);
}

.hero-float {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--accent-deep);
}

.hero-float-1 {
  top: 8%;
  right: 4%;
  animation: float 14s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 12%;
  left: 2%;
  animation: float 16s ease-in-out infinite reverse;
}

@media (max-width: 960px) {
  .hero-float {
    display: none;
  }
}

/* --- Atendimento (detalhe após Sobre) --- */
.section-atendimento {
  background: linear-gradient(
    180deg,
    #faf8f4 0%,
    var(--bg-elevated) 42%,
    var(--bg) 100%
  );
}

.atend-grid {
  display: grid;
  grid-template-columns: minmax(0, min(26rem, 40vw)) minmax(28rem, 1fr);
  gap: clamp(2rem, 5vw, 2.75rem) clamp(3rem, 8.5vw, 5.75rem);
  align-items: center;
}

@media (min-width: 901px) {
  .atend-session {
    margin-left: clamp(0.35rem, 2vw, 1.75rem);
  }
}

.atend-main {
  min-width: 0;
  max-width: 26rem;
}

.atend-main .prose {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.atend-main .atend-key {
  color: var(--heading);
  font-weight: 600;
}

.atend-session {
  min-width: 0;
}

.atend-session-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 2.45rem 2.15rem;
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  width: 100%;
  max-width: min(46rem, 100%);
  margin-inline: auto;
}

.atend-session-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.35vw, 1.7rem);
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.atend-session-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  text-align: left;
}

.atend-session-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.atend-session-list li > span:last-child {
  flex: 1;
  min-width: 0;
}

.atend-session-list--detail li {
  margin-bottom: 0.9rem;
  font-size: 0.93rem;
  line-height: 1.5;
}

.atend-session-list--detail li:last-child {
  margin-bottom: 0;
}

.atend-session-list--detail strong {
  color: var(--heading);
  font-weight: 600;
}

.atend-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: var(--p-indigo);
}

.atend-check svg {
  display: block;
  width: 100%;
  height: 100%;
}

.atend-session-cta {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .atend-grid {
    grid-template-columns: 1fr;
  }

  .atend-session {
    margin-left: 0;
  }

  .atend-session-card {
    position: relative;
    top: auto;
    max-width: min(44rem, 100%);
    margin-inline: auto;
  }
}

/* --- Sections --- */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-tint {
  background: linear-gradient(
    180deg,
    rgba(230, 218, 196, 0.42) 0%,
    rgba(149, 54, 64, 0.06) 45%,
    transparent 100%
  );
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.1rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.section-head .section-sub {
  font-size: 1.14rem;
  line-height: 1.55;
  max-width: 38rem;
  margin-inline: auto;
}

.section-sub {
  margin: 0;
  color: var(--indigo-muted);
}

.section-head.section-head--wide {
  max-width: 50rem;
}

/* --- Split / About --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.about-frame {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(165deg, var(--cream), var(--blush-soft));
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Retrato vertical: mantém Laura e ambiente equilibrados */
  object-position: 50% 58%;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  right: -0.5rem;
  background: var(--accent-deep);
  color: var(--hero-ink);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .about-badge {
    right: 1rem;
  }
}

.split-content > .eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.split-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.05rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--heading);
}

.prose {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.prose.muted {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  color: var(--p-indigo);
  text-decoration: underline;
}

/* --- Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 1.25rem;
  color: var(--p-indigo);
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--heading);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
}

/* --- FAQ --- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.15rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--heading);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--p-indigo);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner p {
  margin: 0;
  padding-bottom: 1.15rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
      grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.38s ease;
  }

  .faq-item[open]:not(.is-closing):not(.is-opening) .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .faq-item.is-opening .faq-answer,
  .faq-item.is-closing .faq-answer {
    grid-template-rows: 0fr;
    opacity: 0;
  }
}

/* --- CTA --- */
.cta-block {
  background: linear-gradient(
    135deg,
    #3f151c 0%,
    var(--p-oxblood) 32%,
    var(--p-garnet) 68%,
    #4a1f28 100%
  );
  color: var(--hero-ink);
  margin: 0 1rem;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3.5vw, 1.65rem);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 960px) {
  .cta-block {
    margin-inline: max(1rem, calc(50vw - 560px));
  }
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.cta-inner > div:first-child {
  flex: 1 1 auto;
  max-width: min(100%, 34rem);
  min-width: 0;
}

.cta-inner .eyebrow.light {
  font-size: 0.92rem;
  letter-spacing: 0.15em;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.cta-lead {
  margin: 0;
  max-width: 36ch;
  opacity: 0.92;
  font-weight: 400;
}

.cta-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 22rem);
}

.cta-contact-list li {
  margin: 0;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.75rem 0.55rem 0.75rem;
  margin: 0;
  border-radius: var(--radius);
  text-decoration: none;
  color: rgba(250, 248, 245, 0.95);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.35;
  transition: color 0.2s ease, background 0.2s ease;
  min-width: 0;
  max-width: 100%;
}

.cta-contact-link > span:not(.contact-icon) {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cta-contact-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.cta-contact-link:hover .contact-icon--on-dark {
  background: rgba(255, 255, 255, 0.22);
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  transition: background 0.2s ease;
}

.contact-icon--footer {
  background: var(--support-soft);
  color: var(--support-deep);
}

.contact-icon--on-dark {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(250, 248, 245, 0.98);
}

.contact-icon-svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.contact-icon-svg--fill {
  fill: currentColor;
  width: 1.28rem;
  height: 1.28rem;
}

.footer-links a.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: normal;
  overflow-wrap: break-word;
  transition: color 0.2s ease;
}

.footer-links a.footer-contact-row:hover {
  color: var(--heading);
}

.footer-links a.footer-contact-row:hover .contact-icon--footer {
  background: rgba(149, 54, 64, 0.22);
  color: var(--accent-deep);
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(19rem, 1.6fr) 0.95fr 0.95fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.logo-footer .logo-text {
  color: var(--ink);
}

.footer-tag {
  margin: 0.75rem 0 0.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-muted);
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--heading);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

main {
  position: relative;
  z-index: 1;
}

/* --- WhatsApp flutuante --- */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 150;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(28, 25, 23, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(28, 25, 23, 0.18);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-float__icon {
  width: 1.85rem;
  height: 1.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover,
  .whatsapp-float:active {
    transform: none;
  }
}
