/*
Theme Name: MQS Advocacia
Theme URI: https://advocaciamqs.com.br
Author: Fervo Digital / INN Lofer
Author URI: https://fervodigital.com.br
Description: Tema profissional para Advocacia MQS — Escritório imobiliário de Vila Velha, ES. Otimizado para SEO, autoridade e geração de leads.
Version: 4.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: mqs-advocacia
Tags: law, legal, blog, seo, responsive
*/

/* ============================================================
   VARIAVEIS E RESET
   ============================================================ */
:root {
  --wine:      #8B1A1A;
  --wine-dark: #5C0F0F;
  --wine-mid:  #6B1414;
  --wine-lite: #F5E6E6;
  --wine-xlt:  #FDF0F0;
  --gold:      #B8860B;
  --gold-lite: #FDF6E3;
  --dark:      #1A1A1A;
  --gray:      #444444;
  --gray2:     #777777;
  --gray3:     #AAAAAA;
  --lg:        #F7F6F4;
  --white:     #FFFFFF;
  --border:    #E8E4E0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, sans-serif;
  --font-mono:  'DM Mono', monospace;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(139,26,26,0.08);
  --shadow-lg: 0 8px 40px rgba(139,26,26,0.14);

  --max: 1200px;
  --section: 96px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }

p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section) 0; }
.section--gray { background: var(--lg); }
.section--wine { background: var(--wine); }
.section--wine-lite { background: var(--wine-xlt); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BOTOES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--wine);
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(139,26,26,0.25);
  border: 2px solid var(--wine);
}
.btn-primary:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,26,26,0.35);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,134,11,0.3);
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--wine);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--wine-lite);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--wine-lite);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-label--white {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 620px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-badge {
  width: 40px;
  height: 40px;
  background: var(--wine);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.03em;
}

.nav-logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray2);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: width 0.2s;
}

.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 64px;
  background: var(--wine-xlt);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(139,26,26,0.04) 100%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--wine) 0,
    var(--wine) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--wine);
}

.hero h1 {
  color: var(--dark);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--wine);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 1rem;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--gray2);
  line-height: 1.3;
}

.hero-trust-text strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--wine-lite);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  font-size: 1.5rem;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: var(--gray2);
  line-height: 1.3;
}

.hero-badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--wine);
  font-family: var(--font-serif);
}

/* ============================================================
   BANNER PROVA SOCIAL
   ============================================================ */
.trust-bar {
  background: var(--wine);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}

.trust-bar-item strong {
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

.trust-bar-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   SERVICOS
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--wine-lite);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-serif);
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray2);
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   METODO PROTEGE
   ============================================================ */
.protege-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.protege-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.protege-step:last-child { border-bottom: none; }

.protege-letter {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.protege-step-text h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 1rem;
}

.protege-step-text p {
  font-size: 0.9rem;
  color: var(--gray2);
  margin: 0;
}

.protege-visual {
  background: var(--wine-xlt);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.protege-visual h3 {
  font-size: 3rem;
  color: var(--wine);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.protege-visual p {
  font-size: 0.9rem;
  color: var(--gray2);
  max-width: 240px;
  margin: 0 auto 32px;
}

/* ============================================================
   ADVOGADAS
   ============================================================ */
.advogada-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.advogada-card:hover { box-shadow: var(--shadow-lg); }

.advogada-photo {
  aspect-ratio: 4/5;
  background: var(--wine-lite);
  overflow: hidden;
  position: relative;
}

.advogada-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.advogada-card:hover .advogada-photo img { transform: scale(1.04); }

.advogada-info {
  padding: 28px;
}

.advogada-oab {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 6px;
}

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

.advogada-area {
  font-size: 0.85rem;
  color: var(--gray2);
  margin-bottom: 16px;
}

.advogada-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.advogada-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--wine-lite);
  color: var(--wine);
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferencial-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

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

.diferencial-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wine-lite);
  line-height: 1;
  min-width: 40px;
}

.diferencial-item:hover .diferencial-num { color: var(--wine); }

.diferencial-text h4 { color: var(--dark); margin-bottom: 4px; }
.diferencial-text p { font-size: 0.9rem; color: var(--gray2); margin: 0; }

/* ============================================================
   NUMEROS / STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  background: rgba(255,255,255,0.05);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ============================================================
   REGISTRATEC
   ============================================================ */
.registratec-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.registratec-block::before {
  content: 'REGISTRATEC';
  position: absolute;
  right: -40px;
  bottom: -30px;
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
}

.registratec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.2);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.registratec-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.registratec-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.depoimento-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depoimento-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--wine);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.depoimento-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.depoimento-context {
  font-size: 0.78rem;
  color: var(--gray2);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--wine);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0,
    rgba(255,255,255,0.02) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 24px 24px;
}

.cta-section .container { position: relative; z-index: 1; text-align: center; }

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

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}

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

.blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--wine-lite);
  overflow: hidden;
}

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

.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }

.blog-card-body { padding: 24px; }

.blog-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--wine); }

.blog-card p {
  font-size: 0.875rem;
  color: var(--gray2);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray2);
}

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

/* ============================================================
   CONTATO / FORM
   ============================================================ */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-info h2 { margin-bottom: 16px; }

.form-info p {
  margin-bottom: 32px;
}

.form-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.form-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--wine-lite);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-contact-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.form-contact-text span {
  font-size: 0.9rem;
  color: var(--gray);
}

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

.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--wine);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; padding: 16px; font-size: 1rem; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--gray2);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   ARTIGO (SINGLE POST)
   ============================================================ */
.article-header {
  padding: 64px 0 48px;
  background: var(--wine-xlt);
  border-bottom: 1px solid var(--border);
}

.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
}

.article-header h1 { max-width: 800px; margin-bottom: 20px; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--gray2);
}

.article-author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wine-lite);
  overflow: hidden;
}

.article-body {
  padding: 64px 0;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  color: var(--dark);
}

.article-content h3 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
  color: var(--wine);
}

.article-content p { margin-bottom: 20px; }

.article-content ul, .article-content ol {
  margin: 0 0 20px 24px;
}

.article-content li { margin-bottom: 8px; color: var(--gray); }

.article-cta-block {
  background: var(--wine-xlt);
  border-left: 4px solid var(--wine);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 40px 0;
}

.article-cta-block p { margin-bottom: 14px; }

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wine-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-badge {
  width: 40px;
  height: 40px;
  background: var(--wine);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--wine); }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-oab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.6rem;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

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

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray2);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--wine); }
.breadcrumb-sep { color: var(--gray3); }

/* ============================================================
   UTILITARIOS
   ============================================================ */
.text-wine { color: var(--wine); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-8  { margin-top: 32px; }

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

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-wine { background: var(--wine-lite); color: var(--wine); }
.badge-gold { background: var(--gold-lite); color: var(--gold); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section: 56px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    gap: 20px;
    z-index: 998;
  }

  .nav-links.mobile-open .nav-cta { display: block; }

  .grid-2, .grid-3, .form-section { grid-template-columns: 1fr; gap: 32px; }

  .hero { padding: 48px 0 40px; }
  .hero-image { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; }

  .trust-bar-inner { gap: 24px; }
  .trust-bar-divider { display: none; }

  .registratec-block { grid-template-columns: 1fr; padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 20px; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
