/*
Theme Name: DP de Valor
Theme URI: https://dpdevalor.com.br
Author: DP de Valor
Author URI: https://dpdevalor.com.br
Description: Tema profissional para o portal DP de Valor — Departamento Pessoal. Inclui blog, área de membros, integração Hotmart, AdSense e newsletter.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Privado
Text Domain: dpdevalor
Tags: blog, membership, professional, dark
*/

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dpv-cyan:    #00c2cb;
  --dpv-cyan-dk: #009aa3;
  --dpv-dark:    #1F1F1F;
  --dpv-dark2:   #161616;
  --dpv-gray:    #6B7280;
  --dpv-light:   #E5E7EB;
  --dpv-lighter: #F3F4F6;
  --dpv-gold:    #d6b36a;
  --dpv-gold-dk: #a07820;
  --dpv-white:   #ffffff;
  --dpv-bg:      #F8F9FA;
  --dpv-radius:  8px;
  --dpv-radius-lg: 12px;
  --dpv-shadow:  0 2px 12px rgba(0,0,0,0.08);
  --dpv-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --container:   1140px;
  --font-main:   'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading:'Sora', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dpv-dark);
  background: var(--dpv-bg);
  -webkit-font-smoothing: antialiased;
}

body.dark-mode {
  --dpv-bg: #111111;
  --dpv-white: #1a1a1a;
  --dpv-dark: #f0f0f0;
  --dpv-light: #333333;
  --dpv-lighter: #222222;
  --dpv-gray: #9ca3af;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dpv-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--dpv-cyan-dk); }
ul { list-style: none; }

/* =============================================
   TIPOGRAFIA
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dpv-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.entry-content h2 { margin: 2rem 0 1rem; }
.entry-content h3 { margin: 1.5rem 0 0.75rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4rem; }
.entry-content blockquote {
  border-left: 4px solid var(--dpv-cyan);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(0,194,203,0.05);
  border-radius: 0 var(--dpv-radius) var(--dpv-radius) 0;
  font-style: italic;
  color: var(--dpv-gray);
}

/* =============================================
   LAYOUT / CONTAINER
============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* =============================================
   BOTÕES
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--dpv-radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--dpv-cyan);
  color: var(--dpv-dark);
}
.btn-primary:hover {
  background: var(--dpv-cyan-dk);
  color: var(--dpv-dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dpv-dark);
  color: var(--dpv-white);
}
.btn-dark:hover {
  background: var(--dpv-dark2);
  color: var(--dpv-white);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--dpv-white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--dpv-white);
  color: var(--dpv-white);
  background: rgba(255,255,255,0.1);
}

.btn-gold {
  background: var(--dpv-gold);
  color: var(--dpv-dark);
}
.btn-gold:hover {
  background: #c4a256;
  color: var(--dpv-dark);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   BADGES / TAGS
============================================= */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-cyan {
  background: rgba(0,194,203,0.12);
  color: var(--dpv-cyan-dk);
  border: 1px solid rgba(0,194,203,0.25);
}

.badge-gold {
  background: rgba(214,179,106,0.15);
  color: var(--dpv-gold-dk);
  border: 1px solid rgba(214,179,106,0.3);
}

.badge-dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}

.badge-gray {
  background: var(--dpv-lighter);
  color: var(--dpv-gray);
}

/* =============================================
   CABEÇALHO / NAVBAR
============================================= */
#site-header {
  background: var(--dpv-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  width: 22px;
}

.logo-icon span {
  display: block;
  height: 3px;
  background: var(--dpv-cyan);
  border-radius: 2px;
  transition: width 0.3s;
}
.logo-icon span:nth-child(1) { width: 22px; }
.logo-icon span:nth-child(2) { width: 16px; }
.logo-icon span:nth-child(3) { width: 11px; }

.site-logo:hover .logo-icon span:nth-child(2) { width: 22px; }
.site-logo:hover .logo-icon span:nth-child(3) { width: 16px; }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dpv-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

#primary-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

#primary-menu a {
  color: #9ca3af;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
#primary-menu a:hover,
#primary-menu .current-menu-item a { color: var(--dpv-white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-darkmode {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1rem;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.btn-darkmode:hover { color: var(--dpv-white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--dpv-white);
  cursor: pointer;
  font-size: 1.4rem;
  padding: 4px;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--dpv-dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,194,203,0.06);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(214,179,106,0.04);
  pointer-events: none;
}

.hero-content { max-width: 640px; position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0,194,203,0.12);
  border: 1px solid rgba(0,194,203,0.25);
  border-radius: 20px;
  color: var(--dpv-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--dpv-white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero h1 span { color: var(--dpv-cyan); }

.hero-desc {
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dpv-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}

/* =============================================
   SECTION HEADER
============================================= */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header.centered { text-align: center; }

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

.section-header p {
  color: var(--dpv-gray);
  font-size: 1rem;
  margin: 0;
}

.section-header h2 span { color: var(--dpv-cyan); }

/* =============================================
   POST CARDS
============================================= */
.post-card {
  background: var(--dpv-white);
  border: 1px solid var(--dpv-light);
  border-radius: var(--dpv-radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dpv-shadow-lg);
}

.post-card.premium { border-left: 4px solid var(--dpv-gold); }

.post-card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--dpv-lighter);
}

.post-card-body { padding: 1.25rem; }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.post-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dpv-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-card-date { font-size: 0.78rem; color: var(--dpv-gray); }

.post-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.post-card h3 a { color: var(--dpv-dark); }
.post-card h3 a:hover { color: var(--dpv-cyan); }

.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--dpv-gray);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--dpv-gray);
  border-top: 1px solid var(--dpv-lighter);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.read-more {
  color: var(--dpv-cyan);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover { gap: 7px; }

/* =============================================
   CATEGORIAS
============================================= */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--dpv-white);
  border: 1.5px solid var(--dpv-light);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dpv-gray);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.cat-pill:hover,
.cat-pill.active {
  border-color: var(--dpv-cyan);
  color: var(--dpv-cyan);
  background: rgba(0,194,203,0.05);
}

/* =============================================
   NEWSLETTER
============================================= */
.newsletter-section {
  background: var(--dpv-dark);
  border-radius: var(--dpv-radius-lg);
  padding: 3rem;
  text-align: center;
}

.newsletter-section h2 { color: var(--dpv-white); margin-bottom: 0.75rem; }
.newsletter-section p { color: #6b7280; margin-bottom: 1.75rem; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--dpv-radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--dpv-white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input[type="email"]::placeholder { color: #6b7280; }
.newsletter-form input[type="email"]:focus { border-color: var(--dpv-cyan); }

/* =============================================
   ADSENESE SLOTS
============================================= */
.adsense-slot {
  background: var(--dpv-lighter);
  border: 1.5px dashed #d1d5db;
  border-radius: var(--dpv-radius);
  padding: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adsense-slot-wide { min-height: 90px; margin: 1.5rem 0; }
.adsense-slot-square { min-height: 250px; min-width: 300px; }

/* =============================================
   CTA BANNER (produto)
============================================= */
.cta-banner {
  background: rgba(0,194,203,0.05);
  border: 1px solid rgba(0,194,203,0.2);
  border-top: 3px solid var(--dpv-cyan);
  border-radius: var(--dpv-radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner h2 span { color: var(--dpv-cyan); }
.cta-banner p { color: var(--dpv-gray); margin-bottom: 1.5rem; }

/* =============================================
   BLOG LAYOUT
============================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.blog-sidebar { position: sticky; top: 88px; }

.sidebar-widget {
  background: var(--dpv-white);
  border: 1px solid var(--dpv-light);
  border-radius: var(--dpv-radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dpv-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--dpv-cyan);
}

.sidebar-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--dpv-lighter);
  font-size: 0.88rem;
  color: var(--dpv-gray);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.sidebar-cat-item:hover { color: var(--dpv-cyan); }
.sidebar-cat-count {
  font-size: 0.75rem;
  background: var(--dpv-lighter);
  padding: 2px 7px;
  border-radius: 10px;
}

/* =============================================
   SEARCH BAR
============================================= */
.search-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 2px solid var(--dpv-light);
  border-radius: var(--dpv-radius);
  font-size: 0.95rem;
  background: var(--dpv-white);
  color: var(--dpv-dark);
  outline: none;
  transition: border-color 0.2s;
}

.search-wrap input:focus { border-color: var(--dpv-cyan); }

.search-wrap .search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dpv-gray);
  pointer-events: none;
}

/* =============================================
   ARTIGO / POST SINGLE
============================================= */
.article-header { margin-bottom: 2rem; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--dpv-gray);
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--dpv-cyan);
  z-index: 9999;
  transition: width 0.1s;
}

.entry-content { font-size: 1.05rem; line-height: 1.85; }

.premium-gate {
  background: var(--dpv-dark);
  border-radius: var(--dpv-radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
}

.premium-gate::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--dpv-bg));
  pointer-events: none;
}

.premium-gate h3 { color: var(--dpv-white); margin-bottom: 0.75rem; }
.premium-gate p { color: #9ca3af; margin-bottom: 1.5rem; }

/* =============================================
   ÁREA DE MEMBROS
============================================= */
.members-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

.members-sidebar {
  background: #0d1117;
  border-radius: var(--dpv-radius-lg);
  padding: 1.25rem;
  position: sticky;
  top: 88px;
}

.members-nav-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 0 8px;
}

.members-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--dpv-radius);
  font-size: 0.88rem;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 3px;
}

.members-nav-item:hover { background: rgba(255,255,255,0.06); color: #e5e7eb; }
.members-nav-item.active {
  background: rgba(0,194,203,0.12);
  color: var(--dpv-cyan);
  border-left: 3px solid var(--dpv-cyan);
  padding-left: 9px;
}

.members-nav-item .icon { font-size: 1rem; width: 18px; text-align: center; }

.members-header {
  background: #0d1117;
  padding: 2rem;
  border-radius: var(--dpv-radius-lg);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member-greeting h2 { color: var(--dpv-white); margin-bottom: 4px; }
.member-greeting p { color: #6b7280; font-size: 0.88rem; margin: 0; }

.content-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--dpv-radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.content-item:hover { border-color: var(--dpv-cyan); transform: translateX(3px); }

.content-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--dpv-radius);
  background: rgba(0,194,203,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.content-item-info { flex: 1; }
.content-item-title { font-size: 0.95rem; font-weight: 600; color: var(--dpv-white); margin-bottom: 3px; }
.content-item-meta { font-size: 0.78rem; color: var(--dpv-gray); }

/* =============================================
   PRICING
============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--dpv-radius-lg);
  padding: 2rem;
}

.pricing-card.featured {
  background: rgba(0,194,203,0.08);
  border-color: var(--dpv-cyan);
  position: relative;
}

.plan-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #6b7280; margin-bottom: 1rem; }
.plan-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--dpv-white); margin-bottom: 0.25rem; }
.plan-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.plan-price sub { font-size: 1rem; font-weight: 400; color: #6b7280; }
.plan-period { font-size: 0.82rem; color: #6b7280; margin-bottom: 1.5rem; }

.plan-features { margin: 1.5rem 0; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: #9ca3af;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-feature.yes { color: #e5e7eb; }
.plan-feature-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.plan-feature.yes .plan-feature-icon { color: var(--dpv-cyan); }
.plan-feature:not(.yes) .plan-feature-icon { color: #4b5563; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-card {
  background: var(--dpv-white);
  border: 1px solid var(--dpv-light);
  border-radius: var(--dpv-radius-lg);
  padding: 1.5rem;
}

.testimonial-stars { color: var(--dpv-gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.93rem; color: var(--dpv-gray); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,194,203,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dpv-cyan);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--dpv-dark); }
.testimonial-role { font-size: 0.78rem; color: var(--dpv-gray); }

/* =============================================
   FAQ
============================================= */
.faq-item {
  border-bottom: 1px solid var(--dpv-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--dpv-white);
  font-size: 0.95rem;
  gap: 1rem;
}

.faq-question .faq-icon { font-size: 1.1rem; color: var(--dpv-cyan); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 1.25rem;
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   RODAPÉ
============================================= */
#site-footer {
  background: var(--dpv-dark);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p { color: #6b7280; font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dpv-cyan);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: #6b7280;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--dpv-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #4b5563;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #6b7280;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--dpv-cyan); }

/* =============================================
   FORMULÁRIO DE CONTATO
============================================= */
.contact-form-wrap { background: var(--dpv-white); border: 1px solid var(--dpv-light); border-radius: var(--dpv-radius-lg); padding: 2rem; }

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

.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dpv-gray); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--dpv-light);
  border-radius: var(--dpv-radius);
  font-size: 0.95rem;
  color: var(--dpv-dark);
  background: var(--dpv-bg);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-main);
}

.form-control:focus { border-color: var(--dpv-cyan); background: var(--dpv-white); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* =============================================
   RESPONSIVIDADE
============================================= */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .members-layout { grid-template-columns: 1fr; }
  .members-sidebar { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #primary-menu { display: none; }
  #primary-menu.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dpv-dark); padding: 1rem 1.5rem; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); z-index: 999; }
  #primary-menu.open a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hamburger { display: flex; }
  .hero { padding: 3rem 0; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .newsletter-form { flex-direction: column; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 2.5rem 0; }
  .newsletter-section { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .pricing-grid { max-width: 100%; }
}

/* =============================================
   UTILITÁRIOS
============================================= */
.text-center { text-align: center; }
.text-cyan { color: var(--dpv-cyan); }
.text-gold { color: var(--dpv-gold); }
.text-muted { color: var(--dpv-gray); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Barra de progresso leitura */
#reading-progress { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: var(--dpv-cyan); z-index: 9999; transition: width 0.1s linear; }

/* Modo escuro toggle */
.dark-mode-toggle { cursor: pointer; }
