/* Premium Pink Medical Theme CSS */
:root {
  --primary: #c13a69; /* Elegant Rose/Pink */
  --primary-light: #e57399;
  --primary-dark: #8a2446;
  --bg-color: #fdf2f8; /* Soft pink background */
  --bg-white: #ffffff;
  --text-dark: #2a1b22;
  --text-light: #6b5c63;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --header-height: 145px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-color);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

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

ul.custom-list {
  list-style: none;
  padding-left: 0;
}
ul.custom-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
ul.custom-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 20px;
  top: -2px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  -webkit-transform: translateZ(0); /* Força a aceleração de hardware e corrige o position:fixed no iOS */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 112px;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.nav-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.6) !important;
  margin-left: 15px;
  transition: var(--transition);
}

.nav-social-icon:hover {
  color: var(--primary) !important;
  transform: scale(1.1);
}

.header-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.header-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-dark);
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  margin-top: var(--header-height);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* ancora no topo — corta embaixo, nunca em cima */
  z-index: -2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(253,242,248,0.9) 0%, rgba(255,255,255,0.7) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero-subtitle {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  display: block;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.hero-desc {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Contact Section */
.section {
  padding: 100px 20px;
}

.section-alt {
  background: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.legal-content {
  padding-left: 20px;
  padding-right: 20px;
}

#perfil .section-title {
  font-size: 30px; /* 25% smaller than 40px */
}

.profile-info {
  font-size: 14px;
  color: var(--primary-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.profile-content {
  max-width: 100%;
  margin: 0;
}

.section-inner {
  position: relative;
}

.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(193, 58, 105, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 50px;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

/* Profile Grid */
.profile-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 50px;
  align-items: flex-start;
}

#perfil.section {
  padding: 60px 20px; /* Added 20px horizontal padding */
}

.profile-image-col .image-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 280px; /* Compact photo */
}

.profile-image-col img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-subtitle {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0px;
  letter-spacing: 0.5px;
}

.profile-content h3 {
  font-size: 18px;
  margin: 20px 0 12px;
  color: var(--primary-dark);
  position: relative;
  padding-left: 15px;
  border-left: 3px solid var(--primary-light);
}

.profile-content p {
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.5;
}

.profile-content .custom-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 5px 20px;
  margin: 10px 0 20px;
}

.profile-content .custom-list li {
  font-size: 14px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
  color: var(--text-light);
}

.profile-content .custom-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-card {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-content-box {
  padding: 30px;
}

.service-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-desc {
  color: var(--text-light);
}

/* Accordion */
.health-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 20px 30px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-btn:hover, .accordion-btn.active {
  color: var(--primary);
}

.accordion-btn .icon {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.accordion-btn.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion-inner {
  padding: 0 30px 30px;
  display: flex;
  gap: 20px;
}

.acc-text {
  flex: 1;
}

.acc-text p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.acc-text p:last-child {
  margin-bottom: 0;
}

.acc-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto 60px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  background: #fdfdfd;
  transition: var(--transition);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(193, 58, 105, 0.1);
}

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

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(193, 58, 105, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-card:hover {
  box-shadow: 0 12px 40px rgba(193, 58, 105, 0.16);
  transform: translateY(-4px);
}

.map-wrapper {
  position: relative;
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

/* Info area */
.contact-info {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Header do card */
.contact-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(193, 58, 105, 0.12);
}
.contact-unit-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(193, 58, 105, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.contact-info-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1;
}

/* Linhas de informação */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-info-row:last-of-type {
  border-bottom: none;
  padding-bottom: 6px;
}

/* Ícones */
.contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(193, 58, 105, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.contact-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary);
}
.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
}
.contact-icon-whatsapp svg {
  width: 17px;
  height: 17px;
  fill: #25d366;
  stroke: none;
}

/* Labels e valores */
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 4px 0;
  line-height: 1;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}
.contact-value a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-value a:hover {
  color: var(--primary);
}

/* Botão CTA dentro do card */
.contact-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  transition: opacity 0.25s ease, gap 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.contact-cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.contact-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.contact-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 20px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.footer-credit {
  margin-top: 15px;
  opacity: 0.8;
  font-size: 0.9em; /* 10% smaller */
}

.footer-doctor-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  font-size: 1.15em; /* 15% larger */
}

.footer-specialty {
  font-size: 0.98em; /* Adjusted: (0.85 * 1.15) */
  opacity: 0.9;
  margin-bottom: 0;
}

.footer-crm {
  font-size: 0.81em; /* Adjusted: (0.7 * 1.15) */
  opacity: 0.7;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-sep {
  color: rgba(255,255,255,0.3);
  margin: 0 8px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.site-footer a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Cookie Consent */
/* ── Cookie Consent LGPD — barra minimalista ── */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(640px, calc(100vw - 32px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(193,58,105,0.08);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.4s ease;
  border: 1px solid rgba(193,58,105,0.1);
}
.cookie-consent.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}
.cookie-text strong { color: var(--text-dark); }
.cookie-text a { color: var(--primary); font-weight: 600; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid #ddd;
}
.cookie-btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.cookie-btn-primary {
  background: var(--primary);
  color: #fff;
}
.cookie-btn-primary:hover { background: var(--primary-dark); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

/* Responsive & Mobile Optimization (ProMax Standards) */
@media (max-width: 991px) {
  .profile-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-content .custom-list {
    grid-template-columns: 1fr; /* Force single column on mobile */
    text-align: left; /* Keep text left-aligned for bullet points integrity */
    max-width: 500px;
    margin: 10px auto 20px;
  }
  .profile-image-col {
    margin: 0 auto 30px;
    max-width: 280px;
  }
  .hero-title {
    font-size: 42px;
  }
  .accordion-inner {
    flex-direction: column-reverse;
  }
  .acc-img {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 145px;
  }

  .site-header {
    min-height: var(--header-height);
    height: auto;
    padding-top: env(safe-area-inset-top);
    box-sizing: border-box;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .desktop-nav {
    display: none;
    position: fixed;
    top: calc(var(--header-height) + env(safe-area-inset-top));
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height) - env(safe-area-inset-top));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 25px;
    z-index: 999;
    overflow-y: auto;
    transition: var(--transition);
  }

  .desktop-nav.active {
    display: flex;
    animation: slideInDown 0.4s ease-out;
  }

  @keyframes slideInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .desktop-nav a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 85vh;
    padding: 60px 20px;
    margin-top: var(--header-height);
  }

  .hero-video-bg {
    object-position: center top; /* mantém o mesmo enquadramento no mobile */
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .services-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

  .section {
    padding: 50px 20px;
  }

  .legal-content {
    padding-top: 100px !important; /* Overriding inline style for better mobile rhythm */
  }

  .section-title {
    font-size: 28px;
  }

  .profile-content {
    max-width: 90%; /* On mobile, 75% might be too narrow, using 90% for better UX */
  }

  .footer-links {
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
  }

  .footer-links a {
    font-size: 11px; /* ~20% smaller than 14px */
  }

  .footer-doctor-name, .footer-specialty, .footer-crm {
    margin-bottom: 0;
    line-height: 1.2;
  }

  .footer-credit {
    font-size: 10px; /* Adjusted based on decrease */
    opacity: 0.7;
    margin-top: 5px;
  }

  .contact-info {
    padding: 22px 20px 24px;
  }

  .contact-info-header h3 {
    font-size: 1.3rem;
  }

  .contact-info-row {
    gap: 12px;
  }

  .contact-cta-btn {
    font-size: 0.85rem;
    padding: 13px 16px;
  }

  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .cookie-consent {
    bottom: 12px;
    width: calc(100vw - 24px);
  }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* Fix for Safari iOS height issue */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* ============================================================
   BLOG / NOTÍCIAS — Section Styles
   ============================================================ */

/* ── Post Card ── */
.blog-post-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(193, 58, 105, 0.10);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.blog-post-card:hover {
  box-shadow: 0 16px 56px rgba(193, 58, 105, 0.18);
  transform: translateY(-4px);
}

/* ── Imagem ── */
.blog-post-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  max-height: 420px;
}
.blog-post-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-post-card:hover .blog-post-img {
  transform: scale(1.04);
}

/* Badge sobre a imagem */
.blog-post-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(193, 58, 105, 0.35);
}

/* ── Body ── */
.blog-post-body {
  padding: 44px 48px 48px;
}

/* Meta (data · tempo de leitura) */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-light);
}
.blog-meta-date,
.blog-meta-read {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-meta-dot {
  color: var(--primary-light);
}

/* Título do post */
.blog-post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Lead / intro */
.blog-post-lead {
  font-size: 1.07rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* Divisor elegante */
.blog-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 4px;
  margin-bottom: 28px;
}

/* ── Bloco de citação ── */
.blog-highlight-block {
  position: relative;
  background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px 24px 36px;
  margin-bottom: 28px;
}
.blog-quote-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-light);
  opacity: 0.55;
  margin-bottom: 10px;
  display: block;
}
.blog-highlight-block p {
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.blog-quote-author {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* Texto corrido */
.blog-post-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* ── Estatísticas em linha ── */
.blog-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  background: var(--bg-color);
  border-radius: 16px;
  padding: 28px 24px;
}
.blog-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.blog-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.blog-stat-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.45;
  max-width: 120px;
}

/* ── Link "leia mais" ── */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, gap 0.25s ease;
}
.blog-read-more:hover {
  border-bottom-color: var(--primary-light);
  color: var(--primary-dark);
  gap: 12px;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .blog-post-body {
    padding: 28px 24px 32px;
  }
  .blog-post-img {
    height: 260px;
  }
  .blog-stats-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 20px;
  }
  .blog-stat-number {
    font-size: 1.7rem;
  }
  .blog-highlight-block {
    padding: 22px 22px 18px 26px;
  }
}
@media (max-width: 480px) {
  .blog-post-image-wrap,
  .blog-post-img {
    border-radius: 20px 20px 0 0;
  }
  .blog-post-card {
    border-radius: 20px;
  }
  .blog-post-body {
    padding: 22px 18px 26px;
  }
}
