/* =====================================================
   SEO PARA HOTELES — CSS de página
   Archivo: assets/seo-para-hoteles.css
   Prefijo: se-  (seo)
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --se-bg-base:        #0A0A0A;
  --se-bg-surface:     #0D0D0D;
  --se-bg-elevated:    #111111;
  --se-bg-light:       #F5F3EE;
  --se-bg-white:       #FFFFFF;
  --se-text-primary:   #F0EDE6;
  --se-text-secondary: #C8C5BE;
  --se-text-muted:     #9A9690;
  --se-text-dim:       #555550;
  --se-text-dark:      #1A1A1A;
  --se-text-dark-muted:#666666;
  --se-orange:         #FF6A00;
  --se-orange-subtle:  rgba(255, 106, 0, 0.12);
  --se-orange-border:  rgba(255, 106, 0, 0.30);
  --se-border-dim:     rgba(255, 255, 255, 0.06);
  --se-border-mid:     rgba(255, 255, 255, 0.10);
  --se-border-dark:    rgba(0, 0, 0, 0.10);
  --se-section-v:      72px;
}

/* ── Layout ─────────────────────────────────────────── */
.se-container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.se-section   { padding: var(--se-section-v) 0; }

/* ── Typography ─────────────────────────────────────── */
.se-hero h1,
.se-section h1 { font-size: 32px; font-weight: 500; line-height: 1.3; color: var(--se-text-primary); }

.se-section h2 { font-size: 20px; font-weight: 500; line-height: 1.25; color: var(--se-text-primary); }
.se-section h3 { font-size: 14px; font-weight: 500; line-height: 1.25; }
.se-section p  { font-size: 14px; line-height: 1.65; color: var(--se-text-secondary); }

.se-section-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--se-orange);
  margin-bottom: 16px;
}

/* ── Line decor ─────────────────────────────────────── */
.se-line-decor { width: 32px; height: 2px; background: var(--se-orange); border-radius: 1px; margin: 20px 0; }
.se-line-decor--center { margin-left: auto; margin-right: auto; }

/* ── Badge ───────────────────────────────────────────── */
.se-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 3px;
}
.se-badge--orange { background: var(--se-orange-subtle); color: var(--se-orange); }
.se-badge--gray   { background: rgba(255,255,255,.07); color: var(--se-text-muted); }

/* ── Button ─────────────────────────────────────────── */
.se-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.se-btn--primary       { background: var(--se-orange); color: #fff; }
.se-btn--primary:hover { background: #e55f2e; transform: translateY(-2px); }

/* ── Link arrow ─────────────────────────────────────── */
.se-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--se-orange);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.se-link-arrow:hover { gap: 10px; }

/* ── Photo placeholder ───────────────────────────────── */
.se-photo-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--se-text-dim);
  font-size: 12px;
}

/* =====================================================
   SECTION 1: HERO
   ===================================================== */
.se-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.se-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/wp-content/uploads/2026/01/Agencia-Seo-Para-Hoteles.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.se-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.se-hero__content {
  max-width: 600px;
}

.se-hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.se-hero__line {
  margin-bottom: 24px;
}

.se-hero__subtitle {
  font-size: 14px;
  color: var(--se-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.se-hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.se-hero__cta {
  margin-top: 0;
}

.se-hero__cta-note {
  font-size: 11px;
  color: var(--se-text-dim);
  margin-top: 14px;
}
.se-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

/* =====================================================
   FRANJA: STATS
   ===================================================== */
.se-stats-bar {
  background: var(--se-bg-elevated);
  padding: 22px 0;
  border-top: 1px solid var(--se-border-dim);
  border-bottom: 1px solid var(--se-border-dim);
}

.se-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.se-stats-bar__item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--se-border-dim);
}
.se-stats-bar__item:last-child { border-right: none; }

.se-stats-bar__title { font-size: 14px; font-weight: 500; color: var(--se-text-primary); margin-bottom: 4px; }
.se-stats-bar__title--orange { color: var(--se-orange); }
.se-stats-bar__label { font-size: 12px; color: var(--se-text-muted); line-height: 1.4; }

/* =====================================================
   SEC 2: POR QUÉ IMPORTA
   ===================================================== */
.se-why-section { background: var(--se-bg-light); padding: var(--se-section-v) 0; }

.se-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.se-why-text h2 { color: var(--se-text-dark); }
.se-why-text p  { color: var(--se-text-dark-muted); margin-top: 16px; }

.se-risk-list { list-style: none; margin-top: 24px; padding: 0; }
.se-risk-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }

.se-check-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--se-orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.se-risk-item { font-size: 13px; font-weight: 500; color: var(--se-text-dark); line-height: 1.5; }

.se-serp-placeholder { width: 100%; }
.se-serp-placeholder img { width: 100%; border-radius: 8px; }

/* =====================================================
   SEC 3: FILOSOFÍA SEO (full-bleed)
   ===================================================== */
.se-philosophy-section { background: var(--se-bg-base); }

.se-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.se-philosophy-text {
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.se-philosophy-text h2 { color: var(--se-text-primary); margin-top: 14px; }
.se-philosophy-text p  { margin-top: 16px; }

.se-philosophy-quote {
  background: var(--se-bg-elevated);
  border-left: 2px solid var(--se-orange);
  padding: 14px 18px;
  margin-top: 22px;
  border-radius: 0 6px 6px 0;
}

.se-philosophy-quote p {
  font-size: 13px;
  font-weight: 500;
  color: var(--se-text-primary);
  line-height: 1.6;
  margin: 0;
}

.se-philosophy-visual { position: relative; overflow: hidden;   align-self: center; }

/* =====================================================
   SEC 4: LA COMPETENCIA
   ===================================================== */
.se-competition-section { background: var(--se-bg-light); padding: var(--se-section-v) 0; }

.se-competition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.se-competition-text h2 { color: var(--se-text-dark); }
.se-competition-text h3 { color: var(--se-text-dark); margin-top: 20px; }
.se-competition-text p  { color: var(--se-text-dark-muted); margin-top: 16px; }

.se-competition-visual { position: relative; height: 260px; overflow: hidden; border-radius: 8px; }

.se-insight-box {
  background: #fff;
  border-left: 3px solid var(--se-orange);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin-top: 20px;
}

.se-insight-box p { font-size: 13px; color: var(--se-text-dark); line-height: 1.65; margin: 0; }

/* =====================================================
   SEC 5: QUÉ GENERA EL SEO
   ===================================================== */
.se-metrics-section { background: var(--se-bg-surface); }

.se-metrics-intro { text-align: center; max-width: 520px; margin: 0 auto 48px; }
.se-metrics-intro h2 { color: var(--se-text-primary); }
.se-metrics-intro p  { margin-top: 12px; }

.se-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--se-border-dim);
  gap: 1px;
}

.se-metric-cell { padding: 32px 24px; text-align: center; }
.se-metric-cell:nth-child(odd)  { background: var(--se-bg-surface); }
.se-metric-cell:nth-child(even) { background: var(--se-bg-elevated); }

.se-metric-icon {
  width: 44px;
  height: 44px;
  border: 1px dashed var(--se-orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.se-metric-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--se-orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.se-metric-word { font-size: 38px; font-weight: 500; color: var(--se-orange); line-height: 1; margin-bottom: 14px; letter-spacing: -0.01em; }
.se-metric-cell h3 { color: var(--se-text-primary); margin-bottom: 10px; }
.se-metric-cell p  { font-size: 13px; color: var(--se-text-muted); line-height: 1.6; }

/* =====================================================
   SEC 6: COMBO SEO + DISEÑO
   ===================================================== */
.se-combo-section { background: var(--se-bg-white); }

.se-combo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.se-combo-text h2 { color: var(--se-text-dark); }
.se-combo-text p  { color: var(--se-text-dark-muted); margin-top: 16px; }

.se-combo-cards { display: flex; flex-direction: column; gap: 16px; }

.se-path-card {
  background: var(--se-bg-light);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--se-border-dark);
}

.se-path-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.se-path-icon--orange { background: var(--se-orange); }
.se-path-icon--dark   { background: #1A1A1A; }

.se-path-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.se-path-card h3 { color: var(--se-text-dark); margin-bottom: 8px; }
.se-path-card p  { font-size: 13px; color: var(--se-text-dark-muted); line-height: 1.6; }
.se-path-card .se-link-arrow { margin-top: 14px; font-size: 12px; }

/* =====================================================
   SEC 7: PROCESO — TIMELINE VERTICAL
   ===================================================== */
.se-process-section { background: var(--se-bg-light); }

.se-process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.se-process-intro h2 { color: var(--se-text-dark); }

.se-vtimeline { display: flex; flex-direction: column; margin-top: 32px; }
.se-vtimeline-step { display: flex; gap: 16px; }

.se-vtimeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.se-vt-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--se-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--se-orange);
  flex-shrink: 0;
  background: var(--se-bg-light);
}

.se-vt-circle--filled { background: var(--se-orange); color: #fff; border-color: var(--se-orange); }

.se-vt-line { width: 1.5px; flex: 1; background: rgba(255,106,0,.2); margin: 4px 0; min-height: 28px; }

.se-vt-content { padding-bottom: 28px; padding-top: 6px; }
.se-vt-content h3 { font-size: 13px; font-weight: 500; color: var(--se-text-dark); margin-bottom: 6px; }
.se-vt-content p  { font-size: 12px; color: #888; line-height: 1.6; }

.se-process-visual {
  width: 100%;
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
	align-self: center;
}

/* =====================================================
   SEC 8: PRECIOS
   ===================================================== */
.se-pricing-section { background: var(--se-bg-base); }

.se-pricing-intro { text-align: center; max-width: 500px; margin: 0 auto 48px; }
.se-pricing-intro h2 { color: var(--se-text-primary); }
.se-pricing-intro p  { margin-top: 12px; }

.se-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.se-price-card {
  background: var(--se-bg-surface);
  border: 1px solid var(--se-border-mid);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}

.se-price-card--featured { border-color: var(--se-orange); background: var(--se-bg-elevated); }

.se-price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--se-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.se-price-card h3   { font-size: 16px; color: var(--se-text-primary); margin-bottom: 8px; }
.se-price-amount    { font-size: 14px; color: var(--se-orange); font-weight: 500; margin-bottom: 4px; }
.se-price-note      { font-size: 11px; color: var(--se-text-dim); margin-bottom: 20px; }
.se-price-includes  { font-size: 11px; font-weight: 500; color: var(--se-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

.se-price-list { list-style: none; padding: 0; margin-bottom: 20px; }
.se-price-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--se-text-muted);
  margin-bottom: 8px;
}
.se-price-list li::before { content: '·'; color: var(--se-orange); font-weight: bold; }

.se-price-desc {
  font-size: 12px;
  color: var(--se-text-dim);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--se-border-dim);
}

.se-pricing-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--se-text-dim); }

/* =====================================================
   SEC 9: POR QUÉ 6 MESES
   ===================================================== */
.se-months-section { background: var(--se-bg-white); }

.se-months-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.se-months-visual { width: 100%; min-height: 260px; border-radius: 8px; overflow: hidden; position: relative; }
.se-months-visual img { width: 100%; height: 100%; object-fit: cover; }

.se-months-text h2 { color: var(--se-text-dark); }
.se-months-text p  { color: var(--se-text-dark-muted); margin-top: 16px; }

.se-months-quote {
  background: var(--se-bg-light);
  border-left: 2px solid var(--se-orange);
  padding: 14px 18px;
  margin-top: 22px;
  border-radius: 0 6px 6px 0;
}

.se-months-quote p { font-size: 13px; font-weight: 500; color: var(--se-text-dark); line-height: 1.6; margin: 0; }

/* =====================================================
   SEC 10: FAQ
   ===================================================== */
.se-faq-section { background: var(--se-bg-surface); }

.se-faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }

.se-faq-intro h2 { color: var(--se-text-primary); }
.se-faq-intro p  { margin-top: 16px; color: var(--se-text-muted); }

.se-faq-list { border-top: 0.5px solid rgba(255,255,255,.08); }
.se-faq-item { border-bottom: 0.5px solid rgba(255,255,255,.08); }

.se-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}
.se-faq-item summary::-webkit-details-marker { display: none; }

.se-faq-item summary h3 { font-size: 14px; font-weight: 500; color: var(--se-text-primary); margin: 0; padding-right: 16px; }

.se-faq-icon { font-size: 18px; color: var(--se-orange); flex-shrink: 0; transition: transform 0.2s ease; }
.se-faq-item[open] .se-faq-icon { transform: rotate(45deg); }

.se-faq-answer { padding: 0 0 18px; font-size: 13px; color: var(--se-text-muted); line-height: 1.7; }

/* =====================================================
   SEC 11: CTA FINAL
   ===================================================== */
.se-cta-final { 
	padding: 50px 0; 
position: relative;
  background-image: url('/wp-content/uploads/2026/01/Dise%C3%B1o-web-con-seo-y-motor-de-reservas-para-hoteles.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.se-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 19, 0.75); /* negro premium con opacidad */
  z-index: 1;
}

/* Contenido por encima del overlay */
.se-cta-final .se-container {
  position: relative;
  z-index: 2;
}

.se-cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--se-bg-elevated);
  border: 0.5px solid var(--se-orange-border);
  border-radius: 10px;
  padding: 40px 20px;
}

.se-cta-headline { font-size: 20px; font-weight: 500; color: var(--se-text-primary); line-height: 1.3; margin: 16px 0 12px; }
.se-cta-body { font-size: 14px; color: var(--se-text-muted); line-height: 1.65; }
.se-cta-box .se-btn { margin-top: 24px; }
.se-cta-note { font-size: 11px; color: var(--se-text-dim); margin-top: 14px; }

.se-cta-divider { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--se-border-dim); }
.se-cta-divider p { font-size: 13px; color: var(--se-text-dim); margin-bottom: 8px; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@media (prefers-reduced-motion: no-preference) {
  .se-fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  .se-fade-in.se-visible { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1023px) {
  .se-container { padding: 0 24px; }

  .se-why-grid,
  .se-combo-grid,
  .se-process-grid,
  .se-months-grid,
  .se-faq-grid     { grid-template-columns: 1fr; gap: 40px; }

  .se-philosophy-grid  { grid-template-columns: 1fr; }
  .se-philosophy-visual { position: relative; height: 280px; }

  .se-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .se-metrics-grid { grid-template-columns: 1fr; }
  .se-hero__decoration { display: none; }
	.se-competition-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .se-competition-text,
	.se-months-text{
    order: 1;
  }

  .se-competition-visual,
	.se-months-visual{
    order: 2;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .se-container { padding: 0 20px; }

  .se-section { padding: 52px 0; }
  .se-cta-final { padding: 52px 0; }

  .se-section h2 { font-size: 18px; }

  .se-stats-bar__grid { grid-template-columns: 1fr; gap: 16px; }
  .se-stats-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--se-border-dim);
    padding: 12px 0;
  }
  .se-stats-bar__item:last-child { border-bottom: none; }

  .se-philosophy-text { padding: 52px 20px; }
  .se-price-card--featured { order: -1; }
  .se-cta-box { padding: 36px 24px; }
  .se-hero {
    padding: 110px 0 72px;
    min-height: auto;
  }

  .se-hero__bg {
    background-image: url('/wp-content/uploads/2026/01/Agencia-Seo-Para-Hoteles-movil.webp');
    background-position: center center;
  }

  .se-hero__content {
    max-width: 100%;
  }
}