
:root {
  --navy: #162040;
  --navy-dark: #0f1830;
  --cream: #f5efe8;
  --gold: #c9a962;
  --gold-light: rgba(201, 169, 98, 0.14);
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --wa: #25D366;
  --wa-dark: #1ebe57;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

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

.ico-wa, .ico-phone { flex-shrink: 0; display: block; }

/* ── Header (igual que sitio Bodasesor) ── */
.bodasesor-nav,
.bodasesor-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

.bodasesor-topbar {
  background: var(--navy);
  color: #fff;
}

.bodasesor-topbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo blanco sobre barra navy (igual que sitio principal) */
.bodasesor-topbar .bodasesor-logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.bodasesor-topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bodasesor-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 15px;
  transition: color .2s;
}

.bodasesor-call-link:hover { color: var(--cream); }

.bodasesor-wa-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.bodasesor-wa-box:hover {
  background: #22c55e;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
}

.bodasesor-navbar {
  background: var(--white);
  border-top: 1px solid rgba(22,32,64,.04);
}

.bodasesor-navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bodasesor-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
}

/* ── Navbar principal (igual que bodasesor.com) ── */
.nav-item {
  position: relative;
}

.nav-top-link {
  display: inline-flex;
  align-items: center;
  color: #374151;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: color .2s, background .2s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-top-link--has-dd .nav-chevron {
  margin-left: 2px;
  opacity: .7;
  flex-shrink: 0;
}

.nav-top-link:hover,
.nav-item:hover > .nav-top-link,
.nav-top-link:focus-visible {
  color: var(--navy);
  background: rgba(245,239,232,.6);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 13rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 50;
}

.nav-item--items:last-child .nav-dropdown,
.nav-item--sections:nth-last-child(2) .nav-dropdown {
  left: auto;
  right: 0;
}

.nav-dropdown--mega {
  min-width: 28rem;
  padding: 0;
  overflow: hidden;
}

.nav-dropdown--sections {
  min-width: 15rem;
  max-height: 70vh;
  overflow-y: auto;
}

.nav-dd-overview {
  display: block;
  padding: 8px 16px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}

.nav-dd-overview:hover {
  background: rgba(245,239,232,.8);
}

.nav-dd-divider {
  height: 1px;
  background: rgba(22,32,64,.08);
  margin: 4px 0;
}

.nav-dd-link {
  display: block;
  padding: 0.375rem 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.375rem;
  margin: 0 0.25rem;
  transition: color .2s, background .2s;
}

.nav-dd-link:hover {
  color: var(--navy);
  background: #f5efe8;
}

.nav-dd-link--bold {
  color: var(--navy);
}

.nav-dd-section {
  padding: 4px 0;
}

.nav-dd-section-title {
  display: block;
  padding: 8px 16px 4px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.nav-dd-section-title:hover {
  background: rgba(245,239,232,.6);
}

.nav-mega {
  display: grid;
  grid-template-columns: 11rem 1fr;
  min-height: 12rem;
}

.nav-mega-tabs {
  background: rgba(245,239,232,.35);
  border-right: 1px solid rgba(22,32,64,.06);
  padding: 8px 0;
}

.nav-mega-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 14px;
  border: none;
  background: transparent;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
}

.nav-mega-tab:hover,
.nav-mega-tab.is-active {
  color: var(--navy);
  background: #fff;
}

.nav-mega-panels {
  padding: 8px 0;
  max-height: 60vh;
  overflow-y: auto;
}

.nav-mega-panel {
  display: none;
  padding: 0 4px;
}

.nav-mega-panel.is-active {
  display: block;
}

.nav-mega-heading {
  display: block;
  padding: 6px 12px 8px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(22,32,64,.55);
  text-decoration: none;
}

.nav-mega-heading:hover {
  color: var(--navy);
}

.bodasesor-links > .nav-top-link {
  padding: 12px 10px;
}

.bodasesor-links a:not(.nav-top-link):not(.nav-dd-link):not(.nav-dd-overview):not(.nav-dd-section-title):not(.nav-mega-heading) {
  color: #374151;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.bodasesor-links a:not(.nav-top-link):not(.nav-dd-link):hover {
  color: var(--navy);
  background: rgba(245,239,232,.6);
}

/* ── Hero estilo /banquetes ── */
.seo-service-hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.seo-service-hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 280px;
  padding: 0 clamp(16px, 4vw, 32px);
}

@media (min-width: 1024px) {
  .seo-service-hero-grid {
    grid-template-columns: 3fr 2fr;
    min-height: 340px;
  }
}

.seo-service-hero-copy {
  padding: 40px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

@media (min-width: 1024px) {
  .seo-service-hero-copy {
    padding: 56px 32px 56px 0;
    align-items: flex-start;
    text-align: left;
  }
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  width: 100%;
}

.seo-breadcrumb a:hover { color: #fff; }
.seo-breadcrumb span:last-child { color: rgba(255,255,255,.85); }

.seo-service-hero h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.seo-headline {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.82);
  max-width: 36rem;
  margin: 0 0 28px;
  line-height: 1.5;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.seo-hero-actions--center { justify-content: center; }

.seo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s, background .2s, box-shadow .2s;
}

.seo-btn:hover {
  transform: scale(1.05);
}

.seo-btn-wa {
  background: var(--wa);
  color: #fff;
}

.seo-btn-wa:hover {
  background: #22c55e;
  box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
}

.seo-btn-call {
  background: var(--navy);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  font-weight: 600;
}

.seo-btn-call:hover {
  background: var(--navy-dark);
}

.seo-btn-call-dark {
  background: var(--navy);
  color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  font-weight: 600;
}

.seo-btn-call-dark:hover {
  background: var(--navy-dark);
}

.seo-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  align-items: center;
  justify-content: flex-start;
}

.seo-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seo-trust-pills .seo-ico {
  width: 16px;
  height: 16px;
  color: var(--wa);
  flex-shrink: 0;
}

.seo-trust-sello img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
}

.seo-trust-pills span::before {
  content: none;
}

.seo-service-hero-visual {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 240px;
}

.seo-hero-image {
  max-height: 288px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(22,32,64,.18));
  border-radius: 8px;
}

/* ── Contenido principal ── */
.seo-main {
  background: var(--white);
  width: 100%;
  overflow-x: hidden;
}

.seo-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px clamp(24px, 5vw, 48px);
  width: 100%;
  box-sizing: border-box;
}

.seo-section--cream {
  background: var(--cream);
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.seo-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  width: 100%;
  box-sizing: border-box;
}

.seo-content-block {
  max-width: 760px;
  margin: 0;
  text-align: left;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.seo-section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.seo-section-sub {
  text-align: center;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.seo-content-block h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  text-align: left;
}

.seo-block-lead,
.seo-content-block > p.seo-block-lead,
.seo-content-block > p.seo-intro-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.seo-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 1.5rem;
}

.seo-blocks--magazine {
  gap: 20px;
}

@media (min-width: 768px) {
  .seo-blocks--magazine {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }

  .seo-blocks--magazine .seo-block--cta,
  .seo-blocks--magazine .seo-block--links {
    grid-column: 1 / -1;
  }
}

.seo-block {
  background: var(--white);
  border: 1px solid rgba(22, 32, 64, .07);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(22, 32, 64, .04);
  transition: box-shadow .2s, border-color .2s, transform .2s;
  margin: 0;
}

.seo-block--magazine {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 20px 18px;
  border-radius: 14px;
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(245, 239, 232, .35) 0%, var(--white) 42%);
}

.seo-block-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 32, 64, .15);
}

.seo-block-icon-wrap .seo-ico {
  width: 22px;
  height: 22px;
}

.seo-block-body {
  flex: 1;
  min-width: 0;
}

.seo-magazine-head {
  margin: 0 0 1.25rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--gold-light);
}

.seo-magazine-h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  color: var(--navy);
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.25;
  position: relative;
}

.seo-magazine-h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
  border-radius: 2px;
}

.seo-magazine-lead {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 18px;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, var(--gold-light) 0%, transparent 100%);
}

.seo-magazine-benefit {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 1.25rem;
}

.seo-section--editorial {
  position: relative;
}

.seo-section--editorial:nth-of-type(even) {
  background: var(--cream);
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.seo-section--editorial:nth-of-type(even) .seo-content-block,
.seo-section--editorial:nth-of-type(even) .seo-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.seo-section--editorial .seo-block--magazine {
  background: var(--white);
}

.seo-section--editorial:nth-of-type(even) .seo-block--magazine {
  background: linear-gradient(180deg, #fff 0%, rgba(245, 239, 232, .5) 100%);
}

.seo-content-block .seo-blocks .seo-block p,
.seo-content-block .seo-blocks .seo-block .seo-block-text {
  margin: 0;
}

.seo-block:hover {
  border-color: rgba(22, 32, 64, .14);
  box-shadow: 0 3px 12px rgba(22, 32, 64, .07);
}

.seo-block-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.seo-block--links {
  background: var(--gold-light);
  border-color: rgba(201, 169, 98, .35);
}

.seo-block--links.seo-block--magazine {
  background: linear-gradient(135deg, rgba(201, 169, 98, .12) 0%, rgba(245, 239, 232, .6) 100%);
}

.seo-block--cta {
  background: rgba(37, 211, 102, .06);
  border-color: rgba(37, 211, 102, .2);
}

.seo-block--cta.seo-block--magazine {
  background: linear-gradient(135deg, rgba(37, 211, 102, .08) 0%, rgba(245, 239, 232, .5) 100%);
  border-top-color: var(--wa);
}

.seo-block-list {
  margin: 0 0 1.25rem 1.1rem;
  padding: 0;
  list-style: disc;
}

.seo-block-list li {
  margin-bottom: 0.45rem;
  line-height: 1.7;
  color: var(--muted);
}

.seo-blocks--links {
  margin-top: 1rem;
}

.seo-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.seo-block .seo-inline-cta {
  margin-top: 12px;
}

.seo-block--cta {
  text-align: left;
}

.seo-block--cta .seo-inline-cta {
  margin-top: 10px;
}

.seo-content-block p {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  max-width: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
  line-height: 1.75;
}

.seo-content-block strong { color: var(--navy); font-weight: 600; }

.seo-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 1.5rem;
  justify-content: center;
  max-width: 860px;
}

.seo-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  align-items: center;
}

.seo-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seo-cta-trust .seo-ico {
  width: 14px;
  height: 14px;
  color: var(--wa);
}

.seo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.seo-stat strong {
  display: block;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.seo-stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

.seo-service-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.seo-service-link {
  display: block;
  background: var(--white);
  border: 1px solid rgba(22,32,64,.08);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow .2s, border-color .2s;
}

.seo-service-link:hover {
  border-color: rgba(22,32,64,.18);
  box-shadow: 0 4px 16px rgba(22,32,64,.08);
}

.seo-service-link-title {
  display: block;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.seo-service-link-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
}

.seo-variant-tag {
  background: var(--white);
  border: 1px solid rgba(22,32,64,.12);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', Times, serif;
  transition: background .2s, border-color .2s;
}

a.seo-variant-tag:hover {
  background: var(--cream);
  border-color: rgba(22,32,64,.22);
}

.seo-content-block a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 98, .55);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}

.seo-content-block a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.seo-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.seo-feature {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(22,32,64,.06);
  border: 1px solid rgba(22,32,64,.05);
  transition: box-shadow .2s;
  text-align: center;
}

.seo-feature:hover { box-shadow: 0 6px 20px rgba(22,32,64,.1); }

.seo-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(22,32,64,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--navy);
}

.seo-feature-icon .seo-ico {
  width: 22px;
  height: 22px;
}

.seo-feature-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.seo-feature-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.seo-faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(22,32,64,.05);
  border: 1px solid rgba(22,32,64,.06);
}

.seo-section--cream .seo-faq-item { background: var(--white); }

.seo-faq-q {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}

.seo-faq-a { color: var(--muted); font-size: 0.9375rem; }

.seo-faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.seo-garantia-strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--cream);
  border-top: 1px solid rgba(22,32,64,.06);
  text-align: center;
}

.seo-garantia-strip h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.seo-garantia-strip p { margin: 0; font-size: 0.9375rem; color: var(--muted); }

.seo-sello-inline { flex-shrink: 0; width: 100px; height: auto; }

.seo-cta-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 40px) 72px;
  text-align: center;
}

.seo-cta-box h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 12px;
}

.seo-cta-box p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.seo-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

/* ── Footer minimal (sin logo/sello/nav duplicados) ── */
.bodasesor-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 28px 24px;
  text-align: center;
}

.bodasesor-footer--minimal {
  border-top: 1px solid rgba(255,255,255,.08);
}

.bodasesor-footer-copy {
  font-size: 12px;
  opacity: .75;
  margin: 0;
}

.bodasesor-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--wa);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  z-index: 99;
  transition: transform .15s, box-shadow .15s;
}

.bodasesor-wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
}

.bodasesor-wa-float svg {
  width: 34px;
  height: 34px;
  display: block;
  color: #fff;
}

@media (max-width: 768px) {
  .bodasesor-topbar-inner { padding: 0 16px; height: 56px; }
  .bodasesor-topbar .bodasesor-logo img { height: 40px; }
  .bodasesor-call-link span { display: none; }
  .bodasesor-wa-box span { font-size: 13px; }
  .bodasesor-navbar-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bodasesor-links { gap: 0; justify-content: flex-start; }
  .nav-top-link { font-size: 12px; padding: 10px 8px; }
  .nav-dropdown { display: none; }
  .seo-garantia-strip { flex-direction: column; text-align: center; }
}

/* ── Blog (bodasesor.com/blog) ── */
.seo-blog-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-bottom: 1px solid rgba(22, 32, 64, .06);
  padding: 48px clamp(24px, 5vw, 48px) 40px;
}

.seo-blog-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.seo-blog-hero-inner--with-image {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 32px;
  align-items: center;
}

.seo-blog-hero-copy {
  min-width: 0;
  max-width: 820px;
}

.seo-blog-category {
  display: inline-block;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(22, 32, 64, .06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.seo-blog-hero h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.seo-blog-read-time {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.seo-blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.seo-blog-breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.seo-blog-breadcrumb a:hover { text-decoration: underline; }

.seo-blog-excerpt {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

.seo-blog-featured {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 12px 32px rgba(22, 32, 64, .12);
}

.seo-blog-featured-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.seo-blog-figure {
  margin: 28px 0 36px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}

.seo-blog-inline-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.seo-blog-caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  background: rgba(245, 239, 232, .5);
}

.seo-blog-main {
  background: var(--white);
}

.seo-blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px clamp(24px, 5vw, 48px) 32px;
}

.seo-blog-article .seo-section {
  padding: 0 0 32px;
  max-width: none;
}

.seo-blog-article .seo-content-block p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.seo-blog-article .seo-content-block h2,
.seo-blog-article .seo-section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.35rem;
}

.seo-blog-article .seo-magazine-head {
  margin-top: 2.5rem;
}

.seo-blog-article .seo-magazine-h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.seo-blog-article .seo-section--editorial {
  padding: 28px clamp(20px, 4vw, 32px);
  margin: 0 -clamp(20px, 4vw, 32px) 8px;
  border-radius: 12px;
}

.seo-blog-article .seo-section--editorial:nth-of-type(even) {
  background: var(--cream);
}

.seo-blog-article .seo-block--magazine {
  box-shadow: 0 2px 10px rgba(22, 32, 64, .06);
}

.seo-blog-article .seo-content-block h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
}

.seo-blog-summary {
  background: var(--cream);
  border-left: 4px solid var(--gold, #c9a962);
  border-radius: 0 8px 8px 0;
  padding: 4px 0 8px;
  margin-bottom: 8px;
}

.seo-blog-summary h2 {
  font-size: 1.15rem;
  margin-top: 0;
}

.seo-blog-article .seo-content-block ul,
.seo-blog-article .seo-block-list {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
  list-style: disc;
}

.seo-blog-article .seo-content-block li {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.seo-blog-article .seo-faq-wrap {
  margin-top: 8px;
}

/* ── Landing: intro transaccional y tabla de specs ── */
.seo-section--intro .seo-intro-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}

.seo-section--intro .seo-intro-benefit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(201, 169, 98, .12);
  border-radius: 8px;
  border-left: 3px solid var(--gold, #c9a962);
}

.seo-spec-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}

.seo-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(22, 32, 64, .06);
}

.seo-spec-table th,
.seo-spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(22, 32, 64, .08);
  vertical-align: top;
}

.seo-spec-table th {
  width: 38%;
  font-weight: 700;
  color: var(--navy);
  background: var(--cream);
}

.seo-spec-table tr:last-child th,
.seo-spec-table tr:last-child td {
  border-bottom: none;
}

.seo-section--specs {
  padding-top: 0;
}

.seo-cta-box--blog {
  max-width: 820px;
  margin: 0 auto 48px;
}

.seo-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.seo-blog-related-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(22, 32, 64, .08);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow .2s, transform .15s;
}

.seo-blog-related-card:hover {
  box-shadow: 0 8px 24px rgba(22, 32, 64, .1);
  transform: translateY(-2px);
}

.seo-blog-related-cat {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.seo-blog-related-card h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.seo-blog-related-time {
  font-size: 12px;
  color: var(--muted);
}

.seo-blog-all-wrap {
  text-align: center;
  margin-top: 28px;
}

.seo-blog-all-link {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .seo-blog-hero { padding: 32px 20px 28px; }
  .seo-blog-hero-inner--with-image { grid-template-columns: 1fr; }
  .seo-blog-article { padding: 32px 20px 24px; }
}

/* ── Blog conversión (mobile-first) ── */
body.seo-blog-conversion { background: #fff; }

.seo-blog-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #1a1a1f;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.seo-blog-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.seo-blog-header-logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.seo-blog-header-call {
  display: inline-flex;
  align-items: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: #007BFF;
  padding: 11px 16px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 123, 255, .35);
  transition: background .2s, transform .15s;
}

.seo-blog-header-call:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.seo-blog-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 14px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, .3);
  transition: transform .15s;
}

.seo-blog-header-cta:hover { transform: translateY(-1px); }

.seo-blog-conversion-hero {
  background: linear-gradient(165deg, #25252b 0%, #1a1a1f 100%);
  color: #fff;
  padding: clamp(28px, 5vw, 48px) clamp(16px, 4vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.seo-blog-conversion-hero-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.seo-blog-conversion-hero-inner .seo-blog-breadcrumb {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
  font-size: 13px;
}

.seo-blog-conversion-hero-inner .seo-blog-breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.seo-blog-conversion-hero-inner .seo-blog-category {
  background: rgba(201, 169, 98, .2);
  color: var(--gold);
  margin-bottom: 12px;
}

.seo-blog-conversion-hero-inner h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
}

.seo-blog-conversion-subtitle {
  font-size: clamp(1rem, 2.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 10px;
}

.seo-blog-conversion-hero-inner .seo-blog-read-time {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

/* Texto plano SEO — sin recuadros */
.seo-blog-plain-text {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 24px);
  background: #fff;
}

.seo-blog-plain-text .seo-section {
  background: transparent;
  padding: 0;
  margin: 0 0 2rem;
  border: none;
  box-shadow: none;
}

.seo-blog-plain-text h2,
.seo-blog-plain-text .seo-section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  color: var(--navy);
  margin: 2rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold-light);
}

.seo-blog-plain-text h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
}

.seo-plain-p,
.seo-plain-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.125rem);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.15rem;
}

.seo-plain-lead {
  font-size: clamp(1.1rem, 2.8vw, 1.2rem);
  color: #334155;
}

.seo-plain-p a,
.seo-plain-lead a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-blog-conversion .seo-blog-article {
  padding: 0;
  max-width: none;
}

.seo-blog-figure {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
}

/* Grid de 4 servicios — única sección con recuadros */
.seo-blog-services-grid {
  background: #f8f9fb;
  padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 32px);
  border-top: 1px solid rgba(22, 32, 64, .06);
}

.seo-blog-services-grid-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.seo-blog-services-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

.seo-blog-services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.seo-blog-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  border: 1px solid rgba(22, 32, 64, .08);
  box-shadow: 0 4px 16px rgba(22, 32, 64, .04);
  text-align: center;
}

.seo-blog-service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 12px;
  color: var(--navy);
}

.seo-blog-service-icon .seo-ico {
  width: 26px;
  height: 26px;
}

.seo-blog-service-card h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.seo-blog-service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.seo-blog-service-link {
  font-weight: 700;
  font-size: 14px;
  color: #007BFF;
}

.seo-blog-testimonials {
  background: var(--cream);
  padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 32px);
}

.seo-blog-testimonials-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.seo-blog-testimonials-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

.seo-blog-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.seo-blog-testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(22, 32, 64, .06);
  border: 1px solid rgba(22, 32, 64, .05);
}

.seo-testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 10px;
}

.seo-star { width: 18px; height: 18px; }

.seo-blog-testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
}

.seo-blog-testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--muted);
}

.seo-blog-testimonial-card footer strong { color: var(--navy); }

.seo-blog-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .82);
  padding: 32px clamp(16px, 4vw, 32px);
}

.seo-blog-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.seo-blog-footer-coverage {
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  margin-bottom: 16px;
  line-height: 1.6;
}

.seo-blog-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 14px;
}

.seo-blog-footer-links a {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.seo-blog-footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

@media (min-width: 640px) {
  .seo-blog-services-cards { grid-template-columns: repeat(2, 1fr); }
  .seo-blog-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .seo-blog-services-cards { grid-template-columns: repeat(4, 1fr); }
}
