/* Paleta de cores
   Primária: #d1ad59
   Secundária: #2c333c
*/

:root {
  --color-primary: #d1ad59;
  --color-secondary: #2c333c;
  --color-bg: #0e1115;
  --color-surface: #151a21;
  --color-surface-alt: #191f27;
  --color-text: #f5f5f5;
  --color-muted: #9ba3b2;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.45);
}

/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050608;
  color: var(--color-text);
  line-height: 1.6;
}

/* Layout utilitário */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

/* Degradê dourado suave e centralizado dentro da section-alt */
.section-alt {
  position: relative;
  overflow: hidden;
}

/* brilho dourado apenas no topo, centralizado */
.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  
  width: 65%;          /* tamanho lateral do brilho */
  height: 230px;       /* tamanho vertical */
  
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    ellipse at center top,
    rgba(218, 165, 32, 0.50) 0%,    /* dourado centro */
    rgba(218, 165, 32, 0.18) 38%,   /* transição */
    rgba(218, 165, 32, 0.00) 70%    /* sumindo suave */
  );
}

/* garante que o conteúdo fique acima do brilho */
.section-alt > * {
  position: relative;
  z-index: 1;
}


.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* Topbar – aparece só após o scroll */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(5,6,8,0.93), rgba(15,18,24,0.95));
  border-bottom: 1px solid rgba(255,255,255,0.05);

  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar.topbar--visible {
  transform: translateY(0);
  opacity: 1;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-small {
  height: 56px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--color-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease-out;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ========================= HERO ========================= */

/* HERO */
.hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;

  /* Camada 1 — Degradê preto ➝ dourado */
  /* Camada 2 — Imagem com opacidade reduzida */
  background:
    linear-gradient(
      90deg,
      rgba(44, 51, 60, 0.95) 0%,
      rgba(44, 51, 60, 0.80) 25%,
      rgba(209, 173, 89, 0.30) 55%,
      rgba(209, 173, 89, 0.60) 100%
    ),
    linear-gradient(
      rgba(0,0,0,0.90),      /* <- camada escurecedora */
      rgba(0,0,0,0.90)
    ),
    url("../img/hero-bg-escritorio.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



/* FOTO à direita + gradiente horizontal escuro */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(5, 6, 8, 0.85) 0%,
      rgba(5, 6, 8, 0.65) 20%,
      rgba(5, 6, 8, 0.30) 40%,
      rgba(5, 6, 8, 0.10) 55%,
      rgba(5, 6, 8, 0) 70%
    ),
    url("../img/dr-patrick-bg.png");

  background-repeat: no-repeat;
  background-size: auto 115%;       /* Dr. Patrick um pouco mais afastado do fim */
  background-position: right -40px; /* sobe a imagem alguns px */

  opacity: 1;
  filter: brightness(0.95);
  pointer-events: none;
  z-index: 0;
}

/* Transição suave para a próxima seção, sem cobrir textos/botão */
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 280px;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0) 0%,
    rgba(5, 6, 8, 0.55) 55%,
    #050608 100%
  );
  pointer-events: none;
  z-index: 1; /* acima da imagem, abaixo do conteúdo */
}

/* Conteúdo sobreposto */
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 5;
  max-width: 640px;
}

/* Logo */
.logo-hero {
  height: 100px;
  margin-bottom: 1.5rem;
}

/* Títulos */
.hero-title {
  font-size: clamp(1.9rem, 3vw + 0.5rem, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-title-white { color: #fff; }
.hero-title-gold  { color: var(--color-primary); }

/* Subtítulo */
.hero-subtitle {
  font-size: 1.13rem;
  color: var(--color-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Botões base (usado em outros lugares) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.9rem 2.4rem;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

/* Botão WhatsApp do hero */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 2.3rem;
  font-size: 1.05rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  color: #000; /* Texto e ícone pretos */
  text-decoration: none;
  transition: .25s ease-in-out;
  background: linear-gradient(90deg, #d1ad59 0%, #b9902c 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.32);
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor; /* usa a mesma cor do texto */
}


/* Seção Sobre */

.section-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10rem;
  align-items: center;
}

.about-inner {
  align-items: stretch;
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

/* Lista de tópicos - Sobre */
.about-list {
  list-style: none;
  margin: 1.3rem 0 1.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: var(--color-text);
}

.about-list .bullet {
  width: 9px;
  height: 9px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
  flex-shrink: 0;
  box-shadow:
    0 0 6px rgba(209,173,89,0.6),
    0 0 2px rgba(209,173,89,0.9);
}


/* Moldura moderna com cantos dourados */

.photo-frame-modern {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 28px;
  padding: 3px;

  /* cantos dourados / glow */
  background:
    /* canto superior esquerdo */
    linear-gradient(135deg, rgba(209,173,89,0.95), transparent 60%) top left no-repeat,
    /* canto inferior direito */
    linear-gradient(315deg, rgba(209,173,89,0.95), transparent 60%) bottom right no-repeat,
    /* brilhos suaves */
    radial-gradient(circle at top right, rgba(209,173,89,0.25), transparent 55%),
    radial-gradient(circle at bottom left, rgba(209,173,89,0.18), transparent 55%),
    #0b0e13;

  background-size: 130px 130px, 130px 130px, auto, auto, auto;
  box-shadow:
    0 22px 60px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.03);
}

/* leve glow externinho */
.photo-frame-modern::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,245,210,0.45), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(112,83,30,0.55), transparent 55%);
  opacity: 0.6;
  filter: blur(20px);
  z-index: -1;
}

/* “card” interno mais escuro que segura a foto */
.photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #181e26, #050608);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 18px 35px rgba(0,0,0,0.7);
}

/* linha fina interna dando mais profundidade */
.photo-inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(209,173,89,0.35);
  opacity: 0.9;
  pointer-events: none;
}

/* Foto em si */

.about-photo-modern {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  transform: translateY(2px);
  filter: saturate(1.02) contrast(1.03);
}

/* Texto da seção */

.about-text h2 {
  text-align: justify;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.about-text p {
  color: var(--color-muted);
  text-align: justify;
}

.google-reviews {
  margin-top: 40px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  padding: 24px 28px;
  max-width: 520px;
}

.google-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 20px;
}

.google-header img {
  width: 22px;
}

.reviews-slider {
  position: relative;
  min-height: 110px;
}

.review {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: #eee;
}

.review.active {
  opacity: 1;
}

.review strong {
  display: block;
  color: #d4af37;
  margin-bottom: 6px;
}

.review p {
  font-size: 14px;
  line-height: 1.4;
}


/* Responsivo */

@media (max-width: 900px) {
  .section-inner {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    margin-bottom: 2rem;
  }

  .photo-frame-modern {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .photo-frame-modern {
    max-width: 260px;
  }
}


/* Tabs / Serviços */

.tabs {
  background: rgba(21,26,34,0.9);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 0.05rem;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: var(--shadow-soft);
}

.tabs-list {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tab-button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

.tab-button:hover {
  color: #ffffff;
  border-color: rgba(209,173,89,0.4);
}

.tab-button.active {
  background: rgba(209,173,89,0.1);
  color: var(--color-primary);
  border-color: rgba(209,173,89,0.9);
  transform: translateY(-1px);
}

.tab-panels {
  margin-top: 1rem;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.tab-panel.active {
  display: block;
}


.tab-panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.tab-panel p {
  color: var(--color-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* Aplica o mesmo card escuro em todas as abas de conteúdo */
/* Cards das abas com fundo dourado */
.tab-panel {
  background: linear-gradient(135deg, #d1ad59 0%, #b48c2c 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0px 12px 32px rgba(0,0,0,0.28);
  color: #1e1e1e !important;
}

/* Título dentro do card */
.tab-panel h3,
.tab-panel h4 {
  color: #1b1b1b !important;
  font-weight: 700;
}

/* Parágrafos dentro do card */
.tab-panel p {
  color: #2a2a2a !important;
}


/* Cards das outras áreas também recebem o padrão */
.card {
  background: linear-gradient(135deg, #d1ad59 0%, #b48c2c 100%) !important;
  color: #1e1e1e !important;
  border: 1px solid rgba(0,0,0,0.15);
}

.card p,
.card h4 {
  color: #1e1e1e !important;
}
/* GRID DOS CARDS - 4 EM LINHA */
#tab-outros .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

/* TAMANHO E ESTILO DOS CARDS */
#tab-outros .card {
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(255, 215, 130, 0.9);
  border-radius: 14px;
  padding: 1.0rem;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.55),
    inset 0 0 14px rgba(255, 210, 140, 0.25);

  backdrop-filter: blur(2px);
  transition: all .28s ease;
  min-height: 260px; /* define ponto comum pra não quebrar visual */
  display: flex;
  flex-direction: column;
}

/* DESTAQUE NO HOVER */
#tab-outros .card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.75),
    inset 0 0 20px rgba(255, 228, 160, 0.4);

  border-color: rgba(255, 238, 180, 1);
}

/* TITULOS COM RESPIRAÇÃO */
#tab-outros .card h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 235, 160, 0.35);
}

/* TEXTO INTERNO COM ESPAÇO */
#tab-outros .card p {
  margin-top: .5rem;
  line-height: 1.55;
}

.cta-whatsapp-areas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  padding: 18px 38px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  background: linear-gradient(135deg, #caa648, #a8832f);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.cta-whatsapp-areas:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.cta-whatsapp-areas .whatsapp-icon {
  display: flex;
}

.cta-whatsapp-areas svg {
  width: 24px;
  height: 24px;
}


/* RESPONSIVIDADE: 2 por linha tablet */
@media (max-width: 1024px) {
  #tab-outros .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVIDADE: 1 por linha mobile */
@media (max-width: 580px) {
  #tab-outros .cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Instagram */

#instagram {
  margin-top: -80px;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(44,51,60,0.9), rgba(9,11,16,0.9));
  border: 1px solid rgba(255,255,255,0.06);
}

.insta-avatar {
  flex-shrink: 0;
}

.insta-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 220deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.insta-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.insta-name {
  font-weight: 600;
}

.insta-meta {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insta-count strong {
  color: var(--color-primary);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 4.0rem;
}

.insta-card {
  background: rgba(9,11,16,0.9);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.insta-embed-placeholder {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 0.75rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #d4a63a, #b3872e);
  color: #0d0e11;
  font-size: 1.05rem;
  font-weight: 500px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.icon-instagram svg {
  width: 22px;
  height: 22px;
}

.cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 38px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  background: linear-gradient(135deg, #caa648, #a8832f);
  box-shadow: 0 4px 22px rgba(0,0,0,.3);
  transition: .3s;
}

.cta-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,0,0,.45);
}

/* 🔥 Correção do ícone */
.cta-instagram .insta-icon {
  display: flex;
  align-items: center;
}

.cta-instagram svg {
  width: 20px;
  height: 20px;
  display: block;
}



/* FAQ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  background: rgba(9,11,16,0.95);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  cursor: pointer;
}

.faq-icon {
  margin-left: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: transform 0.15s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: var(--color-muted);
  font-size: 0.94rem;
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 0.9rem;
}

/* Contato */

/* Fundo dourado e texto preto na seção de contato */
#contato.section {
  background: linear-gradient(
    180deg,
    #c89b31 0%,
    #b78926 100%
  );
  color: #000;
}

/* Garante que tudo dentro dela fique escuro: texto e links */
#contato,
#contato * {
  color: #000 !important;
}

/* Remove transparências ou sombras originais */
#contato .section-inner {
  background: transparent !important;
}

/* Se quiser, leve sombra ao redor */
#contato.section {
  box-shadow: 0px -5px 40px rgba(0, 0, 0, 0.5);
}


.contact-inner {
  align-items: flex-start;
}

.contact-info p {
  color: var(--color-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--color-primary);
}

.contact-map iframe {
  width: 100%;
  min-height: 350px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  background: #050608;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Responsivo */

@media (max-width: 900px) {
  .hero {
    padding-top: 6rem;
  }

  .section-inner {
    grid-template-columns: 1fr;
  }

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

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .main-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.25rem 0;
  }

  .hero {
    padding: 5.5rem 0 3.5rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-cta {
    width: 100%;
  }

  .btn,
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .tabs {
    padding-inline: 1rem;
  }

  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* Animação genérica */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- CAIXA PRINCIPAL -------- */
.whatsapp-widget {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 350px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  display: none;
  animation: fadeIn .35s ease;
  z-index: 9999;
}

/* -------- TOPO COM DEGRADÊ GOLD -------- */
.whatsapp-header {
  background: linear-gradient(135deg, #cda43e, #a87a21);
  padding: 16px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-subtitle {
  padding: 6px 20px;
  color: rgba(255, 255, 255, 0.533);
  background: linear-gradient(135deg, #cda43e, #a87a21);
  font-size: .85rem;
}

/* -------- BOTÃO DE FECHAR -------- */
.whatsapp-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #fff;
}

/* -------- CONTEÚDO -------- */
.whatsapp-body {
  padding: 20px;
}

.whatsapp-body p {
  margin-bottom: 12px;
  font-size: .95rem;
  color: #222;
}

/* -------- INPUT -------- */
.whatsapp-body textarea {
  width: 100%;
  height: 95px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  resize: none;
  font-size: .9rem;
  outline: none;
}

/* -------- BOTÃO ENVIAR -------- */
.whatsapp-send {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: center;
  padding: 14px 0;
  background: linear-gradient(135deg, #cda43e, #a87a21);
  color: #ededed;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: .3s;
}

.whatsapp-send:hover {
  opacity: .9;
}

/* -------- BOTÃO FLUTUANTE -------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #cda43e, #a87a21);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.55);
  transition: .3s;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.07);
}

/* Ícone */
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* -------- ANIMAÇÃO -------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================= MOBILE NAV ================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(5,6,8,0.97);
  padding: 1.2rem;
}

.mobile-nav a {
  padding: 0.75rem 0;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ================= HERO RESPONSIVO – DESKTOP x MOBILE ================= */

/* Desktop: esconde versão mobile */
@media (min-width: 769px) {
  .hero-inner--mobile {
    display: none;
  }
}

/* Mobile: esconde versão desktop e usa layout simplificado */
@media (max-width: 768px) {

  /* Esconde completamente a versão desktop do hero */
  .hero-inner--desktop {
    display: none !important;
  }

  /* Configuração geral do hero no mobile */
  .hero {
    padding: 4.5rem 0 3.5rem !important;
  }

  /* Versão mobile – container */
  .hero-inner--mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 0; /* desce texto e botão, deixando o rosto mais livre */
    position: relative;
    z-index: 5;
  }

  /* Logo acima da cabeça do Dr Patrick */
  .hero-mobile-logo {
    max-width: 210px;
    width: 70%;
    height: auto;
    margin-bottom: 2rem;
  }

  /* Título menor e centralizado */
  .hero-mobile-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin: 0 0 1.8rem;
    font-weight: 700;
    color: #ffffff;
  }

  .hero-mobile-title span {
    color: var(--color-primary);
  }

  /* Botão mais compacto e centralizado */
  .whatsapp-btn--mobile {
    width: 100%;
    max-width: 360px;
    padding: 0.85rem 1.6rem !important;
    font-size: 0.98rem !important;
    justify-content: center;
  }

  /* Dá destaque à foto do Dr Patrick:
     centraliza o foco mais para o topo */
  .hero::before {
    background-position: center top !important;
    background-size: cover !important;
  }

  /* Transição para a próxima seção um pouco menor */
  .hero::after {
    height: 220px !important;
  }
}
