/* ================================================
   ODONTO QUALIT — Design System (base: Sacani Kuabara, cores da logo Qualit)
   Paleta baseada na logo: navy #142F76 + azul #387CB9
   ================================================ */

:root {
  /* Cores principais */
  --blue: #387CB9;
  --blue-dark: #142F76;
  --blue-hover: #2D6AA3;
  --blue-light: #EAF2FA;
  --blue-muted: #1F3F80;

  /* Acento premium */
  --gold: #5FA3DC;
  --gold-light: #7FB8E6;
  --gold-bg: #EAF2FA;

  /* Neutros */
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Tipografia */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 1.25rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(20, 47, 118, 0.06);
  --shadow-md: 0 4px 16px rgba(20, 47, 118, 0.08);
  --shadow-lg: 0 8px 32px rgba(20, 47, 118, 0.12);
  --shadow-xl: 0 16px 48px rgba(20, 47, 118, 0.16);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ================================================
   RESET & BASE
   ================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--blue-hover);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--blue-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; }

p {
  margin-bottom: 1rem;
}

address {
  font-style: normal;
}

/* ================================================
   LAYOUT
   ================================================ */

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

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--off-white);
}

.section-blue-light {
  background: var(--blue-light);
}

.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-dark .section-badge {
  background: rgba(56, 124, 185, 0.15);
  color: var(--blue);
}

.highlight {
  color: var(--blue);
}

.highlight-gold {
  color: var(--gold);
}

/* ================================================
   NAVBAR
   ================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.navbar-logo img {
  height: 42px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--blue);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(56, 124, 185, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(95, 163, 220, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1B3C8C 50%, var(--blue-muted) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 47, 118, 0.92) 0%,
    rgba(20, 47, 118, 0.75) 50%,
    rgba(27, 58, 92, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 7rem 0 4rem;
}

.hero .container {
  display: flex;
  align-items: center;
  min-height: 100svh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: rgba(56, 124, 185, 0.12);
  border: 1px solid rgba(56, 124, 185, 0.25);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* ================================================
   TRUST STRIP (Selo Brånemark)
   ================================================ */

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item img {
  height: 32px;
  width: auto;
}

.trust-item strong {
  color: var(--blue-dark);
}

/* ================================================
   CARDS
   ================================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-md);
  margin: 0 auto 1.25rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}

.card-link:hover {
  gap: 0.5rem;
}

/* Grid de cards */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid-2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* Card serviço com destaque */
.card-featured {
  border-color: var(--blue);
  position: relative;
}

.card-featured::before {
  content: 'Destaque';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  padding: 0.2rem 0.8rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

/* ================================================
   SOBRE (Resumo na homepage)
   ================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(20, 47, 118, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-image-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content .section-badge {
  display: inline-flex;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--blue-light);
  border-radius: var(--radius-md);
}

.about-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.about-credential svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================
   DIFERENCIAIS
   ================================================ */

.diff-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.diff-card .card-icon {
  margin: 0 auto 1.25rem;
  width: 64px;
  height: 64px;
}

.diff-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ================================================
   DEPOIMENTOS
   ================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.testimonial-treatment {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ================================================
   FAQ
   ================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  transition: var(--transition);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-400);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================================
   MENTORIA BANNER
   ================================================ */

.mentoria-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1B3C8C 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.mentoria-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.mentoria-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 500px;
}

.mentoria-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(95, 163, 220, 0.15);
  border: 1px solid rgba(95, 163, 220, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ================================================
   LOCALIZAÇÃO
   ================================================ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--gray-100);
}

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

.location-info h3 {
  margin-bottom: 1.5rem;
}

.location-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.location-item svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-item strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.location-item span,
.location-item a {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.location-item a:hover {
  color: var(--blue);
}

.location-hours {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--blue-light);
  border-radius: var(--radius-md);
}

.location-hours h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.location-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.location-hours-row span:first-child {
  font-weight: 500;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 70px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}

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

/* ================================================
   WHATSAPP FLUTUANTE
   ================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  fill: var(--white);
}

/* ================================================
   PAGE HEADER (páginas internas)
   ================================================ */

.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1B3C8C 100%);
  padding: 8rem 0 3.5rem;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.8);
}

/* ================================================
   BLOG
   ================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 a {
  color: var(--blue-dark);
}

.blog-card-body h3 a:hover {
  color: var(--blue);
}

.blog-excerpt {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-read-more:hover {
  gap: 0.5rem;
}

/* Blog post content */
.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem var(--container-padding);
}

.post-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.6rem;
}

.post-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.post-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-content li {
  list-style: disc;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.post-content ol li {
  list-style: decimal;
}

.post-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.05rem;
  color: var(--blue-dark);
  font-style: italic;
}

.post-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.post-cta h3 {
  margin-bottom: 0.75rem;
}

.post-cta p {
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

/* ================================================
   STEPS (Como Funciona)
   ================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ================================================
   TIMELINE (página Sobre)
   ================================================ */

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.timeline-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ================================================
   CONTACT FORM
   ================================================ */

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56, 124, 185, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ================================================
   RESPONSIVE
   ================================================ */

@media (min-width: 1024px) {
  .navbar-phone {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .mentoria-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem;
  }

  .mentoria-banner .btn {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links a {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .navbar-links a::after {
    display: none;
  }

  .navbar-links .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 6rem 0 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .trust-strip .container {
    gap: 1.5rem;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .page-header {
    padding: 6rem 0 2.5rem;
  }

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

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

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

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

/* ================================================
   NAV DRAWER PREMIUM (mobile) + HAMBURGER v2
   ================================================ */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 47, 118, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 999;
}
.nav-backdrop.active { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
  .hamburger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    transition: background .25s ease, transform .25s ease;
  }
  .hamburger.active { background: var(--blue-dark); }
  .hamburger.active span { background: var(--white); }
  .hamburger span { width: 22px; height: 2px; border-radius: 2px; }

  .navbar-links {
    width: min(86vw, 360px) !important;
    right: calc(-1 * min(86vw, 360px)) !important;
    padding: 0 !important;
    background: linear-gradient(160deg, #ffffff 0%, #F7FAFC 60%, #EAF2FA 100%) !important;
    box-shadow: -12px 0 40px rgba(20, 47, 118, 0.18) !important;
    border-left: 1px solid var(--gray-200);
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    transform: translateX(0);
    transition: right .4s cubic-bezier(.22,.61,.36,1) !important;
  }
  .navbar-links.active { right: 0 !important; }

  .nav-drawer-header {
    height: 80px;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, #142F76 0%, #1B3C8C 100%);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 100%;
    align-self: stretch;
  }
  .nav-drawer-header img { height: 46px; width: auto; filter: brightness(0) invert(1); }
  .nav-drawer-close {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease;
  }
  .nav-drawer-close:hover { background: rgba(255,255,255,.22); }

  .navbar-links > li {
    list-style: none;
    width: 100%;
    align-self: stretch;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .navbar-links.active > li {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar-links.active > li:nth-child(1) { transition-delay: .08s; }
  .navbar-links.active > li:nth-child(2) { transition-delay: .14s; }
  .navbar-links.active > li:nth-child(3) { transition-delay: .2s; }
  .navbar-links.active > li:nth-child(4) { transition-delay: .26s; }
  .navbar-links.active > li:nth-child(5) { transition-delay: .32s; }
  .navbar-links.active > li:nth-child(6) { transition-delay: .38s; }

  /* spacing top para os links */
  .navbar-links > li:first-of-type { margin-top: 1rem; }

  .navbar-links a {
    display: flex !important;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.5rem !important;
    margin: 0 .75rem;
    border-radius: 12px;
    border-bottom: none !important;
    font-size: 1rem !important;
    font-weight: 500;
    color: var(--blue-dark) !important;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .navbar-links a:hover,
  .navbar-links a:focus {
    background: rgba(56, 124, 185, 0.08);
    color: var(--blue) !important;
    transform: translateX(4px);
  }
  .navbar-links a svg.nav-icon {
    flex-shrink: 0;
    color: var(--blue);
  }
  .navbar-links a .nav-arrow {
    margin-left: auto;
    color: var(--gray-300);
    transition: transform .2s ease, color .2s ease;
  }
  .navbar-links a:hover .nav-arrow {
    transform: translateX(3px);
    color: var(--blue);
  }

  .navbar-links .btn {
    margin: 1.25rem 1.25rem 0 !important;
    width: auto !important;
    padding: .95rem 1.25rem !important;
    box-shadow: 0 6px 20px rgba(56, 124, 185, .28);
  }

  .nav-drawer-footer {
    margin-top: auto;
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: rgba(255,255,255,.6);
  }
  .nav-drawer-footer .dfc-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: .6rem;
  }
  .nav-drawer-footer a.dfc-contact {
    display: flex; align-items: center; gap: .6rem;
    padding: .5rem 0;
    font-size: .92rem;
    color: var(--blue-dark);
    font-weight: 500;
  }
  .nav-drawer-footer a.dfc-contact svg { color: var(--blue); flex-shrink: 0; }
  .nav-drawer-footer .dfc-social {
    display: flex; gap: .5rem; margin-top: .75rem;
  }
  .nav-drawer-footer .dfc-social a {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .nav-drawer-footer .dfc-social a:hover {
    background: var(--blue); color: var(--white); transform: translateY(-2px);
  }
}

/* Esconder elementos do drawer no desktop */
@media (min-width: 769px) {
  .nav-drawer-header,
  .nav-drawer-footer { display: none !important; }
  .navbar-links .nav-icon,
  .navbar-links .nav-arrow { display: none !important; }
}

/* ================================================
   LP HERO (páginas de tratamento — landing page)
   ================================================ */
.lp-hero {
  position: relative;
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(56,124,185,.18), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(95,163,220,.14), transparent 60%),
    linear-gradient(165deg, #142F76 0%, #1B3C8C 55%, #2D5AA8 100%);
  color: var(--white);
  overflow: hidden;
}
.lp-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 1;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lp-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}
.lp-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.lp-hero .breadcrumb a:hover { color: #fff; }
.lp-hero .breadcrumb .current { color: rgba(255,255,255,.85); }
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(56, 124, 185, .15);
  border: 1px solid rgba(56, 124, 185, .35);
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #A9CDEB;
  margin-bottom: 1.25rem;
}
.lp-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #387CB9;
  box-shadow: 0 0 10px #387CB9;
}
.lp-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.lp-hero h1 .hl {
  background: linear-gradient(135deg, #387CB9 0%, #A9CDEB 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero .lp-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 1.75rem;
}
.lp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}
.lp-trust-badges span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-trust-badges svg { color: #A9CDEB; }
.lp-hero-ctas {
  display: flex;
  gap: .75rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.lp-hero-ctas .btn { font-weight: 600; }
.lp-hero-ctas .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.lp-hero-ctas .btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}
.lp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .35rem;
}
.lp-hero-stat .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}
.lp-hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.lp-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* ratio especial para foto do Dr. Marcos (vertical) */
.lp-hero-media.portrait { aspect-ratio: 4 / 5; }
.lp-hero-media.portrait img { object-position: center center; }
.lp-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,47,118,.5) 100%);
}
.lp-hero-floater {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: .85rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.lp-hero-floater .fl-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-hero-floater .fl-txt strong {
  display: block;
  color: var(--blue-dark);
  font-size: .92rem;
  line-height: 1.2;
}
.lp-hero-floater .fl-txt small {
  font-size: .76rem;
  color: var(--gray-500);
}

/* ================================================
   LP STRIP (CTAs + stats + foto após page-header)
   ================================================ */
.lp-strip {
  padding: 2.5rem 0 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.lp-strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.lp-strip .lp-hero-ctas {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.lp-strip .btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 1.5px solid var(--gray-200);
}
.lp-strip .btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--blue);
  color: var(--blue-dark);
}
.lp-strip-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--blue-light) 0%, #F7FAFC 100%);
  border: 1px solid rgba(56, 124, 185, .15);
  border-radius: var(--radius-lg);
}
.lp-strip-stat .num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: .25rem;
}
.lp-strip-stat .lbl {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.3;
}
.lp-strip-media {
  position: relative;
  aspect-ratio: 4 / 4.5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0;
}
.lp-strip-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.lp-strip-media figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}
.lp-strip-media figcaption strong {
  display: block;
  color: var(--blue-dark);
  font-size: .95rem;
  line-height: 1.2;
  margin-bottom: .15rem;
}
.lp-strip-media figcaption small {
  font-size: .76rem;
  color: var(--gray-500);
}
@media (max-width: 960px) {
  .lp-strip-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-strip-media { aspect-ratio: 4/3; max-height: 360px; }
}
@media (max-width: 768px) {
  .lp-strip { padding: 2rem 0 2.5rem; }
  .lp-strip .lp-hero-ctas { flex-direction: column; }
  .lp-strip .lp-hero-ctas .btn { width: 100%; }
  .lp-strip-stats { padding: 1rem; gap: .75rem; }
  .lp-strip-stat .num { font-size: 1.35rem; }
  .lp-strip-stat .lbl { font-size: .7rem; }
}

/* ================================================
   TRUST CARDS (por que nos escolher)
   ================================================ */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.trust-card {
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.trust-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(56,124,185,.25);
}
.trust-card h4 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.trust-card p {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.55;
}

/* ================================================
   LP TESTIMONIALS (depoimentos na landing)
   ================================================ */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.lp-tcard {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.lp-tcard::before {
  content: "“";
  position: absolute;
  top: -10px; left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--blue);
  opacity: .35;
}
.lp-tcard .stars {
  color: #F5B014;
  margin-bottom: .75rem;
  font-size: 1rem;
}
.lp-tcard p {
  color: var(--gray-700);
  font-size: .96rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.lp-tcard-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.lp-tcard-author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-tcard-author strong {
  display: block;
  color: var(--blue-dark);
  font-size: .95rem;
}
.lp-tcard-author small {
  color: var(--gray-500);
  font-size: .8rem;
}

/* ================================================
   STICKY MOBILE CTA BAR (landing pages)
   ================================================ */
.lp-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .lp-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    position: fixed;
    left: .75rem; right: .75rem; bottom: .75rem;
    z-index: 900;
    padding: .5rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(20,47,118,.18);
  }
  .lp-sticky-cta a {
    display: flex; align-items: center; justify-content: center;
    gap: .4rem;
    padding: .85rem .5rem;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
  }
  .lp-sticky-cta .cta-wa {
    background: #25D366;
    color: #fff;
  }
  .lp-sticky-cta .cta-tel {
    background: var(--blue-dark);
    color: #fff;
  }
  /* esconde o float WhatsApp tradicional para evitar sobreposição */
  body.has-sticky-cta .whatsapp-float { display: none; }
  /* respeita altura do sticky para não cortar conteúdo */
  body.has-sticky-cta main { padding-bottom: 90px; }
}

/* ================================================
   RESPONSIVE LP
   ================================================ */
@media (max-width: 960px) {
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lp-hero { padding: 7rem 0 3rem; }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lp-hero-media { aspect-ratio: 4 / 3; max-height: 340px; }
  .lp-hero h1 { font-size: clamp(1.85rem, 8vw, 2.2rem); }
  .lp-hero .lp-sub { font-size: 1rem; }
  .lp-hero-ctas { flex-direction: column; }
  .lp-hero-ctas .btn { width: 100%; }
  .lp-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    padding: 1rem;
  }
  .lp-hero-stat .num { font-size: 1.35rem; }
  .lp-hero-stat .lbl { font-size: .7rem; }
}
@media (max-width: 480px) {
  .trust-cards { grid-template-columns: 1fr; }
}


/* 1. Ícones sociais do drawer mobile colapsavam como flex item (width 0 -> sumiam) */
.nav-drawer-footer .dfc-social a svg {
  width: 16px !important; height: 16px;
  min-width: 16px; flex-shrink: 0;
  color: var(--blue);
}
/* 2. Centralizar foto do hero (Dr. Marcos) no mobile nas páginas de serviço.
      O container .lp-hero-media fica < largura da coluna (max-height x aspect),
      então centraliza-se o próprio container no grid de 1 coluna. */
@media (max-width: 768px) {
  .lp-hero-media { justify-self: center; margin-left: auto; margin-right: auto; }
}
/* 3. Footer de contato do drawer: padroniza os 3 itens (telefone/e-mail eram <a>
      recuados 24px; endereço era <div> 16px à esquerda, ícone centralizado entre
      as 2 linhas). Mesmo recuo, mesma fonte, ícone alinhado ao topo, quebra equilibrada. */
.nav-drawer-footer .dfc-contact {
  margin-left: 0 !important; margin-right: 0 !important;
  padding-left: 0 !important; padding-right: 0 !important;
  align-items: flex-start;
  font-size: .95rem !important; line-height: 1.4;
  text-wrap: pretty;
}
.nav-drawer-footer .dfc-contact svg { margin-top: 2px; flex-shrink: 0; }

/* ================================================
   ODONTO QUALIT — ajustes sobre a base Sacani (V1, 24/09/2026)
   ================================================ */
.navbar { padding: .75rem 0; }
.navbar-logo img { height: 56px; width: auto; }
.navbar.scrolled .navbar-logo img { height: 46px; }
.nav-drawer-header img { filter: none !important; height: 40px !important; }
.footer-brand img { background: transparent; padding: 0; height: 84px; }
@media (max-width:768px){ .navbar-links .btn, .navbar-links .btn:hover { color:#fff !important; background: var(--blue); justify-content:center; } }

/* hero em grade (era inline no Sacani) */
.hero-grid{display:grid;grid-template-columns:1fr 1fr;min-height:85vh;max-width:1400px;margin:0 auto;}
.hero-text-col{display:flex;flex-direction:column;justify-content:center;padding:clamp(2rem,5vw,5rem) clamp(1.5rem,4vw,4rem);padding-top:clamp(6rem,8vw,8rem);}
.hero-accent{display:inline-flex;align-items:center;gap:8px;margin-bottom:1.5rem;}
.hero-accent-line{width:40px;height:2px;background:var(--gold);}
.hero-accent-text{font-size:.75rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--gold);}
.hero-title{font-family:'Playfair Display',serif;font-size:clamp(2rem,3.5vw,3.2rem);font-weight:700;color:#fff;line-height:1.15;margin-bottom:1.5rem;}
.hero-title .merece{color:var(--gold);}
.hero-desc{font-size:clamp(.9rem,1.1vw,1.05rem);color:rgba(255,255,255,.7);line-height:1.7;max-width:480px;margin-bottom:2rem;}
.hero-ctas-wrap{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:3rem;}
.hero-cta-primary{background:var(--blue);color:#fff;border:none;border-radius:4px;padding:14px 32px;font-weight:600;font-size:.9rem;display:inline-flex;align-items:center;gap:8px;}
.hero-cta-primary:hover{background:var(--blue-hover);color:#fff;}
.hero-cta-secondary{color:rgba(255,255,255,.6);font-size:.85rem;font-weight:500;text-decoration:none;display:inline-flex;align-items:center;gap:6px;padding:14px 16px;border:1px solid rgba(255,255,255,.14);border-radius:4px;transition:all .2s;}
.hero-cta-secondary:hover{color:#fff;border-color:rgba(255,255,255,.4);}
.hero-stats-wrap{display:flex;gap:2.5rem;}
.hero-stat-box .num{font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:700;color:var(--gold);}
.hero-stat-box .num .hero-star{font-size:1.1rem;vertical-align:top;margin-left:2px;}
.hero-stat-box .lbl{font-size:.7rem;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:1px;margin-top:2px;}
.hero-stat-sep{width:1px;background:rgba(255,255,255,.1);}
.hero-media-col{position:relative;overflow:hidden;background:var(--blue-dark);}
.hero-media-col img{width:100%;height:100%;object-fit:cover;object-position:center 25%;}
.hero-fade-l{position:absolute;inset:0;background:linear-gradient(90deg,var(--blue-dark) 0%,transparent 15%);pointer-events:none;}
.hero-fade-r{position:absolute;inset:0;background:linear-gradient(270deg,var(--blue-dark) 0%,transparent 10%);pointer-events:none;}
.hero-fade-b{position:absolute;bottom:0;left:0;right:0;height:100px;background:linear-gradient(to top,var(--blue-dark) 0%,transparent 100%);pointer-events:none;}
.hero-fade-t{position:absolute;top:0;left:0;right:0;height:60px;background:linear-gradient(to bottom,var(--blue-dark) 0%,transparent 100%);pointer-events:none;}
@media(max-width:860px){
  .hero{min-height:auto;}
  .hero-grid{grid-template-columns:1fr;min-height:auto;position:relative;}
  .hero-media-col{position:absolute!important;inset:0;height:100%;width:100%;z-index:0;}
  .hero-media-col img{width:100%;height:100%;object-fit:cover;object-position:center 20%;opacity:.22;filter:saturate(.9) contrast(1.05);}
  .hero-fade-l,.hero-fade-r{display:none;}
  .hero-fade-t{top:0;height:70px;background:linear-gradient(to bottom,rgba(20,47,118,.55) 0%,transparent 100%);}
  .hero-fade-b{bottom:0;height:180px;background:linear-gradient(to top,var(--blue-dark) 0%,rgba(20,47,118,.6) 55%,transparent 100%);}
  .hero-text-col{position:relative;z-index:2;padding:7rem 1.5rem 3rem;text-align:left;min-height:100svh;justify-content:center;}
  .hero-accent{margin-bottom:1.1rem;}
  .hero-title{font-size:clamp(1.95rem,7.5vw,2.5rem);line-height:1.15;margin-bottom:1.1rem;text-shadow:0 2px 12px rgba(0,0,0,.35);}
  .hero-title br{display:none;}
  .hero-desc{font-size:.98rem;color:rgba(255,255,255,.85);margin-bottom:1.9rem;max-width:100%;text-shadow:0 1px 6px rgba(0,0,0,.3);}
  .hero-ctas-wrap{flex-direction:column;gap:10px;margin-bottom:2.25rem;}
  .hero-ctas-wrap .hero-cta-primary,.hero-ctas-wrap .hero-cta-secondary{width:100%;justify-content:center;padding:15px 20px;}
  .hero-ctas-wrap .hero-cta-secondary{font-size:.9rem;background:rgba(20,47,118,.55);backdrop-filter:blur(4px);color:rgba(255,255,255,.8);border-color:rgba(255,255,255,.18);}
  .hero-stats-wrap{gap:0;justify-content:space-between;padding:1.1rem .75rem;background:rgba(20,47,118,.55);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.1);border-radius:6px;}
  .hero-stat-box{flex:1;text-align:center;}
  .hero-stat-box .num{font-size:1.5rem;}
  .hero-stat-box .lbl{font-size:.6rem;letter-spacing:.8px;}
}
@media(max-width:480px){.hero-stat-box .num{font-size:1.3rem;}.hero-stats-wrap{margin-bottom:.5rem;}.whatsapp-float{width:50px;height:50px;bottom:1rem;right:1rem;}.whatsapp-float svg{width:24px;height:24px;}}
@media(max-width:380px){.hero-title{font-size:1.7rem;}.hero-stat-box .num{font-size:1.3rem;}.hero-stat-box .lbl{font-size:.55rem;}}

/* estrelas continuam âmbar (autenticidade Google) */
.testimonial-stars svg, .lp-tcard .stars { color:#E8A33D; fill:#E8A33D; }
.trust-item svg { color: var(--blue); }

/* selo Google (motor de avaliações) */
.ig-google-selo{display:flex;align-items:center;justify-content:center;gap:.5rem;flex-wrap:wrap;margin:0 auto 2rem;padding:.55rem 1.15rem;width:max-content;max-width:100%;background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:999px;box-shadow:0 2px 8px rgba(0,0,0,.06);font-size:.9rem;line-height:1.4;color:#3c4043}
.ig-google-selo strong{font-size:1.05rem;color:#202124}
.ig-google-estrelas{color:#E8A33D;letter-spacing:1px}
.ig-google-total{color:#5f6368}
.ig-google-selo a{color:#1a73e8;text-decoration:none;font-weight:600;border-bottom:1px solid transparent}
.ig-google-selo a:hover{border-bottom-color:#1a73e8}
@media(max-width:640px){.ig-google-selo{font-size:.82rem;padding:.5rem .9rem}.ig-google-total{width:100%;text-align:center}}

/* resultados (antes e depois) */
.result-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
.result-grid-3{grid-template-columns:repeat(3,1fr);}
.result-item{position:relative;display:block;aspect-ratio:1/1;border-radius:var(--radius-lg);overflow:hidden;background:var(--gray-100);box-shadow:var(--shadow-sm);transition:transform .3s ease, box-shadow .3s ease;}
.result-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.result-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.result-item:hover img{transform:scale(1.04);}
.result-tag{position:absolute;top:.9rem;left:.9rem;padding:.3rem .7rem;background:rgba(20,47,118,.9);color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;border-radius:var(--radius-sm);}
.result-cap{position:absolute;left:0;right:0;bottom:0;padding:2.2rem 1rem .9rem;background:linear-gradient(to top,rgba(20,47,118,.85),transparent);color:#fff;font-size:.9rem;font-weight:600;}
.result-aviso{text-align:center;font-size:.8rem;color:var(--gray-400);margin-top:1.5rem;}
@media(max-width:768px){.result-grid,.result-grid-3{grid-template-columns:repeat(2,1fr);gap:.75rem;}.result-cap{font-size:.78rem;padding:1.6rem .7rem .6rem;}.result-tag{font-size:.69rem;top:.6rem;left:.6rem;padding:.25rem .55rem;}}

/* lightbox */
.lightbox{position:fixed;inset:0;z-index:2000;background:rgba(10,20,50,.92);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem;}
.lightbox[hidden]{display:none;}
.lightbox img{max-width:min(92vw,900px);max-height:80vh;border-radius:var(--radius-md);box-shadow:0 20px 60px rgba(0,0,0,.5);}
.lightbox-cap{color:#fff;margin-top:1rem;font-weight:600;}
.lightbox-close{position:absolute;top:1rem;right:1rem;width:44px;height:44px;border-radius:50%;border:none;background:rgba(255,255,255,.12);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;}
.lightbox-close:hover{background:rgba(255,255,255,.25);}

/* depoimentos em vídeo — 2x2, vídeo 9:16 inteiro (object-fit: contain), nunca cortado */
.video-section .section-header p{color:rgba(255,255,255,.7);}
.video-section .section-badge{background:rgba(255,255,255,.1);color:#fff;}
.video-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;}
.video-card{display:grid;grid-template-columns:minmax(0,340px) 1fr;gap:1.5rem;align-items:center;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);padding:1.25rem;}
.video-box{width:100%;aspect-ratio:9/16;border-radius:var(--radius-md);overflow:hidden;background:#000;}
.video-box video{width:100%;height:100%;display:block;object-fit:contain;background:#000;}
.video-card figcaption{padding:0 .25rem;}
.video-card figcaption p{font-size:1.05rem;line-height:1.6;color:rgba(255,255,255,.9);font-style:italic;margin-bottom:.9rem;}
.video-card figcaption strong{display:block;color:#fff;font-size:1.05rem;}
.video-card figcaption small{color:rgba(255,255,255,.6);font-size:.85rem;}
@media(max-width:1024px){.video-card{grid-template-columns:minmax(0,260px) 1fr;}}
@media(max-width:768px){.video-grid{grid-template-columns:1fr;gap:1rem;}.video-card{grid-template-columns:1fr;gap:1rem;padding:1rem;}.video-box{max-width:100%;}.video-card figcaption p{font-size:.95rem;}}

/* galeria sobre */
.gal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
.gal-item{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/5;background:var(--gray-100);}
.gal-item img{width:100%;height:100%;object-fit:cover;object-position:center 20%;}
@media(max-width:768px){.gal-grid{grid-template-columns:1fr 1fr;gap:.75rem;}.gal-item:last-child{display:none;}}

/* contato cards */
.contact-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.contact-card{text-align:center;color:inherit;}
.contact-card p{margin-bottom:.75rem;}
@media(max-width:768px){.contact-cards{grid-template-columns:1fr;}}

.blog-empty{text-align:center;color:var(--gray-500);padding:2rem 0;}
.blog-grid:empty + .blog-empty{display:block;}
