/* ==========================================================================
   Clínica Calazans — Design tokens
   ========================================================================== */
:root {
  --brown-950: #2A1810;
  --brown-900: #3B2417;
  --brown-700: #5C3A26;
  --brown-500: #7A5540;
  --text-body: #5C4A3E;
  --text-muted: #8A7566;
  --orange-600: #D96A1F;
  --orange-500: #E8792D;
  --orange-100: #FBE3CB;
  --orange-50: #FDF1E4;
  --cream: #FBF6EF;
  --cream-deep: #F5EBDD;
  --white: #FFFFFF;
  --border: #EAE0D2;
  --shadow-sm: 0 4px 14px rgba(42, 24, 16, 0.06);
  --shadow-md: 0 16px 40px rgba(42, 24, 16, 0.10);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

section[id], .hero {
  scroll-margin-top: 100px;
}

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange-600);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', Arial, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Quicksand', sans-serif;
  color: var(--brown-900);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 400px) {
  .container { padding: 0 24px; }
}
@media (min-width: 640px) {
  .container { padding: 0 28px; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brown-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-block;
  background: var(--orange-100);
  color: var(--orange-600);
  font-weight: 800;
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12.5px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 720px;
  margin: 0 0 44px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 14px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-body);
  margin-top: 14px;
}

.section { padding: 92px 0; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* Reveal-on-scroll (progressive enhancement, safe default = visible) */
.reveal {
  opacity: 1;
  transform: none;
}
.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 121, 45, 0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 121, 45, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 20px;
}

.logo-link { display: block; flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: none;
  image-rendering: auto;
}

@media (min-width: 500px) {
  .logo-img { height: 62px; }
}
@media (min-width: 960px) {
  .logo-img { height: 72px; }
}

.main-nav {
  display: none;
}

.nav-cta {
  background: var(--orange-500);
  color: var(--white) !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--orange-600); transform: translateY(-1px); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brown-900);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 959px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
    background: var(--cream);
    flex-direction: column;
    padding: 12px 28px 32px;
    gap: 4px;
    overflow-y: auto;
    animation: navFadeIn .25s var(--ease);
  }
  .main-nav.open { display: flex; }
  @keyframes navFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .main-nav a {
    padding: 16px 10px;
    margin: 0 -10px;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    color: var(--brown-900);
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    transition: background .2s var(--ease);
  }
  .main-nav a:not(.nav-cta):hover,
  .main-nav a:not(.nav-cta):focus-visible {
    background: var(--orange-50);
  }
  .main-nav .nav-cta {
    margin-top: 18px;
    text-align: center;
    border-bottom: none;
    color: var(--white) !important;
  }
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .main-nav a:not(.nav-cta) {
    font-weight: 600;
    font-size: 15px;
    color: var(--brown-700);
    position: relative;
    padding: 4px 0;
  }
  .main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,7,0.55) 0%, rgba(20,12,7,0.35) 30%, rgba(20,12,7,0.72) 78%, rgba(20,12,7,0.86) 100%),
    linear-gradient(90deg, rgba(20,12,7,0.88) 0%, rgba(20,12,7,0.55) 42%, rgba(20,12,7,0.18) 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 112px;
  padding-bottom: 100px;
  color: var(--white);
  max-width: 700px;
}

.hero-content .badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: 30px;
  line-height: 1.16;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.hero-sub {
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 22px;
  color: #F1E6D8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-actions .btn { width: 100%; padding: 14px 24px; font-size: 15px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 10px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 18px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 3px; }
.hero-stats li:last-child { grid-column: 1 / -1; }
.hero-stats strong {
  font-family: 'Quicksand', sans-serif;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.hero-stats span {
  font-size: 11px;
  color: #D8C7B6;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (min-width: 400px) {
  .hero h1 { font-size: 33px; }
}

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; }
}

@media (min-width: 720px) {
  .hero { min-height: 88vh; padding-bottom: 0; }
  .hero-bg img { object-position: center 38%; }
  .hero-overlay {
    background: linear-gradient(100deg, rgba(24,14,9,0.82) 0%, rgba(24,14,9,0.56) 48%, rgba(24,14,9,0.28) 100%);
  }
  .hero-content { padding-top: 150px; padding-bottom: 72px; }
  .hero-content .badge { font-size: 13px; padding: 8px 18px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(38px, 4.6vw, 54px); line-height: 1.12; margin-bottom: 18px; }
  .hero-sub { font-size: 18px; margin-bottom: 34px; }
  .hero-actions .btn { padding: 15px 28px; font-size: 16px; }
  .hero-actions { margin-bottom: 48px; }
  .hero-stats { grid-template-columns: repeat(3, auto); gap: 36px; padding-top: 26px; }
  .hero-stats li:last-child { grid-column: auto; }
  .hero-stats strong { font-size: 19px; }
  .hero-stats span { font-size: 13px; }
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre { background: var(--white); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

.sobre-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 839/583;
}
.sobre-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.sobre-text p { font-size: 16.5px; max-width: 54ch; }
.sobre-text h2 { margin-bottom: 20px; font-size: clamp(28px, 3.4vw, 36px); }

.sobre-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.sobre-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--brown-900);
  font-size: 15px;
}
.sobre-highlights svg {
  flex-shrink: 0;
  color: var(--orange-500);
  background: var(--orange-50);
  border-radius: 50%;
  padding: 4px;
  width: 26px;
  height: 26px;
}

@media (min-width: 860px) {
  .sobre-grid { grid-template-columns: 0.95fr 1.05fr; gap: 64px; }
  .sobre-highlights { flex-direction: row; flex-wrap: wrap; gap: 22px; }
}

/* ==========================================================================
   Diferenciais — cards
   ========================================================================== */
.diferenciais { background: var(--cream); }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 960px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-100);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
}
.card-icon svg { width: 20px; height: 20px; }

.card h3 { font-size: 16px; line-height: 1.3; margin-bottom: 4px; }
.card p { margin: 0; font-size: 13.5px; color: var(--text-body); }

@media (min-width: 640px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
    gap: 0;
  }
  .card-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px; }
  .card-icon svg { width: 24px; height: 24px; }
  .card h3 { font-size: 18px; margin-bottom: 9px; }
  .card p { font-size: 14.5px; }
}

/* ==========================================================================
   Especialidades
   ========================================================================== */
.especialidades { background: var(--brown-900); }
.especialidades .eyebrow { background: var(--orange-500); color: var(--brown-950); font-weight: 800; }
.especialidades h2 { color: var(--white); }
.especialidades .section-intro { color: #E4D6C7; }

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}

@media (min-width: 700px) {
  .especialidades-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

.especialidades-grid li {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.especialidades-grid li:hover {
  background: rgba(232,121,45,0.14);
  border-color: rgba(232,121,45,0.4);
}
.especialidades-grid span {
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
}

.especialidades-nota {
  margin-top: 28px;
  color: #C9B7A6;
  font-size: 14.5px;
  max-width: 68ch;
  line-height: 1.7;
}

/* ==========================================================================
   Equipe
   ========================================================================== */
.equipe { background: var(--cream); }

.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 700px) {
  .equipe-grid { grid-template-columns: 1fr 1fr; }
}

.profissional-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.profissional-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.profissional-foto {
  width: 100%;
  max-height: 340px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--orange-50);
}
.profissional-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.profissional-info { padding: 22px 26px 26px; }
.profissional-card h3 { font-size: 20px; margin-bottom: 12px; }

/* Desktop: horizontal layout — photo left (controlled size), content right */
@media (min-width: 700px) {
  .profissional-card {
    flex-direction: row;
    align-items: stretch;
  }
  .profissional-foto {
    width: 38%;
    max-height: none;
    aspect-ratio: auto;
    flex-shrink: 0;
  }
  .profissional-foto img {
    object-position: center 15%;
  }
  .profissional-info {
    flex: 1;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 700px) and (max-width: 959px) {
  .profissional-foto { height: 280px; }
}
@media (min-width: 960px) {
  .profissional-foto { height: 320px; }
}
.profissional-card ul { margin: 0 0 16px; }
.profissional-card li {
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.profissional-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}
.profissional-card .atuacao { font-size: 14.5px; margin: 0; color: var(--text-body); }
.profissional-card .atuacao strong { color: var(--brown-900); }

/* ==========================================================================
   Estrutura — gallery
   ========================================================================== */
.estrutura { background: var(--white); }

.galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 700px) {
  .galeria { grid-template-columns: repeat(3, 1fr); }
}

.galeria figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.galeria img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.galeria figure:hover img { transform: scale(1.06); }

/* ==========================================================================
   Localização
   ========================================================================== */
.localizacao { background: var(--cream-deep); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 900px) {
  .loc-grid { grid-template-columns: 1fr 1.15fr; align-items: stretch; }
}

.loc-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .loc-info { padding: 36px; }
}

.endereco, .horario, .atendimento { font-size: 15.5px; margin-bottom: 16px; }
.endereco strong, .horario strong { color: var(--brown-900); font-family: 'Quicksand', sans-serif; }

.loc-contatos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.loc-contatos a {
  font-weight: 700;
  color: var(--brown-900);
  font-family: 'Quicksand', sans-serif;
  font-size: 14.5px;
  transition: color .2s var(--ease);
}
.loc-contatos a:hover { color: var(--orange-600); }

.btn-route {
  width: 100%;
  margin-top: 22px;
  font-size: 14.5px;
  padding: 14px 22px;
}

.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--white); }

.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }

.faq-list details {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 24px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 30px 18px 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--brown-900);
  font-size: 16.5px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 14px;
  font-size: 24px;
  color: var(--orange-600);
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details > div {
  padding-bottom: 20px;
  animation: faqOpen .25s var(--ease);
}
.faq-list details p { font-size: 15.5px; }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-list details > div { animation: none; }
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--brown-900), var(--brown-950));
  padding: 80px 0;
  text-align: center;
}
.cta-final h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 14px; }
.cta-final p { color: #E4D6C7; max-width: 560px; margin: 0 auto 30px; font-size: 17px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--brown-950);
  color: #C9B7A6;
  padding: 52px 0 0;
}

@media (min-width: 640px) {
  .site-footer { padding-top: 68px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

@media (min-width: 640px) {
  .footer-grid { gap: 40px; padding-bottom: 48px; }
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin: 0 0 10px;
}
.footer-brand p { font-size: 14.5px; max-width: 280px; margin-bottom: 18px; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 14.5px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #C9B7A6;
}
.footer-col a:hover { color: var(--orange-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  text-align: center;
  font-size: 13px;
  color: #A99381;
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: 18px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  z-index: 40;
  animation: pulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 24px; height: 24px; }
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.06); }

@media (min-width: 640px) {
  .whatsapp-float { width: 60px; height: 60px; bottom: 24px; right: 24px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Reserve space so the floating button never overlaps the last content block */
.faq, .cta-final { padding-bottom: calc(72px + 24px); }
@media (min-width: 640px) {
  .faq, .cta-final { padding-bottom: 92px; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}
