/* ============================================================
   DRA. BIANCA SANTOS — LANDING CSS
   Replaces Tailwind + Framer Motion with pure CSS
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --brand-purple: #48384C;
  --brand-green:  #D6E094;
  --brand-purple-95: rgba(72, 56, 76, 0.95);
  --font-futura: "Futura", "Trebuchet MS", "Century Gothic", sans-serif;
  --font-cloud:  "Cloud Loop", "Century Gothic", "Nunito", sans-serif;
  --container-max: 1200px;
  --section-py: 8rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-cloud);
  color: var(--brand-purple);
  background-color: var(--brand-green);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-futura);
  font-weight: normal;
  line-height: 1.15;
}

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

a { text-decoration: none; color: inherit; }

/* Remove WP admin bar gap */
#wpadminbar { position: fixed !important; }

/* --- Container -------------------------------------------- */
.db-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .db-container { padding-inline: 3rem; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#db-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 2rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#db-header.scrolled {
  background: var(--brand-purple-95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.db-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.db-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.db-logo-icon { color: var(--brand-green); flex-shrink: 0; }
.db-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.db-logo-name {
  font-family: var(--font-futura);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.db-logo-crm {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

/* Desktop nav */
.db-nav {
  display: none;
  gap: 2.5rem;
  list-style: none;
  font-family: var(--font-futura);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .db-nav { display: flex; } }
.db-nav a {
  color: #fff;
  transition: color 0.25s;
}
.db-nav a:hover { color: var(--brand-green); }

/* Mobile toggle */
.db-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.25rem;
}
@media (min-width: 768px) { .db-mobile-toggle { display: none; } }

/* Mobile menu */
.db-mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  background: var(--brand-purple-95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  font-family: var(--font-futura);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.db-mobile-menu.open { display: flex; }
.db-mobile-menu a { color: #fff; transition: color 0.25s; }
.db-mobile-menu a:hover { color: var(--brand-green); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.db-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}
.db-section--purple { background: var(--brand-purple); }
.db-section--green  { background: var(--brand-green); }
.db-section--white  { background: #fff; }
.db-section--dark   { background: #3A2D3D; }

/* SVG background lines */
.db-bg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ============================================================
   BLOB SHAPES
   ============================================================ */
.db-blob-1 { border-radius: 35% 65% 60% 40% / 40% 45% 55% 60%; }
.db-blob-2 { border-radius: 55% 45% 35% 65% / 50% 35% 65% 50%; }

/* ============================================================
   ANIMATIONS (replaces Framer Motion)
   ============================================================ */
.db-animate {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.db-animate.db-fade-left  { transform: translateX(-2rem); }
.db-animate.db-fade-right { transform: translateX(2rem); }
.db-animate.db-fade-scale { transform: scale(0.92); }
.db-animate.is-visible {
  opacity: 1;
  transform: none;
}
.db-animate-delay-1 { transition-delay: 0.15s; }
.db-animate-delay-2 { transition-delay: 0.3s; }
.db-animate-delay-3 { transition-delay: 0.45s; }
.db-animate-delay-4 { transition-delay: 0.6s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.db-hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .db-hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}
.db-hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .db-hero-grid { grid-template-columns: 1fr 1fr; }
}
.db-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  font-family: var(--font-futura);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.db-hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.db-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-cloud);
  font-weight: 300;
}
.db-hero-list .db-icon { color: var(--brand-green); flex-shrink: 0; }

.db-hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .db-hero-img-wrap { justify-content: flex-end; }
}
.db-hero-img-inner {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  position: relative;
}
.db-hero-img-glow {
  position: absolute;
  inset: 0;
  background: rgba(214, 224, 148, 0.2);
  transform: translate(1rem, 1rem);
  filter: blur(2rem);
}
.db-hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.db-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-futura);
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s, color 0.25s, box-shadow 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
}
.db-btn:hover  { transform: scale(1.04); }
.db-btn:active { transform: scale(0.97); }

.db-btn--primary {
  background: var(--brand-green);
  color: var(--brand-purple);
  box-shadow: 0 8px 24px rgba(214,224,148,0.25);
}
.db-btn--primary:hover { background: #fff; }

.db-btn--outline {
  background: transparent;
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}
.db-btn--outline:hover {
  background: var(--brand-purple);
  color: var(--brand-green);
}

.db-btn--outline-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.db-btn--outline-white:hover {
  background: var(--brand-green);
  color: var(--brand-purple);
  border-color: var(--brand-green);
}

.db-btn--whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.db-btn--whatsapp:hover { background: #20b858; }

.db-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.db-about-grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .db-about-grid { grid-template-columns: 1fr 1fr; }
}
.db-about-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  color: var(--brand-purple);
}
.db-about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--font-cloud);
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(72,56,76,0.9);
}
.db-about-text p:last-child { font-weight: 700; }

.db-about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.db-about-img-inner {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  position: relative;
}
.db-about-img-glow {
  position: absolute;
  inset: 0;
  background: rgba(72,56,76,0.1);
  transform: translate(-1rem, 1rem);
  filter: blur(2rem);
}
.db-about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.db-quote {
  padding: 10rem 0;
}
.db-quote-text {
  font-family: var(--font-futura);
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  line-height: 1.4;
  color: #fff;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.db-services-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 5rem;
}
.db-services-grid {
  display: grid;
  gap: 4rem;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .db-services-grid { grid-template-columns: repeat(3, 1fr); }
}
.db-service-card {}
.db-service-title {
  font-family: var(--font-futura);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
}
.db-service-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}
.db-service-circle {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(72,56,76,0.1);
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.db-service-card:hover .db-service-circle {
  border-color: rgba(72,56,76,0.35);
  transform: scale(1.05);
}
.db-service-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(72,56,76,0.2);
  z-index: 1;
  transition: opacity 0.4s;
}
.db-service-card:hover .db-service-circle::before { opacity: 0; }
.db-service-circle img { width: 100%; height: 100%; object-fit: cover; }

.db-service-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--brand-green);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: var(--brand-purple);
  z-index: 2;
  transition: transform 0.4s;
}
.db-service-card:hover .db-service-badge { transform: scale(1.1); }

.db-service-list {
  list-style: none;
  font-family: var(--font-cloud);
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(72,56,76,0.8);
}

/* ============================================================
   TOOLS SECTION
   ============================================================ */
.db-tools-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 5rem;
}
.db-tools-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .db-tools-grid { grid-template-columns: repeat(3, 1fr); }
}
.db-tool-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.db-tool-icon-wrap {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
.db-tool-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.db-tool-text {
  font-family: var(--font-cloud);
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  padding-top: 0.5rem;
}
/* SVG icon fallback in tool */
.db-tool-icon-svg {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
}

/* ============================================================
   MODALITIES SECTION
   ============================================================ */
.db-modalities-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 5rem;
}
.db-modalities-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .db-modalities-grid { grid-template-columns: repeat(3, 1fr); }
}
.db-modality-card {
  border: 1px solid rgba(72,56,76,0.3);
  border-radius: 2.5rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
  text-align: center;
  transition: background 0.4s;
}
.db-modality-card:hover { background: rgba(72,56,76,0.05); }
.db-modality-icon {
  margin-bottom: 2.5rem;
  color: rgba(72,56,76,0.5);
}
.db-modality-desc {
  font-family: var(--font-cloud);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(72,56,76,0.9);
  margin-bottom: 3rem;
  flex: 1;
}
.db-modality-label {
  border: 1px solid var(--brand-purple);
  border-radius: 999px;
  padding: 0.6rem 2.5rem;
  font-family: var(--font-futura);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.db-testimonials-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  text-align: center;
  margin-bottom: 6rem;
}
.db-testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 850px;
  margin-inline: auto;
}
.db-testimonial-card {
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.db-testimonial-card:nth-child(2) { margin-left: 0; }
@media (min-width: 768px) {
  .db-testimonial-card:nth-child(1) { margin-right: 6rem; }
  .db-testimonial-card:nth-child(2) { margin-left: 6rem; }
  .db-testimonial-card:nth-child(3) { margin-inline: 3rem; }
}
.db-testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.db-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.db-testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}
.db-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.db-testimonial-name {
  font-family: var(--font-futura);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.05em;
}
.db-testimonial-meta {
  font-family: var(--font-cloud);
  font-size: 0.85rem;
  color: #6b7280;
}
.db-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.db-testimonial-stars svg { fill: #facc15; color: #facc15; }
.db-testimonial-date {
  font-family: var(--font-cloud);
  font-size: 0.85rem;
  color: #9ca3af;
  margin-left: 0.75rem;
}
.db-testimonial-text {
  font-family: var(--font-cloud);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.db-contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
}
.db-contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .db-contact-grid { grid-template-columns: 1fr 1fr; }
}
.db-contact-name {
  font-family: var(--font-futura);
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
}
.db-contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.db-contact-info-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-cloud);
  font-size: 1.1rem;
}
.db-contact-map {
  width: 100%;
  height: 480px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  border: 8px solid rgba(255,255,255,0.5);
}
.db-contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.db-faq-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: 1rem;
}
.db-faq-sub {
  text-align: center;
  font-family: var(--font-cloud);
  font-size: 1.15rem;
  color: rgba(72,56,76,0.7);
  margin-bottom: 5rem;
}
.db-faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.db-faq-item {
  border: 1px solid rgba(214,224,148,0.5);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s;
}
.db-faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.db-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}
.db-faq-question {
  font-family: var(--font-futura);
  font-size: 1.1rem;
  color: var(--brand-purple);
}
.db-faq-arrow {
  flex-shrink: 0;
  color: var(--brand-green);
  transition: transform 0.3s ease;
}
.db-faq-item.open .db-faq-arrow { transform: rotate(180deg); }
.db-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.db-faq-item.open .db-faq-body {
  max-height: 500px;
  opacity: 1;
}
.db-faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-cloud);
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(72,56,76,0.8);
}

/* ============================================================
   FOOTER
   ============================================================ */
#db-footer {
  background: #3A2D3D;
  padding: 4rem 0;
  font-family: var(--font-cloud);
}
.db-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .db-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.db-footer-brand h3 {
  font-family: var(--font-futura);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.db-footer-brand p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.db-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  font-family: var(--font-futura);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.db-footer-nav a { color: rgba(255,255,255,0.7); transition: color 0.25s; }
.db-footer-nav a:hover { color: var(--brand-green); }
.db-footer-social {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.db-footer-social a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.25s, color 0.25s;
}
.db-footer-social a:hover {
  background: var(--brand-green);
  color: var(--brand-purple);
}
.db-footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   ICONS (inline SVG helpers via CSS)
   ============================================================ */
.db-icon { display: inline-flex; align-items: center; justify-content: center; }

/* ============================================================
   WPBakery overrides — Full-width page
   ============================================================ */
.db-page-wrap .vc_row { margin-left: 0 !important; margin-right: 0 !important; }
.db-page-wrap .wpb_wrapper { padding: 0 !important; }
.db-page-wrap .vc_column-inner { padding: 0 !important; }

/* Remove default WP content padding on landing page */
.db-landing-page #content,
.db-landing-page .site-content,
.db-landing-page main {
  padding: 0 !important;
  margin: 0 !important;
}

/* ============================================================
   UTILITY
   ============================================================ */
.db-text-white  { color: #fff; }
.db-text-purple { color: var(--brand-purple); }
.db-text-center { text-align: center; }
.db-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.db-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   BLOG — Layout & Estilos globais
   ============================================================ */

/* Reading progress bar */
#db-reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-purple) 100%);
  z-index: 99999;
  transition: width .1s linear;
  pointer-events: none;
}

/* Header: scoped to blog pages (solid background) */
.db-blog-page #db-header {
  background: var(--brand-purple) !important;
  padding: 1rem 0 !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.22);
}

/* Blog hero (mini-banner de topo) */
.db-blog-hero {
  background: var(--brand-purple);
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.db-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(72,56,76,0.95) 0%, rgba(58,45,61,0.98) 100%);
}
.db-blog-hero .db-container { position: relative; z-index: 1; }
.db-blog-hero__title {
  font-family: var(--font-futura);
  font-size: clamp(2rem,5vw,3.2rem);
  color: #fff;
  margin-bottom: .75rem;
}
.db-blog-hero__sub {
  font-family: var(--font-cloud);
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
}

/* Breadcrumb */
.db-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  font-family: var(--font-cloud);
  font-size: .85rem;
  color: rgba(72,56,76,.6);
  margin-bottom: 1rem;
}
.db-breadcrumb a { color: var(--brand-purple); text-decoration: none; transition: color .2s; }
.db-breadcrumb a:hover { color: var(--brand-green); }
.db-breadcrumb--light,
.db-breadcrumb--light a { color: rgba(255,255,255,.6); }
.db-breadcrumb--light a:hover { color: var(--brand-green); }

/* Layout blog + sidebar */
.db-blog-main { padding: 3rem 0 5rem; }
.db-blog-layout { display: grid; gap: 3rem; }
.db-blog-layout--sidebar-right { grid-template-columns: 1fr 300px; }
.db-blog-layout--sidebar-left  { grid-template-columns: 300px 1fr; }
@media (max-width: 900px) {
  .db-blog-layout--sidebar-right,
  .db-blog-layout--sidebar-left { grid-template-columns: 1fr; }
}

/* Posts grid */
.db-posts-grid--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.db-posts-grid--list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Post card */
.db-post-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(72,56,76,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.db-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(72,56,76,.16);
}
.db-post-card--list { flex-direction: row; }

/* Thumbnail */
.db-post-card__thumb {
  display: block;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.db-post-card--list .db-post-card__thumb { width: 280px; aspect-ratio: auto; }
.db-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.db-post-card:hover .db-post-card__thumb img { transform: scale(1.06); }

/* Gradient overlay on image for readability */
.db-post-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(72,56,76,.55) 0%, transparent 55%);
  pointer-events: none;
}

/* No-thumb fallback */
.db-post-card__no-thumb {
  background: linear-gradient(135deg, var(--brand-purple) 60%, rgba(72,56,76,.7));
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: .75rem;
  flex-shrink: 0;
}

/* Category badge — always inside thumb/no-thumb at bottom-left */
.db-post-card__cat {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: var(--brand-green);
  color: var(--brand-purple);
  font-family: var(--font-futura);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 999px;
  z-index: 2;
  line-height: 1.6;
}

/* Card body */
.db-post-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.db-post-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
  font-family: var(--font-cloud);
  font-size: .78rem;
  color: rgba(72,56,76,.5);
  margin-bottom: .65rem;
}
.db-post-card__sep { opacity: .35; }
.db-post-card__author-link { color: inherit; text-decoration: none; transition: opacity .2s; }
.db-post-card__author-link:hover { opacity: .65; }
.db-post-card__title {
  font-family: var(--font-futura);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: .65rem;
}
.db-post-card__title a { color: var(--brand-purple); text-decoration: none; transition: color .2s; }
.db-post-card__title a:hover { opacity: .75; }
.db-post-card__excerpt {
  font-family: var(--font-cloud);
  font-size: .93rem;
  line-height: 1.75;
  color: rgba(72,56,76,.68);
  flex: 1;
  margin-bottom: 1.25rem;
}
.db-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-futura);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-purple);
  text-decoration: none;
  transition: gap .25s ease;
  margin-top: auto;
}
.db-post-card__link:hover { gap: .65rem; }

/* Paginação */
.db-pagination { margin-top: 3rem; }
.db-pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.db-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  font-family: var(--font-futura); font-size: .9rem;
  color: var(--brand-purple); background: #fff;
  border: 2px solid rgba(72,56,76,.15);
  text-decoration: none; transition: all .2s;
}
.db-pagination .page-numbers.current,
.db-pagination .page-numbers:hover {
  background: var(--brand-purple);
  color: var(--brand-green);
  border-color: var(--brand-purple);
}
.db-pagination .page-numbers.dots { background: none; border: none; }
.db-pagination .prev.page-numbers,
.db-pagination .next.page-numbers { width: auto; padding: 0 1rem; border-radius: 999px; }

/* Blog empty */
.db-blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  font-family: var(--font-cloud);
  font-size: 1.1rem;
  color: rgba(72,56,76,.6);
}
.db-blog-empty .db-btn { margin-top: 1.5rem; }

/* Search bar */
.db-search-bar { margin: 0 0 2.5rem; }
.db-search-bar .search-form { display: flex; gap: .5rem; }
.db-search-bar input[type="search"] {
  flex: 1;
  padding: .75rem 1.25rem;
  border: 2px solid rgba(72,56,76,.2);
  border-radius: 999px;
  font-family: var(--font-cloud);
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.db-search-bar input[type="search"]:focus { border-color: var(--brand-purple); }
.db-search-bar button { padding: .75rem 1.5rem; border-radius: 999px; background: var(--brand-purple); color: var(--brand-green); border: none; cursor: pointer; font-family: var(--font-futura); font-size: .85rem; letter-spacing: .1em; }

/* ============================================================
   SINGLE POST
   ============================================================ */

/* Hero */
.db-single-hero {
  background: var(--brand-purple);
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.db-single-hero--has-img { min-height: 560px; }
.db-single-hero__bg { position: absolute; inset: 0; }
.db-single-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.db-single-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(35,25,38,.97) 0%,
    rgba(58,45,61,.82) 40%,
    rgba(72,56,76,.45) 70%,
    rgba(72,56,76,.1) 100%);
}
/* Subtle decorative dots pattern */
.db-single-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(214,224,148,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.db-single-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.db-single-hero__cats {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.db-single-hero__title {
  font-family: var(--font-futura);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.db-single-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  font-family: var(--font-cloud);
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.db-single-hero__author {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: opacity .2s;
}
.db-single-hero__author:hover { opacity: .75; }
.db-author-avatar {
  border-radius: 50%;
  width: 36px; height: 36px;
  object-fit: cover;
  border: 2px solid rgba(214,224,148,.5);
}

/* Content card rises over hero */
.db-single-main {
  background: #f8f7f5;
  position: relative;
  z-index: 2;
}
.db-single-card {
  background: #fff;
  border-radius: 2rem 2rem 0 0;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  box-shadow: 0 -4px 40px rgba(72,56,76,.1);
}
.db-single-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* Floating share bar (desktop) */
.db-share-float-col {
  position: absolute;
  left: -4rem;
  top: 0;
  width: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.db-share-float {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.db-share-float__label {
  font-family: var(--font-futura);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(72,56,76,.4);
  writing-mode: vertical-rl;
  margin-bottom: .25rem;
}
.db-share-float__btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.db-share-float__btn:hover { transform: scale(1.12); box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.db-share-float__btn--wa  { background: #25D366; color: #fff; }
.db-share-float__btn--ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.db-share-float__divider { width: 1px; height: 2rem; background: rgba(72,56,76,.12); }
@media (max-width: 1140px) { .db-share-float-col { display: none; } }

/* Inline share (mobile fallback) */
.db-share-inline {
  display: none;
  align-items: center;
  gap: .75rem;
  margin: 2.5rem 0;
  font-family: var(--font-cloud);
  font-size: .85rem;
  color: rgba(72,56,76,.5);
}
.db-share-inline .db-share-float__btn { width: 2.25rem; height: 2.25rem; }
@media (max-width: 1140px) { .db-share-inline { display: flex; } }

/* Tags */
.db-tag {
  display: inline-block;
  background: rgba(72,56,76,.07);
  color: var(--brand-purple);
  border-radius: 999px;
  padding: .25rem .85rem;
  font-family: var(--font-futura);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.db-tag:hover { background: var(--brand-purple); color: var(--brand-green); }
.db-tag--green { background: var(--brand-green); color: var(--brand-purple); }

/* Post tags block */
.db-post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2.5rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(72,56,76,.08);
  font-family: var(--font-cloud);
  font-size: .85rem;
  color: rgba(72,56,76,.45);
}

/* Author bio */
.db-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 2.5rem 0;
  border: 1.5px solid rgba(72,56,76,.09);
  box-shadow: 0 2px 16px rgba(72,56,76,.06);
  position: relative;
  overflow: hidden;
}
.db-author-bio::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brand-green);
  border-radius: 4px 0 0 4px;
}
.db-author-bio__avatar {
  border-radius: 50%;
  width: 88px; height: 88px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--brand-green);
}
.db-author-bio__inner { flex: 1; }
.db-author-bio__badge {
  display: inline-block;
  background: rgba(214,224,148,.35);
  color: var(--brand-purple);
  font-family: var(--font-futura);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.db-author-bio__avatar-link { display: block; flex-shrink: 0; line-height: 0; }
.db-author-bio__avatar-link:hover .db-author-bio__avatar { box-shadow: 0 0 0 3px var(--brand-purple); }
.db-author-bio__name-link { text-decoration: none; }
.db-author-bio__name-link:hover .db-author-bio__name { opacity: .75; }
.db-author-bio__name {
  display: block;
  font-family: var(--font-futura);
  font-size: 1.1rem;
  color: var(--brand-purple);
  margin-bottom: .4rem;
  transition: opacity .2s;
}
.db-author-bio__desc {
  font-family: var(--font-cloud);
  font-size: .95rem;
  color: rgba(72,56,76,.75);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 560px) {
  .db-author-bio { flex-direction: column; align-items: center; text-align: center; }
  .db-author-bio::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 4px; border-radius: 4px 4px 0 0; }
}

/* Post navigation */
.db-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 3rem 0;
}
.db-post-nav__item {
  background: #fafafa;
  border: 1.5px solid rgba(72,56,76,.09);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.db-post-nav__item:hover {
  border-color: var(--brand-purple);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(72,56,76,.1);
}
.db-post-nav__item--next { text-align: right; }
.db-post-nav__dir {
  font-family: var(--font-futura);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: .3rem;
  background: rgba(214,224,148,.3);
  border-radius: 999px;
  padding: .2rem .7rem;
  width: fit-content;
}
.db-post-nav__item--next .db-post-nav__dir { margin-left: auto; }
.db-post-nav__title {
  font-family: var(--font-futura);
  font-size: .95rem;
  color: var(--brand-purple);
  line-height: 1.3;
}
@media (max-width: 600px) { .db-post-nav { grid-template-columns: 1fr; } }

/* Prose (post content typography) */
.db-prose {
  font-family: var(--font-cloud);
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(72,56,76,.88);
  margin-bottom: 2rem;
}
.db-prose h2,
.db-prose h3,
.db-prose h4 {
  font-family: var(--font-futura);
  color: var(--brand-purple);
  margin: 2.25rem 0 .85rem;
  line-height: 1.25;
}
.db-prose h2 { font-size: 1.7rem; padding-bottom: .5rem; border-bottom: 2px solid rgba(214,224,148,.5); }
.db-prose h3 { font-size: 1.35rem; }
.db-prose h4 { font-size: 1.1rem; }
.db-prose p { margin-bottom: 1.35rem; }
.db-prose ul, .db-prose ol { padding-left: 1.6rem; margin-bottom: 1.35rem; }
.db-prose li { margin-bottom: .5rem; }
.db-prose ul li::marker { color: var(--brand-green); }
.db-prose blockquote {
  border-left: 4px solid var(--brand-green);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(214,224,148,.12);
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  color: rgba(72,56,76,.72);
  font-size: 1.08rem;
}
.db-prose blockquote p:last-child { margin-bottom: 0; }
.db-prose img {
  border-radius: 1rem;
  margin: 1.75rem 0;
  max-width: 100%;
  box-shadow: 0 4px 24px rgba(72,56,76,.1);
}
.db-prose a { color: var(--brand-purple); text-decoration: underline; text-underline-offset: 3px; }
.db-prose a:hover { opacity: .7; }
.db-prose strong { color: var(--brand-purple); font-weight: 700; }
.db-prose hr { border: none; border-top: 2px solid rgba(214,224,148,.5); margin: 2.5rem 0; }

/* ============================================================
   COMMENTS
   ============================================================ */
.db-comments { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid rgba(72,56,76,.1); }
.db-comments__title { font-family: var(--font-futura); font-size: 1.4rem; color: var(--brand-purple); margin-bottom: 2rem; }
.db-comment-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.db-comment { background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(72,56,76,.08); }
.db-comment__author { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.db-comment__avatar { border-radius: 50%; width: 44px; height: 44px; }
.db-comment__name { font-family: var(--font-futura); font-size: .95rem; color: var(--brand-purple); display: block; }
.db-comment__date { font-family: var(--font-cloud); font-size: .8rem; color: rgba(72,56,76,.5); }
.db-comment__text { font-family: var(--font-cloud); font-size: .98rem; line-height: 1.7; color: rgba(72,56,76,.85); }
.db-comment__reply a { font-family: var(--font-futura); font-size: .8rem; color: var(--brand-purple); text-decoration: none; letter-spacing: .08em; opacity: .6; transition: opacity .2s; }
.db-comment__reply a:hover { opacity: 1; }
.db-comment__pending { background: rgba(214,224,148,.3); border-radius: .5rem; padding: .5rem .75rem; font-size: .85rem; margin-bottom: .75rem; }
.db-comment-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.db-comment-nav a { color: var(--brand-purple); text-decoration: none; font-family: var(--font-futura); font-size: .85rem; }
.db-comments-closed { color: rgba(72,56,76,.5); font-style: italic; font-family: var(--font-cloud); }

/* Comment form */
.db-comment-form p { margin-bottom: 1rem; }
.db-comment-form label { display: block; font-family: var(--font-futura); font-size: .85rem; letter-spacing: .08em; color: var(--brand-purple); margin-bottom: .35rem; }
.db-comment-form input[type="text"],
.db-comment-form input[type="email"],
.db-comment-form input[type="url"],
.db-comment-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid rgba(72,56,76,.15);
  border-radius: .75rem;
  font-family: var(--font-cloud);
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  background: #fafafa;
}
.db-comment-form input:focus,
.db-comment-form textarea:focus { border-color: var(--brand-purple); background: #fff; }
.db-comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form-comment h2 { font-family: var(--font-futura); font-size: 1.3rem; color: var(--brand-purple); margin: 2rem 0 1rem; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.db-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.db-sidebar .widget {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(72,56,76,.08);
}
.db-sidebar .widget-title {
  font-family: var(--font-futura);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--brand-green);
}
.db-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.db-sidebar ul a { color: var(--brand-purple); text-decoration: none; font-family: var(--font-cloud); font-size: .95rem; transition: opacity .2s; }
.db-sidebar ul a:hover { opacity: .7; }

/* ============================================================
   404
   ============================================================ */
.db-404 {
  text-align: center;
  padding: 6rem 1rem;
  max-width: 560px;
  margin-inline: auto;
}
.db-404__number {
  font-family: var(--font-futura);
  font-size: clamp(6rem,18vw,10rem);
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 0 var(--brand-purple);
}
.db-404__title { font-family: var(--font-futura); font-size: 2rem; color: var(--brand-purple); margin-bottom: 1rem; }
.db-404__desc { font-family: var(--font-cloud); font-size: 1.1rem; color: rgba(72,56,76,.7); margin-bottom: 2rem; line-height: 1.7; }
.db-404 .search-form { margin-top: 2rem; display:flex; gap:.5rem; justify-content:center; }
.db-404 .search-field { padding:.75rem 1.25rem; border:2px solid rgba(72,56,76,.2); border-radius:999px; font-size:1rem; outline:none; }
.db-404 .search-submit { padding:.75rem 1.5rem; border-radius:999px; background:var(--brand-purple); color:var(--brand-green); border:none; cursor:pointer; }

/* ============================================================
   WhatsApp float button
   ============================================================ */
/* ── WhatsApp float ── */
@keyframes db-wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0);  }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

.db-whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: .7rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s ease, box-shadow .25s, padding .25s;
  animation: db-wa-pulse 2.4s ease-out infinite;
}
.db-whatsapp-float__icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.db-whatsapp-float__label {
  font-size: .85rem; font-weight: 600;
  white-space: nowrap; overflow: hidden;
  max-width: 0; opacity: 0;
  transition: max-width .35s ease, opacity .3s ease, margin .3s;
}
.db-whatsapp-float:hover .db-whatsapp-float__label {
  max-width: 180px; opacity: 1;
}
.db-whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  padding: .7rem 1rem .7rem .8rem;
}

/* Posições */
.db-whatsapp-float--right  { right: 1.75rem; }
.db-whatsapp-float--left   { left: 1.75rem; }
.db-whatsapp-float--center { left: 50%; transform: translateX(-50%); }
.db-whatsapp-float--center:hover { transform: translateX(-50%) scale(1.06); }

/* ============================================================
   PÁGINA DA AUTORA
   ============================================================ */
.db-author-page-hero {
  background: var(--brand-purple);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.db-author-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(214,224,148,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.db-author-page-profile {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}
.db-author-page-avatar-wrap {
  flex-shrink: 0;
}
.db-author-page-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--brand-green);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  display: block;
}
.db-author-page-info { flex: 1; }
.db-author-page-badge {
  display: inline-block;
  background: rgba(214,224,148,.2);
  color: var(--brand-green);
  font-family: var(--font-futura);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(214,224,148,.3);
  margin-bottom: .75rem;
}
.db-author-page-name {
  font-family: var(--font-futura);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.db-author-page-bio {
  font-family: var(--font-cloud);
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 1.25rem;
}
.db-author-page-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.db-author-page-count {
  font-family: var(--font-futura);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-green);
  background: rgba(214,224,148,.12);
  padding: .3rem .9rem;
  border-radius: 999px;
}
.db-author-page-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-cloud);
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.db-author-page-link:hover { color: var(--brand-green); }
.db-author-posts-title {
  font-family: var(--font-futura);
  font-size: 1.4rem;
  color: var(--brand-purple);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(214,224,148,.5);
}
@media (max-width: 640px) {
  .db-author-page-profile { flex-direction: column; align-items: center; text-align: center; }
  .db-author-page-meta { justify-content: center; }
  .db-author-page-bio { max-width: 100%; }
}

/* ============================================================
   Image sizes helper classes
   ============================================================ */
.db-post-thumb img { width:100%; height:220px; object-fit:cover; }
.db-post-list img  { width:280px; height:100%; object-fit:cover; }
.db-single-hero-img img { width:100%; height:480px; object-fit:cover; }
