/* ==========================================================================
   DRA. MARIANA FERREIRA OLIVEIRA LIMA — CARDIOLOGIA CLÍNICA & ECOCARDIOGRAFIA
   Identidade: Cardiologia Empática | Vinho (#722F37), Rosa Pó (#F2D4D7), Creme (#FFFDD0)
   Tipografia: 'Lora' (Títulos) + 'Roboto' (Corpo)
   ========================================================================== */

:root {
  /* Cores Principais */
  --wine-primary: #722F37;
  --wine-dark: #4D1E24;
  --wine-deep: #341217;
  --wine-light: #8E3D46;
  --wine-hover: #5E252C;
  --wine-glow: rgba(114, 47, 55, 0.25);
  
  --rose-powder: #F2D4D7;
  --rose-soft: #F9EBEF;
  --rose-light: #FCF4F5;
  --rose-accent: #E8BBC0;
  
  --cream-bg: #FFFDD0;
  --cream-surface: #FFFDF2;
  --cream-card: #FFFFFF;
  --cream-warm: #FAF7EA;
  --cream-border: #EFE8D3;
  
  --text-main: #2C2224;
  --text-muted: #645356;
  --text-light: #8E7C7F;
  --white: #FFFFFF;
  
  --gold-subtle: #C49D68;
  
  /* Sombras & Transições */
  --shadow-sm: 0 2px 8px rgba(114, 47, 55, 0.05);
  --shadow-md: 0 8px 24px rgba(114, 47, 55, 0.08);
  --shadow-lg: 0 16px 40px rgba(114, 47, 55, 0.12);
  --shadow-card: 0 10px 30px rgba(114, 47, 55, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--cream-surface);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: var(--wine-dark);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--wine-deep);
  color: var(--rose-powder);
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(242, 212, 215, 0.15);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.85;
}

.badge-doctoralia-pill {
  background: rgba(242, 212, 215, 0.18);
  color: #FFFFFF;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 253, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-powder);
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
}

.brand-symbol svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--wine-dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine-light);
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--wine-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--wine-primary);
}

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

.btn-header-cta {
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-dark));
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(114, 47, 55, 0.2);
  transition: all var(--transition-fast);
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, var(--wine-hover), var(--wine-deep));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.3);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--wine-dark);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, rgba(255, 253, 208, 0.45) 0%, rgba(249, 235, 239, 0.6) 50%, var(--cream-surface) 100%);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 212, 215, 0.65) 0%, rgba(242, 212, 215, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 253, 208, 0.8) 0%, rgba(255, 253, 208, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--rose-accent);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wine-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background-color: var(--wine-primary);
  border-radius: 50%;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: 2.85rem;
  line-height: 1.18;
  color: var(--wine-dark);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-title span.empower {
  color: var(--wine-primary);
  position: relative;
  display: inline-block;
}

.hero-title span.empower::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--rose-powder);
  opacity: 0.6;
  z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(114, 47, 55, 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--wine-dark);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero-badge-item svg {
  width: 16px;
  height: 16px;
  fill: var(--wine-primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-dark));
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-size: 1.02rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.28);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--wine-hover), var(--wine-deep));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(114, 47, 55, 0.38);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--wine-dark);
  border: 1.5px solid var(--rose-accent);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--wine-primary);
  color: var(--wine-primary);
  background-color: var(--rose-soft);
  transform: translateY(-2px);
}

/* Hero Media Box com Foto Real */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(145deg, #FFFFFF, var(--rose-powder));
  box-shadow: 0 20px 50px rgba(114, 47, 55, 0.18);
  border: 1px solid rgba(242, 212, 215, 0.6);
}

.hero-photo-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  background-color: #EEE;
}

/* Floating Card Hero */
.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(114, 47, 55, 0.16);
  border: 1px solid rgba(242, 212, 215, 0.8);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 290px;
  animation: floatCard 4s infinite ease-in-out;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-primary);
  flex-shrink: 0;
}

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

.floating-info h5 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  color: var(--wine-dark);
  line-height: 1.2;
}

.floating-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-rating-pill {
  position: absolute;
  top: 24px;
  right: -16px;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(114, 47, 55, 0.15);
  border: 1px solid var(--rose-powder);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-rating-stars {
  color: #E5A93C;
  display: flex;
  gap: 2px;
}

.hero-rating-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wine-dark);
}

/* ==========================================================================
   TRUST STATS BAR
   ========================================================================== */
.trust-stats {
  background-color: var(--white);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  padding: 34px 0;
  position: relative;
  z-index: 2;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-right: 1px solid rgba(114, 47, 55, 0.08);
}

.trust-stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose-powder));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-primary);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-text h4 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.55rem;
  color: var(--wine-dark);
  font-weight: 700;
  line-height: 1.1;
}

.stat-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.35;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background-color: var(--cream-surface);
  position: relative;
}

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

.about-card-portrait {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

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

.about-frame:hover img {
  transform: scale(1.03);
}

.about-cred-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-powder);
}

.about-cred-badge h6 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  color: var(--wine-dark);
  margin-bottom: 4px;
}

.about-cred-badge p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wine-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.35rem;
  color: var(--wine-dark);
  line-height: 1.25;
  margin-bottom: 22px;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 36px;
}

.pillar-item {
  background: #FFFFFF;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(114, 47, 55, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.pillar-item:hover {
  transform: translateY(-3px);
  border-color: var(--rose-accent);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-primary);
  margin-bottom: 12px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar-item h5 {
  font-size: 1rem;
  color: var(--wine-dark);
  margin-bottom: 6px;
}

.pillar-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--rose-light) 50%, var(--white) 100%);
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header-center .section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(114, 47, 55, 0.09);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-powder), var(--wine-primary));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-accent);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose-powder));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-primary);
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-dark));
  color: var(--white);
  transform: scale(1.05);
}

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

.service-card h4 {
  font-size: 1.26rem;
  color: var(--wine-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  border-top: 1px solid rgba(114, 47, 55, 0.06);
  padding-top: 16px;
  margin-bottom: 20px;
}

.service-features li {
  font-size: 0.84rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--wine-primary);
  flex-shrink: 0;
}

.service-action-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wine-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-action-link:hover {
  gap: 10px;
  color: var(--wine-dark);
}

/* ==========================================================================
   ECOCARDIOGRAMA SPOTLIGHT
   ========================================================================== */
.spotlight-section {
  padding: 80px 0;
  background-color: var(--cream-surface);
}

.spotlight-card {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-deep) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spotlight-pattern {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(242, 212, 215, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight-content h3 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.spotlight-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.spotlight-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.spotlight-highlight-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 212, 215, 0.16);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--rose-powder);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotlight-highlight-item svg {
  width: 18px;
  height: 18px;
  fill: var(--rose-powder);
  flex-shrink: 0;
}

.spotlight-side-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(242, 212, 215, 0.25);
  border-radius: var(--radius-md);
  padding: 34px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.spotlight-side-box h4 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.spotlight-side-box p {
  font-size: 0.88rem;
  color: var(--rose-powder);
  margin-bottom: 24px;
  line-height: 1.55;
}

.btn-spotlight {
  background-color: var(--rose-powder);
  color: var(--wine-deep);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-spotlight:hover {
  background-color: #FFFFFF;
  color: var(--wine-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   PHILOSOPHY & DIFFERENTIALS
   ========================================================================== */
.differentials-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.diff-card {
  background-color: var(--cream-surface);
  border: 1px solid var(--cream-border);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: all var(--transition-fast);
  position: relative;
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: var(--rose-accent);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.diff-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem;
  color: var(--rose-accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.diff-card h4 {
  font-size: 1.15rem;
  color: var(--wine-dark);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DOCTORALIA RECOGNITION & PATIENT REVIEWS
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--rose-light) 0%, var(--cream-surface) 100%);
  position: relative;
}

.doctoralia-badge-box {
  background: #FFFFFF;
  border: 1px solid var(--rose-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.doctoralia-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.doctoralia-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(114, 47, 55, 0.25);
}

.doctoralia-icon-ring svg {
  width: 36px;
  height: 36px;
}

.doctoralia-info h3 {
  font-size: 1.65rem;
  color: var(--wine-dark);
  margin-bottom: 4px;
}

.doctoralia-info p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.doctoralia-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.score-box {
  text-align: center;
  padding: 12px 24px;
  background: var(--rose-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--rose-powder);
}

.score-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wine-primary);
  line-height: 1;
}

.score-stars {
  color: #E5A93C;
  font-size: 0.95rem;
  margin-top: 4px;
}

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

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(114, 47, 55, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-accent);
}

.review-stars {
  color: #E5A93C;
  margin-bottom: 14px;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(114, 47, 55, 0.06);
  padding-top: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--rose-soft);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info h6 {
  font-size: 0.92rem;
  color: var(--wine-dark);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.author-info span {
  font-size: 0.76rem;
  color: var(--text-light);
  display: block;
}

/* ==========================================================================
   CLINIC / CONVÊNIOS & ECOLAB
   ========================================================================== */
.clinic-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

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

.clinic-info-list {
  list-style: none;
  margin: 28px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clinic-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.clinic-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--rose-soft);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.clinic-icon svg {
  width: 18px;
  height: 18px;
}

.clinic-item-text h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine-dark);
}

.clinic-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.convenios-box {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.convenios-box h4 {
  font-size: 1.35rem;
  color: var(--wine-dark);
  margin-bottom: 12px;
}

.convenios-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.convenios-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.convenio-tag {
  background: #FFFFFF;
  border: 1px solid var(--rose-accent);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine-primary);
}

.convenio-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.45;
  border-top: 1px solid rgba(114, 47, 55, 0.08);
  padding-top: 16px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background-color: var(--cream-surface);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid rgba(114, 47, 55, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--rose-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--wine-dark);
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--wine-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-card {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-card h3 {
  font-size: 1.85rem;
  color: var(--wine-dark);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose-powder));
  color: var(--wine-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-detail-text h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine-dark);
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.contact-detail-text a:hover {
  color: var(--wine-primary);
}

.form-box {
  background: #FFFFFF;
  border: 1px solid rgba(114, 47, 55, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-box h3 {
  font-size: 1.65rem;
  color: var(--wine-dark);
  margin-bottom: 8px;
}

.form-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--wine-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(114, 47, 55, 0.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text-main);
  background-color: var(--cream-surface);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--wine-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-dark));
  color: #FFFFFF;
  padding: 14px;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 18px rgba(114, 47, 55, 0.25);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--wine-hover), var(--wine-deep));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(114, 47, 55, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--wine-deep);
  color: var(--rose-powder);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(242, 212, 215, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(242, 212, 215, 0.8);
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-cred {
  font-size: 0.8rem;
  color: var(--rose-powder);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.footer-col h5 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(242, 212, 215, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-p {
  font-size: 0.88rem;
  color: rgba(242, 212, 215, 0.8);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(242, 212, 215, 0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(242, 212, 215, 0.65);
}

.footer-cf-note {
  max-width: 600px;
  line-height: 1.4;
}

.fuze-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-powder);
  font-weight: 500;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  z-index: -1;
  animation: pulseWa 2s infinite;
}

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

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-badges-row {
    justify-content: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-floating-card {
    left: 10px;
    bottom: -15px;
  }
  
  .hero-rating-pill {
    right: 10px;
  }

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

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

  .about-frame img {
    height: 400px;
  }

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

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--rose-accent);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

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

  .menu-toggle {
    display: block;
  }

  .btn-header-cta {
    display: none;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .section-title {
    font-size: 1.95rem;
  }

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

  .trust-stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
    padding-bottom: 14px;
  }

  .trust-stat-item:last-child {
    border-bottom: none;
  }

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

  .about-pillars {
    grid-template-columns: 1fr;
  }

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

  .spotlight-card {
    padding: 34px 24px;
  }

  .spotlight-highlights {
    grid-template-columns: 1fr;
  }
}
