/*
Theme Name: Leñazo
Theme URI: http://xn--leazo-pta.es
Description: Tema personalizado para leñazo.es - venta de leña en Ciudad Real
Author: Leñazo
Version: 1.0
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --dorado: #C9A84B;
  --dorado-dark: #a8892e;
  --oscuro: #3D3834;
  --crema: #F5F0E8;
  --gris-claro: #f4f4f4;
  --verde-oscuro: #2D4A2D;
  --texto: #333;
  --texto-claro: #666;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  text-align: center;
}
.btn-naranja {
  background: var(--dorado);
  color: #fff;
}
.btn-naranja:hover { background: var(--dorado-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--oscuro);
  border: 2px solid var(--oscuro);
}
.btn-outline:hover { background: var(--oscuro); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--dorado);
  border: 2px solid #fff;
}
.btn-white:hover { background: transparent; color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 36px; font-size: 18px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--verde-oscuro);
  color: #fff;
  padding: 9px 0;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar a { color: #FFD166; font-weight: 700; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 28px; }
.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--oscuro);
  letter-spacing: -1px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--oscuro);
  transition: color 0.2s;
  letter-spacing: -0.2px;
}
.main-nav a:hover { color: var(--dorado); }
.header-cta { padding: 10px 22px; font-size: 14px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--crema);
  padding: 11px 0;
  border-bottom: 1px solid #e4ddd0;
  font-size: 13px;
  font-weight: 600;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-strip span { color: var(--oscuro); }

/* ===== HERO ===== */
.hero {
  background: var(--verde-oscuro);
  padding: 70px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.15); }
.hero-price {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.hero-price strong {
  font-size: 20px;
  font-weight: 900;
  color: #FFD166;
}
.hero-img-placeholder {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== REVIEWS BAR ===== */
.reviews-bar {
  background: var(--gris-claro);
  padding: 40px 0;
  border-bottom: 1px solid #e8e8e8;
}
.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-item {
  background: #fff;
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid #eee;
}
.stars { color: #FFB800; font-size: 16px; margin-bottom: 10px; }
.reviews-text { color: var(--texto); font-style: italic; font-size: 14px; line-height: 1.65; margin-bottom: 10px; }
.reviews-author { color: var(--texto-claro); font-size: 12px; font-weight: 600; }

/* ===== TRUST CIRCLES ===== */
.trust-circles {
  background: var(--crema);
  padding: 70px 0;
}
.circles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.circle-item {
  text-align: center;
}
.circle-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--dorado);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.circle-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--oscuro);
  margin-bottom: 10px;
}
.circle-item p {
  font-size: 14px;
  color: var(--texto-claro);
  line-height: 1.65;
}

/* ===== 3 STEPS ===== */
.steps-section {
  background: var(--verde-oscuro);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.steps-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dorado-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.step h3 { font-size: 17px; font-weight: 700; }
.step p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 220px; }
.steps-cta { margin-top: 8px; }

/* ===== ZONAS ===== */
.zonas-section {
  background: var(--crema);
  padding: 60px 0;
  text-align: center;
}
.zonas-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--oscuro);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--texto-claro);
  margin-bottom: 40px;
}
.zonas-lista-inline {
  font-size: 20px;
  font-weight: 700;
  color: var(--oscuro);
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.zonas-footer-text {
  font-size: 16px;
  color: var(--texto-claro);
  margin-top: 8px;
}
.zonas-footer-text strong {
  color: var(--dorado);
  font-weight: 700;
}

/* ===== POR QUÉ ENCINA ===== */
.encina-section {
  background: var(--gris-claro);
  padding: 70px 0;
}
.encina-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.encina-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--oscuro);
  margin-bottom: 24px;
}
.encina-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.encina-lista li {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.encina-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dorado);
  font-weight: 900;
  font-size: 16px;
}
.encina-img-placeholder {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
}
.encina-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== PRECIOS ===== */
.precio-section {
  background: var(--oscuro);
  padding: 70px 0;
  text-align: center;
}
.precio-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.precios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.precio-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.precio-card-featured {
  background: rgba(201,168,75,0.18);
  border-color: var(--dorado);
}
.precio-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dorado);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.precio-tipo {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
.precio-valor {
  font-size: 40px;
  font-weight: 900;
  color: var(--dorado);
  line-height: 1;
}
.precio-kilo {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.precio-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 8px 0;
}
.precio-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.precio-features li:last-child { border-bottom: none; }
.precio-sub {
  color: rgba(255,255,255,0.6) !important;
}
.precio-nota {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ===== CTA FINAL ===== */
.cta-section {
  background: var(--dorado);
  padding: 80px 0;
  text-align: center;
}
.cta-inner h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-section .btn-white {
  background: #fff;
  color: var(--dorado);
  border: 2px solid #fff;
  font-weight: 800;
}
.cta-section .btn-white:hover { background: transparent; color: #fff; }
.cta-section .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.65);
  padding: 50px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo .logo-text { color: #fff; font-size: 20px; }
.footer-logo .logo-icon { font-size: 22px; }
.footer-logo a { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.footer-contact p, .footer-zonas p { font-size: 14px; line-height: 1.7; }
.footer-contact a { color: var(--dorado); font-weight: 700; }
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
/* ===== PODER CALORÍFICO CALLOUT ===== */
.poder-callout {
  background: #1e3420;
  padding: 44px 0;
  border-top: 4px solid var(--dorado);
  border-bottom: 4px solid var(--dorado);
}
.poder-text {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}
.poder-text strong { color: #FFD166; font-size: 21px; display: block; margin-bottom: 6px; }
.poder-quote { font-size: 52px; line-height: 0.5; color: var(--dorado); font-family: Georgia, serif; display: block; margin-bottom: 14px; }
.poder-quote-close { margin-top: 14px; margin-bottom: 0; }

@media (max-width: 900px) {
  .trust-strip-inner { flex-wrap: wrap; gap: 8px; justify-content: flex-start; font-size: 12px; }
  .main-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { display: none; }
  .circles-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  .encina-inner { grid-template-columns: 1fr; }
  .encina-img-wrap { order: -1; }
  .precios-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .reviews-list { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .topbar-inner { justify-content: center; flex-direction: column; gap: 4px; font-size: 12px; }
  .hero { padding: 50px 0; }
  .hero-text h1 { font-size: 34px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .precios-grid { grid-template-columns: 1fr; max-width: 360px; }
  .cta-inner h2 { font-size: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
}

/* ===== INNER PAGES ===== */
.inner-hero {
  background: var(--verde-oscuro);
  padding: 60px 0 50px;
  text-align: center;
}
.inner-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.inner-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}
.inner-hero-sm { padding: 40px 0 32px; }
.inner-hero-sm h1 { font-size: clamp(22px, 4vw, 36px); }

.page-content {
  max-width: 780px;
  padding: 50px 20px 80px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--texto);
}
.page-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--oscuro); }
.page-content p { margin-bottom: 16px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content li { margin-bottom: 6px; }

/* ===== CONTACTO ===== */
.contact-section { padding: 60px 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 50px;
}
.contact-box {
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-box-wa { background: #f0faf3; border: 2px solid #25D366; }
.contact-box-phone { background: var(--crema); border: 2px solid var(--dorado); }
.contact-box-icon { width: 52px; height: 52px; }
.contact-box-wa .contact-box-icon svg { fill: #25D366; }
.contact-box-phone .contact-box-icon svg { stroke: var(--dorado); }
.contact-box h2 { font-size: 22px; font-weight: 800; color: var(--oscuro); }
.contact-box p { font-size: 15px; color: var(--texto-claro); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1aab52; }
.contact-info { max-width: 720px; margin: 0 auto; }
.contact-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.contact-info p { font-size: 15px; color: var(--texto-claro); margin-bottom: 6px; }

/* ===== TIPOS DE LEÑA ===== */
.tipos-article { padding: 60px 0 40px; }
.tipos-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: flex-start;
}
.tipos-toc {
  position: sticky;
  top: 80px;
  background: var(--crema);
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
}
.tipos-toc p { font-size: 13px; color: var(--texto-claro); margin-bottom: 10px; }
.tipos-toc ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tipos-toc a { color: var(--oscuro); font-weight: 500; }
.tipos-toc a:hover { color: var(--dorado); }
.tipos-content { min-width: 0; }
.tipos-seccion { margin-bottom: 56px; }
.tipos-seccion h2 { font-size: 26px; font-weight: 800; color: var(--oscuro); margin-bottom: 14px; border-bottom: 3px solid var(--dorado); padding-bottom: 8px; }
.tipos-seccion h3 { font-size: 18px; font-weight: 700; color: var(--oscuro); margin: 22px 0 10px; }
.tipos-seccion p { font-size: 15px; line-height: 1.75; color: var(--texto); margin-bottom: 14px; }
.tipos-lista { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin-bottom: 16px; }
.tipos-lista li { font-size: 15px; color: var(--texto); padding-left: 22px; position: relative; line-height: 1.65; }
.tipos-lista li::before { content: "✓"; position: absolute; left: 0; color: var(--dorado); font-weight: 900; }
.tipos-lista-no li::before { content: "✗"; color: #c0392b; }
.tipos-badge { display: inline-block; background: var(--dorado); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.tipos-cta-box { background: var(--crema); border-left: 4px solid var(--dorado); border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.tipos-cta-box p { margin: 0; font-size: 15px; color: var(--texto); }
.tipos-tabla-wrap { overflow-x: auto; }
.tipos-tabla { width: 100%; border-collapse: collapse; font-size: 14px; }
.tipos-tabla th { background: var(--verde-oscuro); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
.tipos-tabla td { padding: 10px 14px; border-bottom: 1px solid #eee; }
.tipos-tabla tbody tr:hover { background: var(--crema); }
.tabla-top td { font-weight: 600; background: rgba(201,168,75,0.06); }

/* ===== BLOG ===== */
.blog-section { padding: 50px 0 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.post-card-img { display: block; height: 180px; overflow: hidden; background: var(--crema); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-card-img img { transform: scale(1.03); }
.post-card-img-placeholder { background: linear-gradient(135deg, #8B4513 0%, #5D3A1A 100%); }
.post-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card-date { font-size: 12px; color: var(--texto-claro); }
.post-card-title { font-size: 17px; font-weight: 700; line-height: 1.35; }
.post-card-title a { color: var(--oscuro); }
.post-card-title a:hover { color: var(--dorado); }
.post-card-excerpt { font-size: 14px; color: var(--texto-claro); line-height: 1.6; flex: 1; }
.post-card-link { font-size: 13px; font-weight: 600; color: var(--dorado); margin-top: 4px; }
.blog-empty { font-size: 17px; color: var(--texto-claro); text-align: center; padding: 40px 0; }
.blog-pagination { margin-top: 40px; text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.blog-pagination a, .blog-pagination span { padding: 8px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; color: var(--oscuro); }
.blog-pagination a:hover { background: var(--dorado); color: #fff; border-color: var(--dorado); }

/* ===== SINGLE POST ===== */
.single-post-header {
  background: var(--verde-oscuro);
  padding: 50px 0 40px;
}
.single-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
}
.single-post-meta a { color: rgba(255,255,255,0.6); }
.single-post-meta a:hover { color: #fff; }
.single-post-date { color: rgba(255,255,255,0.45); }
.single-post-header h1 { font-size: clamp(24px, 4vw, 42px); font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.15; max-width: 750px; }
.single-post-body { max-width: 780px; padding: 50px 20px 80px; }
.single-post-img { margin-bottom: 32px; border-radius: 10px; overflow: hidden; }
.single-post-img img { width: 100%; max-height: 420px; object-fit: cover; }
.single-post-content { font-size: 16px; line-height: 1.8; color: var(--texto); }
.single-post-content h2 { font-size: 24px; font-weight: 800; color: var(--oscuro); margin: 36px 0 14px; }
.single-post-content h3 { font-size: 19px; font-weight: 700; color: var(--oscuro); margin: 26px 0 10px; }
.single-post-content p { margin-bottom: 18px; }
.single-post-content ul, .single-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content strong { color: var(--oscuro); }
.single-post-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.single-post-content th { background: var(--oscuro); color: #fff; padding: 10px 14px; text-align: left; }
.single-post-content td { padding: 10px 14px; border-bottom: 1px solid #eee; }

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }
  .tipos-container { grid-template-columns: 1fr; }
  .tipos-toc { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .single-post-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ===== TRUST CIRCLES TITLE ===== */
.trust-circles-title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--oscuro);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ===== FAQ ===== */
.faq-section { padding: 60px 0; background: var(--crema); }
.faq-section h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--oscuro);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--dorado); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--oscuro);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--dorado); flex-shrink: 0; }
.faq-item[open] summary { color: var(--dorado); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; font-size: 15px; line-height: 1.7; color: var(--texto); margin: 0; }

/* ===== AVISO LEGAL / PÁGINAS LEGALES ===== */
.legal-section { padding: 60px 0 80px; }
.legal-container { max-width: 800px; }
.legal-container h1 { font-size: 30px; font-weight: 800; color: var(--oscuro); margin-bottom: 28px; margin-top: 48px; padding-bottom: 10px; border-bottom: 2px solid var(--dorado); }
.legal-container h1:first-child { margin-top: 0; }
.legal-container h2 { font-size: 18px; font-weight: 700; color: var(--oscuro); margin: 24px 0 10px; }
.legal-container p { font-size: 15px; line-height: 1.8; color: var(--texto); margin-bottom: 14px; }
.legal-container ul { margin: 10px 0 14px 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-container li { font-size: 15px; line-height: 1.7; color: var(--texto); }
.legal-container a { color: var(--dorado-dark); text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid #e0e0e0; margin: 48px 0; }
.legal-updated { font-size: 13px; color: var(--texto-claro); margin-top: 40px; }
