/* ==========================================================================
   Design System & Estilos - Clínica Dra. Joice Regina
   ========================================================================== */

:root {
  --ink: #241e1c;
  --ink-light: #423936;
  --muted: #756a65;
  --cream: #faf6f0;
  --cream-soft: #f4ece4;
  --cream-card: #ffffff;
  --rose: #ba8c83;
  --rose-light: #eeddd8;
  --rose-dark: #8e635c;
  --gold: #d4a373;
  --line: #e8ddd6;
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba59;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(36, 30, 28, 0.04);
  --shadow-md: 0 12px 30px rgba(36, 30, 28, 0.08);
  --shadow-lg: 0 20px 45px rgba(36, 30, 28, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* --------------------------------------------------------------------------
   Cabeçalho e Navegação
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 221, 214, 0.85);
  transition: all 0.3s ease;
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.logo span {
  font-style: italic;
  color: var(--rose-dark);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--muted);
  margin-top: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rose);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(36, 30, 28, 0.15);
}

.nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(142, 99, 92, 0.25);
}

.cta-arrow {
  transition: transform 0.25s ease;
}

.nav-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   Botões Gerais
   -------------------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(36, 30, 28, 0.16);
}

.button.primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(142, 99, 92, 0.3);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover {
  background: var(--cream);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.button.light {
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.button.light:hover {
  background: var(--cream-soft);
  transform: translateY(-2px);
}

.button.sm {
  padding: 10px 18px;
  font-size: 13px;
}

.whatsapp-btn-icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Seção Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 68px 0 80px;
  background: radial-gradient(circle at 85% 15%, #f1e0d8 0%, transparent 45%), var(--cream);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(186, 140, 131, 0.12);
  border: 1px solid rgba(186, 140, 131, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rose-dark);
  margin-bottom: 20px;
}

.sparkle {
  color: var(--rose);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.lead {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.trust-dot {
  width: 18px;
  height: 18px;
  background: rgba(186, 140, 131, 0.2);
  color: var(--rose-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}

/* Card Visual Hero */
.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  height: 520px;
  border-radius: 190px 190px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 65px rgba(90, 65, 58, 0.18);
  border: 4px solid var(--white);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.hero-card:hover .hero-img {
  transform: scale(1.03);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 30, 28, 0.05) 0%, rgba(36, 30, 28, 0.4) 60%, rgba(36, 30, 28, 0.85) 100%);
}

.hero-pill-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-card-content {
  position: absolute;
  bottom: 30px;
  left: 28px;
  right: 28px;
  color: var(--white);
  z-index: 2;
}

.hero-card-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.9;
  display: block;
  margin-bottom: 4px;
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  display: block;
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}

.hero-card-meta .bullet {
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Seção de Introdução
   -------------------------------------------------------------------------- */
.intro {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 14px;
}

.intro h2,
.section-heading h2,
.about-content h2,
.location-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.intro-right p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}

.intro-right p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Seção Tratamentos
   -------------------------------------------------------------------------- */
.section {
  padding: 100px 0;
}

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

.section-heading p:last-child {
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(186, 140, 131, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rose-dark);
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--muted);
}

.card-tag.gold {
  background: #fdf5ea;
  color: #b57a34;
  border: 1px solid #fae2be;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rose-dark);
}

.card:hover .card-link {
  color: var(--ink);
  gap: 9px;
}

.card.highlight {
  border: 1px solid rgba(186, 140, 131, 0.6);
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf8 100%);
  box-shadow: 0 10px 30px rgba(186, 140, 131, 0.12);
}

.card.special-box {
  background: linear-gradient(135deg, #241e1c 0%, #3e3330 100%);
  color: var(--white);
  border: none;
}

.card.special-box .card-num {
  color: var(--rose-light);
}

.card.special-box .card-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.card.special-box h3 {
  color: var(--white);
}

.card.special-box p {
  color: #d1c7c2;
}

/* --------------------------------------------------------------------------
   Seção Sobre a Dra. Joice
   -------------------------------------------------------------------------- */
.soft {
  background: var(--cream-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.portrait-container {
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  background: var(--white);
}

.portrait-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.portrait-frame:hover .portrait-img {
  transform: scale(1.02);
}

.portrait-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left: 3px solid var(--rose-dark);
}

.portrait-stamp strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.portrait-stamp span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.about-content .eyebrow {
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 17.5px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-content p:not(.eyebrow):not(.about-lead) {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 24px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 34px;
}

.credential-item {
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.cred-icon {
  font-size: 20px;
  line-height: 1;
}

.credential-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
}

.credential-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   Banner CTA / Diferenciais
   -------------------------------------------------------------------------- */
.cta {
  padding: 40px 0 80px;
}

.cta-box {
  background: linear-gradient(135deg, #241e1c 0%, #3a302c 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}

.light-eyebrow {
  color: var(--rose-light);
}

.cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-box p:last-child {
  color: #cfc5c0;
  font-size: 16px;
  max-width: 580px;
}

.cta-action {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Seção Localização & Mapa Interativo
   -------------------------------------------------------------------------- */
.location {
  padding: 90px 0 110px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.location-info h2 {
  margin-bottom: 26px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.info-icon {
  font-size: 20px;
  background: var(--cream-soft);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.info-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.phone-link {
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 16px;
}

.phone-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.hours-list {
  list-style: none;
  font-size: 13.5px;
  color: var(--muted);
}

.hours-list li {
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hours-list strong {
  display: inline;
  color: var(--ink);
}

.hours-list em {
  font-style: italic;
  color: #a35b53;
}

/* Mapa com Iframe Google Maps */
.map-container {
  position: relative;
}

.map-frame {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(232, 221, 214, 0.8);
}

.map-pin-icon {
  font-size: 24px;
}

.map-floating-badge strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.map-floating-badge small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */
footer {
  background: #1e1917;
  color: var(--white);
  padding: 70px 0 35px;
  border-top: 1px solid #332b28;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid #332b28;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.footer-logo span {
  font-style: italic;
  color: var(--rose-light);
}

.footer-col p {
  color: #a89f9b;
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-crbm {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--rose-light);
  border: 1px solid #4a3d39;
  padding: 4px 10px;
  border-radius: 999px;
}

.footer-col strong {
  display: block;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: #a89f9b;
  font-size: 13.5px;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-phone {
  display: block;
  color: var(--rose-light);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-phone:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: #7d736f;
}

.footer-disclaimer {
  font-size: 11px;
}

/* --------------------------------------------------------------------------
   Botão Flutuante do WhatsApp
   -------------------------------------------------------------------------- */
.floating {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s ease, background 0.25s ease;
}

.floating:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.08);
}

.floating-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.floating-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: ripple 2.2s infinite;
  opacity: 0.8;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.floating-tooltip {
  position: absolute;
  right: 74px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--ink);
}

.floating:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Responsividade (Mobile & Tablets)
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .location-grid,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-card {
    height: 440px;
    max-width: 520px;
    margin: 0 auto;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 45px 35px;
  }

  .cta-action {
    width: 100%;
  }

  .cta-action .button {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .nav nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav nav.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 45px 0 65px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .portrait-img {
    height: 420px;
  }

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

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

  .map-frame {
    height: 340px;
  }

  .floating {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .floating-icon {
    width: 28px;
    height: 28px;
  }

  .floating-tooltip {
    display: none;
  }
}
/* --------------------------------------------------------------------------
   Ações do Cabeçalho & Instagram
   -------------------------------------------------------------------------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-insta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  transition: all 0.25s ease;
}

.nav-insta svg {
  color: #e1306c;
}

.nav-insta:hover {
  border-color: #e1306c;
  color: #e1306c;
  background: #fff5f8;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Seção de Resultados & Carrossel de Antes e Depois
   -------------------------------------------------------------------------- */
.results-section {
  background: #fdfaf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
  overflow: hidden;
}

.instagram-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.08) 0%, rgba(253, 29, 29, 0.08) 50%, rgba(252, 176, 69, 0.08) 100%);
  border: 1px solid rgba(225, 48, 108, 0.25);
  font-size: 12px;
  font-weight: 700;
  color: #c13584;
  margin-bottom: 16px;
}

.instagram-badge-icon {
  color: #e1306c;
  flex-shrink: 0;
}

.instagram-eyebrow-badge a {
  color: inherit;
  letter-spacing: 0.05em;
}

.instagram-eyebrow-badge a:hover {
  text-decoration: underline;
}

.carousel-wrapper {
  position: relative;
  margin: 40px 0 20px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
  padding: 10px 4px 20px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(186, 140, 131, 0.5);
}

.result-media {
  position: relative;
  width: 100%;
  height: 330px;
  background: #f0eae4;
  overflow: hidden;
}

.result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.result-card:hover .result-media img {
  transform: scale(1.04);
}

.result-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(36, 30, 28, 0.78);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.result-info {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.procedure-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-dark);
  margin-bottom: 8px;
}

.result-info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.result-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.result-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rose-dark);
  transition: all 0.2s ease;
}

.result-cta:hover {
  color: var(--ink);
  gap: 9px;
}

/* Botões do Carrossel */
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(36, 30, 28, 0.12);
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8cbbf;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--rose-dark);
}

/* Banner Instagram Oficial */
.instagram-banner {
  margin-top: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.instagram-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.insta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.insta-avatar-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  flex-shrink: 0;
}

.insta-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--white);
}

.insta-handle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.insta-handle-row strong {
  font-size: 16.5px;
  color: var(--ink);
}

.insta-badge {
  font-size: 11px;
  font-weight: 700;
  color: #0095f6;
  background: #e0f1ff;
  padding: 2px 8px;
  border-radius: 999px;
}

.insta-details p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.insta-follow-btn {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: var(--white);
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.28);
}

.insta-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.footer-insta-link {
  color: #e1306c !important;
  font-weight: 600;
}

/* Responsividade do Carrossel */
@media (max-width: 960px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }

  .carousel-btn.prev { left: -10px; }
  .carousel-btn.next { right: -10px; }

  .instagram-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .insta-left {
    flex-direction: column;
  }

  .insta-handle-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .nav-insta {
    display: none;
  }
}
