@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  --navy: #162040;
  --navy-dark: #0f1830;
  --cream: #f5efe8;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --wa: #25D366;
  --wa-dark: #1ebe57;
}

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

body {
  font-family: 'Inter', system-ui, 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-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

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

.bodasesor-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bodasesor-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.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: 'Playfair Display', Georgia, 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: 8px 16px;
  border-radius: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, transform .15s;
}

.bodasesor-wa-box:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}

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

.bodasesor-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
}

.bodasesor-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.bodasesor-links a {
  color: #374151;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.bodasesor-links a: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: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 280px;
}

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

.seo-service-hero-copy {
  padding: 40px 24px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .seo-service-hero-copy { padding: 56px 48px; }
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

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

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

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

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

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

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

.seo-btn:hover { transform: translateY(-1px); }

.seo-btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}

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

.seo-btn-call {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}

.seo-btn-call:hover { background: rgba(255,255,255,.18); }

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

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

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

.seo-trust-pills span::before {
  content: '✓ ';
  color: var(--wa);
  font-weight: 700;
}

.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);
}

.seo-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

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

.seo-section-title {
  font-family: 'Playfair Display', Georgia, 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: 'Playfair Display', Georgia, serif;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.seo-content-block {
  max-width: 860px;
  margin: 0 auto;
}

.seo-content-block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0 0 1rem;
  font-weight: 700;
}

.seo-content-block p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

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

.seo-variants { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0 1.5rem; }

.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: 'Playfair Display', Georgia, serif;
}

.seo-section--cream .seo-variant-tag {
  background: var(--white);
}

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

.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;
}

.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;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.seo-feature-title {
  font-family: 'Playfair Display', Georgia, 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: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.seo-garantia-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--cream);
  border-top: 1px solid rgba(22,32,64,.06);
}

.seo-garantia-strip h3 {
  font-family: 'Playfair Display', Georgia, 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: 1280px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  text-align: center;
}

.seo-cta-box h2 {
  font-family: 'Playfair Display', Georgia, 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-logo img { height: 40px; }
  .bodasesor-call-link span { display: none; }
  .bodasesor-wa-box span { font-size: 13px; }
  .bodasesor-navbar-inner { overflow-x: auto; }
  .bodasesor-links { gap: 0; }
  .bodasesor-links a { font-size: 13px; padding: 8px 10px; white-space: nowrap; }
  .seo-garantia-strip { flex-direction: column; text-align: center; }
}
