/* ============================================================
   assets/css/site.css — H&FV Web Design
   CSS unificado para todas las páginas principales del sitio.
   Reemplaza los 16 archivos individuales de assets/css/pages/

   PÁGINAS:
   - index.html
   - servicios.html
   - quienes-somos.html
   - contacto.html
   - servicios/diseno-web-para-constructoras.html
   - servicios/diseno-web-para-empresas.html
   - servicios/automatizacion-con-inteligencia-artificial.html
   - servicios/gestion-de-redes-sociales.html
   - servicios/mantenimiento-de-paginas-web.html
   - servicios/webs-para-monotributos.html
   - portfolio/*.html (casos de estudio)

   IMÁGENES POR PÁGINA: ver sección al final del archivo
   Mecanismo: body.pg-[slug] → imagen específica

   Las landing pages (body.lp-*) usan components.css
   ============================================================ */


/* ================================================================
   index
   ================================================================ */

/* ============================================================
   index.css — CSS específico de index.html
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC STYLES — index.html ──────────────
       Variables, reset, container, section-label, reveal,
       btn-primary, btn-outline, header, footer, wa-btn
       → ya están en assets/css/style.css, no se repiten aquí
    ─────────────────────────────────────────────────── */

section {
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 48px);
}

.section-title.xl {
  font-size: clamp(34px, 5vw, 68px);
}

/* Logo como texto */
.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

/* ── HERO — DARK ────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/agencia-diseno-web-san-vicente-hfv.webp');
  background-size: cover;
  background-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 13, 51, 0.9) 0%, rgba(0, 26, 94, 0.82) 40%, rgba(0, 43, 153, 0.72) 65%, rgba(0, 18, 64, 0.88) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-glow {
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

body.pg-servicios .hero-text,
body.pg-contacto .hero-text,
body.pg-quienes-somos .hero-text {
      width: 700px;}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero right: card flotante */
.hero-right {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #001a60 0%, #0044cc 50%, #4d94ff 100%);
  position: relative;
}

.hero-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 18, 64, 0.7) 100%);
}

.hero-card-body {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-card-info {}

.hero-card-info small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: 3px;
}

.hero-card-chip {
  background: rgba(0, 102, 255, 0.18);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid rgba(77, 148, 255, 0.2);
  white-space: nowrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.hero-stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-secondary-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  box-shadow: 0 8px 28px rgba(255, 51, 102, 0.45);
  z-index: 1;
}

/* ── SERVICIOS — LIGHT ──────────────────────────── */
.servicios {
  background: var(--white);
  padding: 108px 0 96px;
}

.servicios-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
}

.servicios-intro-left {
  max-width: 620px;
}

.servicios-intro-left .section-title {
  margin-bottom: 0;
}

.servicios-intro-right {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  flex-shrink: 0;
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.servicio-card {
  background: var(--bg);
  border: 1px solid rgba(0, 18, 64, 0.07);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 18, 64, 0.1);
}

.servicio-card.featured {
  grid-row: span 2;
  background: var(--dark);
  padding: 40px;
}

.servicio-card.featured:hover {
  box-shadow: 0 20px 50px rgba(0, 18, 64, 0.35);
}

.servicio-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.servicio-card.featured .servicio-num {
  color: var(--accent);
}

.servicio-img-ph {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  margin-bottom: 28px;
}

.servicio-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.servicio-card.featured .servicio-card-icon {
  background: rgba(77, 148, 255, 0.14);
  color: var(--accent);
}

.servicio-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}

.servicio-card.featured .servicio-card-title {
  font-size: 21px;
  color: #fff;
}

.servicio-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 24px;
}

.servicio-card.featured .servicio-card-text {
  color: rgba(255, 255, 255, 0.6);
}

.servicio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 102, 255, 0.09);
  padding: 5px 12px;
  border-radius: 4px;
}

.servicio-card.featured .tag {
  color: var(--accent);
  background: rgba(77, 148, 255, 0.13);
}

.servicio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 28px;
  transition: gap 0.2s;
}

.servicio-card.featured .servicio-link {
  color: var(--accent);
}

.servicio-link:hover {
  gap: 10px;
}

/* ── PORTFOLIO — DARK ──────────────────────────────  */
.portfolio {
  background: var(--dark);
  padding: 88px 0;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.portfolio-header .section-label {
  color: var(--accent);
}

.portfolio-header .section-title {
  color: #fff;
}

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

.portfolio-grid .item-lg {
  grid-column: span 2;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-ph {
  width: 100%;
  aspect-ratio: 4/3;
}

.portfolio-item.item-lg .portfolio-ph {
  aspect-ratio: 16/9;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 6, 0.481);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-overlay span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.portfolio-overlay strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* ── NOSOTROS — NEUTRAL ─────────────────────────── */
.nosotros {
  background: var(--neutral);
  padding: 108px 0;
}

.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-text .section-title {
  margin-bottom: 24px;
}

.nosotros-lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}

.nosotros-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 14px;
}

.nosotros-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.nosotros-feat {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 18, 64, 0.06);
}

.nosotros-feat-icon {
  color: var(--primary);
  margin-bottom: 12px;
}

.nosotros-feat h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.nosotros-feat p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Imagen decorativa lado derecho */
.nosotros-img-col {
  position: relative;
}

.nosotros-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #001a60 0%, #0044cc 45%, #4d94ff 100%);
  position: relative;
}

.nosotros-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(0deg, rgba(0, 18, 64, 0.88) 0%, transparent 100%);
  color: #fff;
}

.nosotros-img-overlay strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.nosotros-img-overlay span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  display: block;
}

.nosotros-badge {
  position: absolute;
  top: 24px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 102, 255, 0.5);
  z-index: 1;
}

.nosotros-badge strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.nosotros-badge span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── PROCESO — LIGHT ────────────────────────────── */
.proceso {
  background: var(--white);
  padding: 108px 0;
}

.proceso-header {
  text-align: center;
  margin-bottom: 72px;
}

.proceso-header .section-title {
  max-width: 560px;
  margin: 0 auto 16px;
}

.proceso-header p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.proceso-line {
  position: absolute;
  top: 40px;
  left: calc(12.5%);
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3) 20%, rgba(0, 102, 255, 0.3) 80%, transparent);
}

.proceso-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.proceso-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, color 0.25s;
}

.proceso-step:hover .proceso-step-num {
  background: var(--primary);
  color: #fff;
}

.proceso-step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text);
}

.proceso-step p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a5568;
}

/* ── TESTIMONIOS — NEUTRAL ──────────────────────── */
.testimonios {
  background: var(--neutral);
  padding: 96px 0;
}

.testimonios-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonios-header .section-title {
  max-width: 500px;
  margin: 0 auto;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonio-card {
  background: var(--white);
  border: 1px solid rgba(0, 18, 64, 0.07);
  padding: 36px;
  border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testimonio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 18, 64, 0.09);
}

.testimonio-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.testimonio-text {
  font-size: 16px;
  line-height: 1.78;
  color: #2d3748;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 18, 64, 0.07);
}

.testimonio-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonio-nombre {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.testimonio-empresa {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

/* ── NUMEROS — DARK ─────────────────────────────── */
.numeros {
  background: var(--dark);
  padding: 72px 0;
}

.numeros-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
  align-items: center;
}

.numeros-text .section-title.lg {
  color: #000c33;
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 12px;
}

.numeros-text p {
  color: #000c33;
  font-size: 15px;
  line-height: 1.6;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.numero-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.numero-item:last-child {
  border-right: none;
}

.numero-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.numero-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

/* ── CTA FINAL — LIGHT ──────────────────────────── */
.cta-final {
  background: var(--white);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--text);
}

.cta-final-title em {
  font-style: normal;
  color: var(--primary);
}

.cta-final-sub {
  font-size: 18px;
  color: #4a5568;
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.cta-final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-dark:hover {
  background: #002080;
  transform: translateY(-2px);
}

/* ── CONTACTO — DARK ────────────────────────────── */
#contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-header {
  margin-bottom: 60px;
}

.contacto-header .section-label {
  color: var(--accent);
}

.contacto-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.12;
}

.contacto-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e0335a;
}

.form-error-msg {
  font-size: 12px;
  color: #e0335a;
  margin-top: 4px;
}

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

.form-submit-area {
  margin-top: 24px;
}

.form-submit-area .btn-primary {
  width: 100%;
  justify-content: center;
}

.form-global-error {
  margin-top: 12px;
  font-size: 14px;
  color: #ff6b8a;
  display: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: #fff;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

.form-success p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.form-success strong {
  color: #fff;
}

/* Info de contacto */
.contacto-info {
  padding-top: 8px;
}

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

.contacto-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(77, 148, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contacto-info-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contacto-info-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* ── SITUACIÓN — LIGHT ──────────────────────────── */
.situacion {
  background: var(--white);
  padding: 96px 0;
}

.situacion-header {
  text-align: center;
  margin-bottom: 56px;
}

.situacion-header .section-title {
  max-width: 520px;
  margin: 0 auto 16px;
}

.situacion-header p {
  font-size: 16px;
  color: #4a5568;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.65;
}

.situacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.situacion-card {
  background: var(--bg);
  border: 1px solid rgba(0, 18, 64, 0.07);
  border-radius: 14px;
  padding: 48px 40px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.situacion-card:hover {
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 18, 64, 0.1);
  transform: translateY(-4px);
}

.situacion-card-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0, 18, 64, 0.08);
  transition: background 0.25s, color 0.25s;
}

.situacion-card:hover .situacion-card-icon {
  background: var(--primary);
  color: #fff;
}

.situacion-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}

.situacion-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 28px;
}

.situacion-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}

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

/* ── EL PROBLEMA — NEUTRAL ──────────────────────── */
.problema {
  background: var(--neutral);
  padding: 96px 0;
}

.problema-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.problema-header .section-title {
  margin-bottom: 16px;
}

.problema-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5568;
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problema-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 18, 64, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.problema-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 18, 64, 0.09);
}

.problema-card-icon {
  color: var(--secondary);
  margin-bottom: 20px;
}

.problema-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.problema-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

body.pg-servicios .hero-text,
body.pg-contacto .hero-text,
body.pg-quienes-somos .hero-text {
  width: 650px;
}

  .hero-right {
    display: none;
  }

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

  .portfolio-grid .item-lg {
    grid-column: span 2;
  }

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

  .servicio-card.featured {
    grid-row: auto;
  }

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

  .numeros-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .situacion-grid {
    grid-template-columns: 1fr;
  }

  .situacion-card {
    padding: 32px 24px;
  }

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

  .hero-content {
    padding: 120px 5% 80px;
  }


  .hero h1 {
    font-size: 32px;
  }

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

  .portfolio-grid .item-lg {
    grid-column: span 1;
  }

  .servicios-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .servicios-intro-right {
    max-width: 100%;
  }

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

  .servicio-card {
    padding: 28px;
  }

  .nosotros-inner {
    grid-template-columns: 1fr;
  }

  .nosotros-img-col {
    display: none;
  }

  .nosotros-feats {
    grid-template-columns: 1fr;
  }

  .proceso-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .proceso-line {
    display: none;
  }

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

  .testimonio-card {
    padding: 24px;
  }

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

  .cta-final-title {
    font-size: 30px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 480px) {
  .proceso-steps {
    grid-template-columns: 1fr;
  }

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

  .nosotros-feats {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   servicios
   ================================================================ */

/* ============================================================
   servicios.css — CSS específico de servicios.html
   H&FV Web Design
   ============================================================ */

/* ─── PAGE-SPECIFIC CSS — servicios.html ────────────────────────────────── */
/* NO se redefinen: variables, .header, footer, .reveal, .container,       */
/* .btn-primary, .btn-outline, .wa-btn, .hamburger, .mobile-menu,          */
/* nav, .section-label (ya en style.css)                                   */

/* ── SECTION TITLE ─────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.section-title.lg {
  font-size: clamp(26px, 3.2vw, 40px);
}

.section-title.xl {
  font-size: clamp(32px, 4vw, 52px);
}

.section-title.white {
  color: #fff;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-servicios-hfv.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 10, 46, 0.9) 0%, rgba(0, 18, 64, 0.83) 35%, rgba(0, 32, 110, 0.78) 65%, rgba(0, 18, 64, 0.9) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.065) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 148px 3% 100px;
}



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.35);
  padding: 7px 18px;
  border-radius: 3px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 840px;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 530px;
  margin-bottom: 44px;
}

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

.hero-mini-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.hero-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 18px;
  border-radius: 4px;
}

.hero-mini-tag i {
  color: var(--accent);
  width: 14px;
  height: 14px;
}

/* ── S1: DISEÑO WEB — LIGHT (#fff) ─────────── */
#diseno-web {
  background: #fff;
  padding: 100px 0 88px;
}

.s-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}

.s-intro-txt {
  font-size: 17px;
  line-height: 1.7;
  color: #556;
  padding-top: 8px;
}

.servicios-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.srv-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.srv-card:hover {
  box-shadow: 0 14px 44px rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}

.srv-card-img {
  width: 100%;
  aspect-ratio: 4/3;
}

.srv-card-body {
  padding: 28px 28px 32px;
}

.srv-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.srv-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.srv-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #5a6580;
  margin-bottom: 20px;
}

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

.tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  padding: 5px 12px;
  border-radius: 3px;
}

/* ── S2: MARKETING DIGITAL — NEUTRAL (#e8eeff) ─ */
#marketing-digital {
  background: var(--neutral);
  padding: 88px 0 80px;
}

.mkt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mkt-visual {
  position: relative;
}

.mkt-img {
  width: 100%;
  aspect-ratio: 5/6;
  border-radius: 8px;
  background-image: url('../img/Marketing-Digital-y-GestiOn-de-Redes-ZONA-SUR.png');
  background-size: cover;
  background-position: center;
}

.mkt-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  padding: 20px 24px;
  border-radius: 8px;
}

.mkt-badge-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.mkt-badge-lbl {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  display: block;
}

.mkt-content h2 {
  margin-bottom: 18px;
}

.mkt-intro-txt {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 36px;
}

.mkt-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mkt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mkt-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mkt-icon i {
  color: var(--primary);
}

.mkt-item h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.mkt-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a6580;
}

/* ── S3: AUTOMATIZACIÓN IA — LIGHT (#fff) ─── */
#automatizacion {
  background: #fff;
  padding: 100px 0 88px;
}

.ia-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.ia-intro h2 {
  margin-bottom: 18px;
}

.ia-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #556;
}

.ia-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}

.ia-card {
  border: 1px solid var(--neutral2);
  border-radius: 8px;
  padding: 32px 26px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ia-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
}

.ia-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ia-icon i {
  color: var(--primary);
}

.ia-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ia-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #5a6580;
}

.ia-beneficios {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 10px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ia-ben-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-image: url('../img/Automatizacion-con-IA-para-tu-Negocio.jpg');
  background-size: cover;
  background-position: center;
}

.ia-ben-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.15;
}

.ia-ben-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ia-ben-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ia-ben-item i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ia-ben-item span {
  font-size: 15px;
  line-height: 1.55;
  color: #4a5568;
}

/* ── S4: MANTENIMIENTO — DARK (#001240) ─────── */
#mantenimiento {
  background: var(--dark);
  padding: 90px 0 80px;
}

.mant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mant-content .section-label {
  color: var(--accent);
}

.mant-content h2 {
  color: #fff;
  margin-bottom: 18px;
}

.mant-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 36px;
}

.mant-feats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mant-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mant-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(77, 148, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.mant-feat-icon i {
  color: var(--accent);
}

.mant-feat h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.mant-feat p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.48);
}

.mant-plans {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mant-plan {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px 28px;
  transition: border-color 0.2s, background 0.2s;
}

.mant-plan:hover {
  border-color: rgba(77, 148, 255, 0.5);
  background: rgba(0, 102, 255, 0.05);
}

.mant-plan.featured {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

.mant-plan-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.mant-plan h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.mant-plan p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

/* ── S5: PROCESO — NEUTRAL (#e8eeff) ────────── */
#proceso {
  background: var(--neutral);
  padding: 88px 0 80px;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.proceso-hdr h2 {
  margin-bottom: 16px;
}

.proceso-hdr p {
  font-size: 17px;
  line-height: 1.65;
  color: #5a6580;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.proceso-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}

.paso {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}

.paso-num {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

.paso h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  line-height: 1.65;
  color: #5a6580;
}

/* ── S6: POR QUÉ ELEGIRNOS + TESTIMONIOS — LIGHT (#fff) */
#por-que {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-hdr {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.porque-hdr h2 {
  margin-bottom: 16px;
}

.porque-hdr p {
  font-size: 17px;
  line-height: 1.7;
  color: #556;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 88px;
}

.porque-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.25s;
}

.porque-card:hover {
  border-color: var(--accent);
}

.porque-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.porque-icon i {
  color: var(--primary);
}

.porque-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.porque-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #5a6580;
}

/* Testimonios */
.testi-hdr {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 8px;
  padding: 28px;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-stars i {
  color: #f59e0b;
  width: 15px;
  height: 15px;
}

.testi-txt {
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-nombre {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testi-empresa {
  font-size: 13px;
  color: #8a96b0;
}

/* ── S7: CONTACTO + CTA — DARK (#001240) ────── */
#contacto {
  background: var(--dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

#contacto::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contacto-cta-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 1;
}

.contacto-cta-top .section-label {
  color: var(--accent);
}

.contacto-cta-top h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.contacto-cta-top h2 em {
  font-style: normal;
  color: var(--primary);
}

.contacto-cta-top p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.contacto-inner {
  position: relative;
  z-index: 1;
}

.contacto-hdr {
  margin-bottom: 48px;
}

.contacto-hdr h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.contacto-hdr p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group select option {
  background: var(--dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.09);
}

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

.form-submit-area {
  margin-top: 22px;
}

.form-submit-area .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.form-global-error {
  margin-top: 12px;
  font-size: 14px;
  color: #ff6b8a;
  display: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon i {
  color: #fff;
}

.form-success p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.form-success strong {
  color: #fff;
}

/* Contact info */
.contacto-info {
  padding-top: 8px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(77, 148, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.ci-icon i {
  color: var(--accent);
}

.ci-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.ci-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1200px) {
  .ia-cards {
    grid-template-columns: 1fr 1fr;
  }

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



@media (max-width: 768px) {
  .hero-content {
    padding: 120px 5% 80px;
  }

body.pg-servicios .hero-text,
body.pg-contacto .hero-text,
body.pg-quienes-somos .hero-text {
      width: 340px;}

  .hero h1 {
    font-size: 30px;
  }

  .hero-mini-tags {
    gap: 8px;
  }

  .s-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .servicios-cards {
    grid-template-columns: 1fr;
  }

  .mkt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mkt-badge {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }

  .ia-cards {
    grid-template-columns: 1fr;
  }

  .ia-beneficios {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .mant-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .proceso-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .proceso-steps::before {
    display: none;
  }

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

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

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 480px) {
  .proceso-steps {
    grid-template-columns: 1fr;
  }

  .ia-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   quienes-somos
   ================================================================ */

/* ============================================================
   quienes-somos.css — CSS específico de quienes-somos.html
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — quienes-somos.html ──────────────
       Variables, reset, container, section-label, reveal,
       btn-primary, btn-outline, header, footer, wa-btn
       → ya están en assets/css/style.css, no se repiten aquí
    ──────────────────────────────────────────────────── */

section {
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(26px, 3.2vw, 44px);
}

.section-title.xl {
  font-size: clamp(32px, 5vw, 66px);
}

/* Logo texto */
.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

/* ─────────────────────────────────────────────────── */
/* 1 — HERO · DARK                                     */
/* ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* REEMPLAZAR: equipo-hfv-web-design-san-vicente-buenos-aires.jpg */
  background: linear-gradient(135deg, #000c33 0%, #001a5e 40%, #002399 70%, #000c33 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
      rgba(0, 12, 51, 0.93) 0%,
      rgba(0, 26, 94, 0.85) 40%,
      rgba(0, 43, 153, 0.75) 65%,
      rgba(0, 18, 64, 0.9) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-glow {
  position: absolute;
  top: -60px;
  right: 8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 3% 120px;
}


.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 820px;
}

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

.hero-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.hero-scroll span {
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.hero-scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scroll-bar 1.8s ease-in-out infinite;
}

@keyframes scroll-bar {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ─────────────────────────────────────────────────── */
/* 2 — HISTORIA · LIGHT                                */
/* ─────────────────────────────────────────────────── */
.historia {
  background: #ffffff;
  padding: 112px 0 120px;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.historia-img-wrap {
  position: relative;
}

.historia-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  /* REEMPLAZAR: equipo-hfv-web-design-san-vicente-buenos-aires.jpg */
  background-image: url('../img/imgi_96_468921436_10164965541144517_7237834791593051402_n.jpg');
  margin-bottom: 20px;
}

.historia-img1 {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  /* REEMPLAZAR: equipo-hfv-web-design-san-vicente-buenos-aires.jpg */
  background-image: url('../img/503464641_3452009004936535_4546471469439551534_n.jpg');
  margin-bottom: 20px;
}

.historia-img2 {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  /* REEMPLAZAR: equipo-hfv-web-design-san-vicente-buenos-aires.jpg */
  background-image: url('../img/imgi_96_471665347_10165155721414517_5851669824507245591_n.jpg');
  margin-bottom: 20px;
}

.historia-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.35);
}

.historia-badge strong {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.historia-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.85;
}

.historia-content .section-title {
  margin-bottom: 22px;
}

.historia-content p {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(0, 18, 64, 0.68);
  margin-bottom: 18px;
}

.historia-subs {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.historia-sub {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.historia-sub-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.historia-sub h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.historia-sub p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0, 18, 64, 0.62);
  margin: 0;
}

/* ─────────────────────────────────────────────────── */
/* 3 — NÚMEROS · NEUTRAL                               */
/* ─────────────────────────────────────────────────── */
.numeros {
  background: var(--neutral);
  padding: 80px 0 96px;
}

.numeros-header {
  text-align: center;
  margin-bottom: 56px;
}

.numeros-header .section-title {
  margin-top: 10px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.numero-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(0, 102, 255, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.numero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0, 102, 255, 0.13);
}

.numero-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}

.numero-value {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.numero-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ─────────────────────────────────────────────────── */
/* 4 — ESPECIALIZACIÓN · LIGHT                         */
/* ─────────────────────────────────────────────────── */
.especializacion {
  background: #ffffff;
  padding: 120px 0 100px;
}

.espec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.espec-content .section-title {
  margin-bottom: 18px;
}

.espec-content>p {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(0, 18, 64, 0.68);
  margin-bottom: 30px;
}

.espec-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.espec-item {
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  background: rgba(0, 102, 255, 0.025);
  border-radius: 0 8px 8px 0;
}

.espec-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.espec-item p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0, 18, 64, 0.62);
}

.espec-visuals {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.espec-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.espec-img.tall {
  aspect-ratio: 4/3;
}

.espec-img.wide {
  aspect-ratio: 16/9;
}

/* REEMPLAZAR: diseño-web-para-empresas-argentina-hfv-web-design.jpg */
.espec-img-1 {
  background: linear-gradient(135deg, #001a60 0%, #0044cc 55%, #4d94ff 100%);
}

/* REEMPLAZAR: pagina-web-para-constructoras-buenos-aires-hfv.jpg */
.espec-img-2 {
  background: linear-gradient(135deg, #001240 0%, #002080 35%, #ff3366 100%);
}

/* ─────────────────────────────────────────────────── */
/* 5 — VALORES · DARK                                  */
/* ─────────────────────────────────────────────────── */
.valores {
  background: var(--dark);
  padding: 104px 0 100px;
  position: relative;
  overflow: hidden;
}

.valores::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
}

.valores::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.07) 0%, transparent 70%);
}

.valores-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.valores-header .section-label {
  color: var(--accent);
}

.valores-header .section-title {
  color: #fff;
  margin-top: 10px;
}

.valores-header p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  max-width: 520px;
  margin: 14px auto 0;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.valor-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 30px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.valor-card:hover {
  background: rgba(0, 102, 255, 0.09);
  border-color: rgba(0, 102, 255, 0.32);
  transform: translateY(-4px);
}

.valor-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.valor-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.valor-card p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.48);
}

/* ─────────────────────────────────────────────────── */
/* 6 — SERVICIOS ECOSISTEMA · LIGHT                    */
/* ─────────────────────────────────────────────────── */
.servicios-eco {
  background: #ffffff;
  padding: 120px 0 100px;
}

.seco-header {
  margin-bottom: 60px;
  max-width: 780px;
}

.seco-header .section-title {
  margin-top: 10px;
  margin-bottom: 14px;
}

.seco-header p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.62);
}

.seco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}

.seco-card {
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  padding: 30px 26px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.seco-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1);
  transform: translateY(-3px);
}

.seco-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}

.seco-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.seco-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0, 18, 64, 0.62);
}

.seco-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.seco-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  /* REEMPLAZAR: automatizacion-ia-y-marketing-digital-para-pymes-argentina.jpg */
  background: linear-gradient(135deg, #001240 0%, #0066ff 50%, #4d94ff 100%);
}

.seco-cta-box {
  padding: 38px 36px;
  background: rgba(0, 102, 255, 0.035);
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 12px;
}

.seco-cta-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.seco-cta-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 18, 64, 0.62);
  margin-bottom: 22px;
}

/* ─────────────────────────────────────────────────── */
/* 7 — POR QUÉ ELEGIRNOS · NEUTRAL                     */
/* ─────────────────────────────────────────────────── */
.por-que {
  background: var(--neutral);
  padding: 104px 0 112px;
}

.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pq-content .section-title {
  margin-top: 10px;
  margin-bottom: 16px;
}

.pq-content>p {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(0, 18, 64, 0.68);
  margin-bottom: 32px;
}

.diferenciadores {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diferenciador {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 102, 255, 0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.diferenciador:hover {
  border-color: rgba(0, 102, 255, 0.25);
  transform: translateX(4px);
}

.dif-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.diferenciador h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.diferenciador p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0, 18, 64, 0.6);
}

.pq-visual {
  position: relative;
}

.pq-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8e4ff 0%, #b0c8ff 50%, #8ab4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.pq-img-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  width: 100%;
}

.pq-stat-mini {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.pq-stat-mini strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.pq-stat-mini span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 18, 64, 0.65);
}

.pq-quote {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 280px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.pq-quote p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  font-style: italic;
}

.pq-quote strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────────── */
/* 8 — CONTACTO · LIGHT                                */
/* ─────────────────────────────────────────────────── */
.contacto {
  background: #ffffff;
  padding: 120px 0 140px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-info .section-title {
  margin-top: 10px;
  margin-bottom: 18px;
}

.contacto-info>p {
  font-size: 16px;
  line-height: 1.82;
  color: rgba(0, 18, 64, 0.65);
  margin-bottom: 36px;
}

.contacto-detalles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacto-detalle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.cd-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  display: block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.cd-text span {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.65);
}

/* Formulario */
.form-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid rgba(0, 18, 64, 0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

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

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

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit-btn:hover:not(:disabled) {
  background: #0055d4;
  transform: translateY(-2px);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-error-msg {
  color: #e53e3e;
  font-size: 13px;
  margin-top: 10px;
  display: none;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}

.form-success .s-icon {
  color: #22c55e;
  margin-bottom: 14px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────── */
/* RESPONSIVE                                          */
/* ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .historia-grid,
  .espec-grid,
  .pq-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .historia-badge {
    right: 0;
    bottom: -16px;
  }

  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

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

  .seco-bottom {
    grid-template-columns: 1fr;
  }

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

  .espec-visuals {
    display: none;
  }

  .pq-quote {
    position: static;
    margin-top: 18px;
    max-width: 100%;
  }

  .historia {
    padding: 80px 0 90px;
  }

  .especializacion {
    padding: 80px 0;
  }

  .valores {
    padding: 72px 0;
  }

  .servicios-eco {
    padding: 80px 0 72px;
  }

  .por-que {
    padding: 80px 0;
  }

  .contacto {
    padding: 80px 0 100px;
  }

  .form-card {
    padding: 26px 20px;
  }
}

/* ================================================================
   contacto
   ================================================================ */

/* ============================================================
   contacto.css — CSS específico de contacto.html
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — contacto.html ──────────────────────
       Variables, reset, container, section-label, reveal,
       btn-primary, btn-outline, header, footer, wa-btn
       → ya están en assets/css/style.css, no se repiten aquí
    ──────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(26px, 3.2vw, 44px);
}

.section-title.xl {
  font-size: clamp(32px, 5vw, 66px);
}

.section-title.xxl {
  font-size: clamp(38px, 6vw, 76px);
}

/* Logo texto */
.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

/* ─────────────────────────────────────────────────────── */
/* 1 — HERO · DARK                                         */
/* ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* REEMPLAZAR: contacto-agencia-diseno-web-san-vicente-buenos-aires.jpg */
  background: linear-gradient(135deg, #000c33 0%, #001a5e 40%, #002399 70%, #000c33 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
      rgba(0, 12, 51, 0.92) 0%,
      rgba(0, 26, 94, 0.82) 45%,
      rgba(0, 43, 153, 0.70) 70%,
      rgba(0, 18, 64, 0.88) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-glow {
  position: absolute;
  top: -80px;
  right: 6%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 68%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.28);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-eyebrow i {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--primary);
  display: inline-block;
}

.hero-desc {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 44px;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────── */
/* 2 — FORM SECTION · LIGHT                               */
/* ─────────────────────────────────────────────────────── */
.form-section {
  background: #ffffff;
  padding: 100px 0 90px;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

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

.form-info p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid var(--neutral2);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.07);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-card-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-card-body a,
.contact-card-body span {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.contact-card-body a:hover {
  color: var(--primary);
}

/* ── Form ── */
.form-box {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 12px;
  padding: 44px 40px;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-subheading {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.5);
  margin-bottom: 32px;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
}

.field label .req {
  color: var(--secondary);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--neutral2);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.10);
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: var(--secondary);
}

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

.form-error-msg {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 14px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.visible {
  display: block;
}

.form-success i {
  width: 52px;
  height: 52px;
  color: #16a34a;
  margin: 0 auto 16px;
  display: block;
}

.form-success p {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.btn-send {
  width: 100%;
  margin-top: 22px;
  justify-content: center;
}

.btn-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.process-step {
  display: flex;
  gap: 18px;
  padding-bottom: 24px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--neutral2);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.step-text span {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────── */
/* 3 — SERVICIOS · NEUTRAL                                 */
/* ─────────────────────────────────────────────────────── */
.servicios-section {
  background: var(--neutral);
  padding: 96px 0 100px;
}

.servicios-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.servicios-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-top: 20px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.servicio-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 102, 255, 0.08);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.servicio-card:hover {
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.10);
  border-color: rgba(0, 102, 255, 0.22);
  transform: translateY(-3px);
}

.servicio-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.servicio-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.servicio-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.servicio-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.servicio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}

.servicio-link:hover {
  gap: 10px;
}

.servicio-link i {
  width: 14px;
  height: 14px;
}

/* Image placeholder in servicios */
.servicios-img-placeholder {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/5;
  position: relative;
  /* REEMPLAZAR: diseno-web-empresas-construccion-san-vicente.jpg */
  background: linear-gradient(120deg, var(--dark) 0%, rgba(0, 43, 153, 1) 50%, var(--dark) 100%);
}

.servicios-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.servicios-img-placeholder span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────── */
/* 4 — POR QUÉ ELEGIRNOS · LIGHT                           */
/* ─────────────────────────────────────────────────────── */
.porque-section {
  background: #fff;
  padding: 100px 0 96px;
}

.porque-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.porque-media {
  position: relative;
}

.porque-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  /* REEMPLAZAR: equipo-hfv-web-design-san-vicente.jpg */
  background: linear-gradient(140deg, #001240 0%, #0033aa 50%, #001a70 100%);
}

.porque-img-main::after {
  content: 'equipo-hfv-web-design-san-vicente.jpg';
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.porque-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.35);
}

.porque-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.porque-badge span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.porque-content h2 {
  margin-bottom: 20px;
}

.porque-content>p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.7;
  margin-bottom: 40px;
}

.diferencial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.diferencial-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diferencial-icon i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.diferencial-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.diferencial-body p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.58);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────── */
/* 5 — FAQ · DARK                                          */
/* ─────────────────────────────────────────────────────── */
.faq-section {
  background: var(--dark);
  padding: 96px 0 100px;
}

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

.faq-sidebar h2 {
  color: #fff;
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 32px;
}

.faq-cta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
}

.faq-cta-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
}


.faq-question span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.faq-question i {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────── */
/* RESPONSIVE                                              */
/* ─────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .form-layout {
    gap: 48px;
  }

  .porque-layout {
    gap: 56px;
  }

  .faq-layout {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-box {
    padding: 32px 24px;
  }

  .field-group {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

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

  .servicios-img-placeholder {
    aspect-ratio: 16/7;
  }

  .porque-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .porque-badge {
    bottom: -16px;
    right: 16px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ================================================================
   diseno-web-constructoras
   ================================================================ */

/* ============================================================
   diseno-web-constructoras.css
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — servicios/diseno-web-para-constructoras.html
       style.css provee: variables, reset, container, section-label,
       reveal, btn-primary, btn-outline, header, footer, wa-btn
    ─────────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 46px);
}

.section-title.md {
  font-size: clamp(24px, 2.6vw, 36px);
}

/* ── HERO — DARK ─────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.10);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.07);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
}

.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-img {
  aspect-ratio: 16/9;
  background-image: url('../img/hero-diseno-web-constructoras.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
}

.hero-badge-float small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
}

/* ── POR QUÉ — LIGHT ──────────────────────────── */
.s-porque {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.porque-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 18, 64, 0.7);
  margin-top: 24px;
  margin-bottom: 40px;
}

.porque-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bul-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.bul-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.bul-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.bul-desc {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.65;
}

.porque-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 14px;
  padding: 32px 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.55;
}

.porque-img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  background-image: url('/images_ref/cards/construccion-proyecto.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 102, 255, 0.2);
}

.porque-img svg {
  width: 72px;
  height: 72px;
  stroke: rgba(0, 102, 255, 0.22);
}

/* ── TIPOS DE CONSTRUCTORAS — NEUTRAL ─────────── */
.s-tipos {
  background: var(--neutral);
  padding: 90px 0;
}

.tipos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.tipos-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tipo-card {
  background: #fff;
  border: 1px solid var(--neutral2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 18, 64, 0.1);
}

.tipo-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipo-card-img svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.25);
}

.tipo-card-body {
  padding: 28px;
}

.tipo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tipo-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.tipo-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tipo-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tipo-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.2s;
}

.tipo-card:hover .tipo-link svg {
  transform: translateX(4px);
}

/* ── QUÉ INCLUYE — LIGHT ─────────────────────── */
.s-incluye {
  background: #fff;
  padding: 100px 0;
}

.incluye-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.incluye-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.incluye-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--neutral2);
}

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

.incluye-item:nth-child(even) .incluye-text {
  order: 2;
}

.incluye-item:nth-child(even) .incluye-visual {
  order: 1;
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.incluye-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.incluye-text p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.07);
  color: var(--primary);
}

.incluye-visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incluye-visual svg {
  width: 72px;
  height: 72px;
}

/* ── PROCESO — DARK ──────────────────────────── */
.s-proceso {
  background: var(--dark);
  padding: 100px 0;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.proceso-hdr .section-title {
  color: #fff;
}

.proceso-hdr p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 20px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.paso {
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}

.paso:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.paso:hover .paso-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.paso h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ── TESTIMONIOS — NEUTRAL ───────────────────── */
.s-testimonios {
  background: var(--neutral);
  padding: 80px 0;
}

.test-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.test-hdr .section-title {
  margin-bottom: 12px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--neutral2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 18, 64, 0.08);
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.test-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.test-role {
  font-size: 12px;
  color: rgba(0, 18, 64, 0.45);
  margin-top: 2px;
}

/* ── FAQ — LIGHT ─────────────────────────────── */
.s-faq {
  background: #fff;
  padding: 100px 0;
}

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

.faq-sidebar .section-title {
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ── CONTACTO / POR QUÉ ELEGIR — DARK ───────── */
.s-contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contacto-left h2 span {
  color: var(--primary);
}

.contacto-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 40px;
}

.difs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dif-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.dif-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.dif-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.contacto-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
}

.contacto-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contacto-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

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

.form-err {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 18px 24px;
  justify-content: center;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.form-ok {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-ok svg {
  width: 52px;
  height: 52px;
  stroke: #22c55e;
  margin-bottom: 16px;
}

.form-ok p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.form-srv-err {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 12px;
  display: none;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 5% 80px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .incluye-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .incluye-item:nth-child(even) .incluye-text {
    order: 0;
  }

  .incluye-item:nth-child(even) .incluye-visual {
    order: 1;
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contacto-right {
    padding: 28px 20px;
  }
}

/* ================================================================
   diseno-web-empresas
   ================================================================ */

/* ============================================================
   diseno-web-empresas.css
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — servicios/automatizacion-con-inteligencia-artificial.html
       style.css provee: variables, reset, container, section-label,
       reveal, btn-primary, btn-outline, header, footer, wa-btn
    ─────────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 46px);
}

.section-title.md {
  font-size: clamp(24px, 2.6vw, 36px);
}

/* ── HERO — DARK ─────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.10);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.07);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
}

.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-img {
  aspect-ratio: 16/9;
  background-image: url('../img/hero-diseno-web-empresas.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
}

.hero-badge-float small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
}

/* ── POR QUÉ — LIGHT ──────────────────────────── */
.s-porque {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.porque-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 18, 64, 0.7);
  margin-top: 24px;
  margin-bottom: 40px;
}

.porque-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bul-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.bul-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.bul-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.bul-desc {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.65;
}

.porque-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 14px;
  padding: 32px 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.55;
}

.porque-img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  background-image: url('/images_ref/cards/automatizacion-ia.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 102, 255, 0.2);
}

.porque-img svg {
  width: 72px;
  height: 72px;
  stroke: rgba(0, 102, 255, 0.22);
}

/* ── TIPOS DE CLIENTES — NEUTRAL ─────────────── */
.s-tipos {
  background: var(--neutral);
  padding: 90px 0;
}

.tipos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.tipos-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tipo-card {
  background: #fff;
  border: 1px solid var(--neutral2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 18, 64, 0.1);
}

.tipo-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipo-card-img svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.25);
}

.tipo-card-body {
  padding: 28px;
}

.tipo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tipo-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.tipo-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tipo-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tipo-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.2s;
}

.tipo-card:hover .tipo-link svg {
  transform: translateX(4px);
}

/* ── QUÉ INCLUYE — LIGHT ─────────────────────── */
.s-incluye {
  background: #fff;
  padding: 100px 0;
}

.incluye-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.incluye-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.incluye-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--neutral2);
}

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

.incluye-item:nth-child(even) .incluye-text {
  order: 2;
}

.incluye-item:nth-child(even) .incluye-visual {
  order: 1;
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.incluye-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.incluye-text p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.07);
  color: var(--primary);
}

.incluye-visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incluye-visual svg {
  width: 72px;
  height: 72px;
}

/* ── PROCESO — DARK ──────────────────────────── */
.s-proceso {
  background: var(--dark);
  padding: 100px 0;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.proceso-hdr .section-title {
  color: #fff;
}

.proceso-hdr p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 20px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.paso {
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}

.paso:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.paso:hover .paso-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.paso h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ── TESTIMONIOS — NEUTRAL ───────────────────── */
.s-testimonios {
  background: var(--neutral);
  padding: 80px 0;
}

.test-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.test-hdr .section-title {
  margin-bottom: 12px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--neutral2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 18, 64, 0.08);
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.test-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.test-role {
  font-size: 12px;
  color: rgba(0, 18, 64, 0.45);
  margin-top: 2px;
}

/* ── FAQ — LIGHT ─────────────────────────────── */
.s-faq {
  background: #fff;
  padding: 100px 0;
}

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

.faq-sidebar .section-title {
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ── CONTACTO / POR QUÉ ELEGIR — DARK ───────── */
.s-contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contacto-left h2 span {
  color: var(--primary);
}

.contacto-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 40px;
}

.difs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dif-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.dif-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.dif-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.contacto-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
}

.contacto-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contacto-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

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

.form-group select option {
  background: var(--dark);
  color: #fff;
}

.form-err {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 18px 24px;
  justify-content: center;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.form-ok {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-ok svg {
  width: 52px;
  height: 52px;
  stroke: #22c55e;
  margin-bottom: 16px;
}

.form-ok p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.form-srv-err {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 12px;
  display: none;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 5% 80px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .incluye-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .incluye-item:nth-child(even) .incluye-text {
    order: 0;
  }

  .incluye-item:nth-child(even) .incluye-visual {
    order: 1;
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contacto-right {
    padding: 28px 20px;
  }
}

/* ================================================================
   automatizacion-ia
   ================================================================ */

/* ============================================================
   automatizacion-ia.css
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — servicios/automatizacion-con-inteligencia-artificial.html
       style.css provee: variables, reset, container, section-label,
       reveal, btn-primary, btn-outline, header, footer, wa-btn
    ─────────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 46px);
}

.section-title.md {
  font-size: clamp(24px, 2.6vw, 36px);
}

/* ── HERO — DARK ─────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.10);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.07);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
}

.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-img {
  aspect-ratio: 16/9;
  background-image: url('../img/hero-automatizacion-ia.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
}

.hero-badge-float small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
}

/* ── POR QUÉ — LIGHT ──────────────────────────── */
.s-porque {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.porque-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 18, 64, 0.7);
  margin-top: 24px;
  margin-bottom: 40px;
}

.porque-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bul-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.bul-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.bul-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.bul-desc {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.65;
}

.porque-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 14px;
  padding: 32px 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.55;
}

.porque-img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  background-image: url('/images_ref/cards/automatizacion-ia.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 102, 255, 0.2);
}

.porque-img svg {
  width: 72px;
  height: 72px;
  stroke: rgba(0, 102, 255, 0.22);
}

/* ── TIPOS DE CLIENTES — NEUTRAL ─────────────── */
.s-tipos {
  background: var(--neutral);
  padding: 90px 0;
}

.tipos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.tipos-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tipo-card {
  background: #fff;
  border: 1px solid var(--neutral2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 18, 64, 0.1);
}

.tipo-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipo-card-img svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.25);
}

.tipo-card-body {
  padding: 28px;
}

.tipo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tipo-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.tipo-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tipo-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tipo-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.2s;
}

.tipo-card:hover .tipo-link svg {
  transform: translateX(4px);
}

/* ── QUÉ INCLUYE — LIGHT ─────────────────────── */
.s-incluye {
  background: #fff;
  padding: 100px 0;
}

.incluye-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.incluye-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.incluye-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--neutral2);
}

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

.incluye-item:nth-child(even) .incluye-text {
  order: 2;
}

.incluye-item:nth-child(even) .incluye-visual {
  order: 1;
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.incluye-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.incluye-text p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.07);
  color: var(--primary);
}

.incluye-visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incluye-visual svg {
  width: 72px;
  height: 72px;
}

/* ── PROCESO — DARK ──────────────────────────── */
.s-proceso {
  background: var(--dark);
  padding: 100px 0;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.proceso-hdr .section-title {
  color: #fff;
}

.proceso-hdr p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 20px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.paso {
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}

.paso:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.paso:hover .paso-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.paso h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ── TESTIMONIOS — NEUTRAL ───────────────────── */
.s-testimonios {
  background: var(--neutral);
  padding: 80px 0;
}

.test-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.test-hdr .section-title {
  margin-bottom: 12px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--neutral2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 18, 64, 0.08);
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.test-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.test-role {
  font-size: 12px;
  color: rgba(0, 18, 64, 0.45);
  margin-top: 2px;
}

/* ── FAQ — LIGHT ─────────────────────────────── */
.s-faq {
  background: #fff;
  padding: 100px 0;
}

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

.faq-sidebar .section-title {
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ── CONTACTO / POR QUÉ ELEGIR — DARK ───────── */
.s-contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contacto-left h2 span {
  color: var(--primary);
}

.contacto-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 40px;
}

.difs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dif-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.dif-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.dif-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.contacto-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
}

.contacto-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contacto-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

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

.form-group select option {
  background: var(--dark);
  color: #fff;
}

.form-err {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 18px 24px;
  justify-content: center;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.form-ok {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-ok svg {
  width: 52px;
  height: 52px;
  stroke: #22c55e;
  margin-bottom: 16px;
}

.form-ok p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.form-srv-err {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 12px;
  display: none;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 5% 80px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .incluye-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .incluye-item:nth-child(even) .incluye-text {
    order: 0;
  }

  .incluye-item:nth-child(even) .incluye-visual {
    order: 1;
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contacto-right {
    padding: 28px 20px;
  }
}

/* ================================================================
   gestion-redes-sociales
   ================================================================ */

/* ============================================================
   gestion-redes-sociales.css
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — servicios/gestion-de-redes-sociales.html
       style.css provee: variables, reset, container, section-label,
       reveal, btn-primary, btn-outline, header, footer, wa-btn
    ─────────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 46px);
}

.section-title.md {
  font-size: clamp(24px, 2.6vw, 36px);
}

/* ── HERO — DARK ─────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.10);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.07);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
}

.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-img {
  aspect-ratio: 16/9;
  background-image: url('../img/hero-gestion-redes-sociales.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
}

.hero-badge-float small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
}

/* ── POR QUÉ — LIGHT ──────────────────────────── */
.s-porque {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.porque-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 18, 64, 0.7);
  margin-top: 24px;
  margin-bottom: 40px;
}

.porque-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bul-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.bul-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.bul-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.bul-desc {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.65;
}

.porque-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 14px;
  padding: 32px 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.55;
}

.porque-img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  background-image: url('/images_ref/cards/automatizacion-ia.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 102, 255, 0.2);
}

.porque-img svg {
  width: 72px;
  height: 72px;
  stroke: rgba(0, 102, 255, 0.22);
}

/* ── TIPOS DE CLIENTES — NEUTRAL ─────────────── */
.s-tipos {
  background: var(--neutral);
  padding: 90px 0;
}

.tipos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.tipos-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tipo-card {
  background: #fff;
  border: 1px solid var(--neutral2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 18, 64, 0.1);
}

.tipo-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipo-card-img svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.25);
}

.tipo-card-body {
  padding: 28px;
}

.tipo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tipo-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.tipo-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tipo-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tipo-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.2s;
}

.tipo-card:hover .tipo-link svg {
  transform: translateX(4px);
}

/* ── QUÉ INCLUYE — LIGHT ─────────────────────── */
.s-incluye {
  background: #fff;
  padding: 100px 0;
}

.incluye-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.incluye-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.incluye-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--neutral2);
}

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

.incluye-item:nth-child(even) .incluye-text {
  order: 2;
}

.incluye-item:nth-child(even) .incluye-visual {
  order: 1;
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.incluye-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.incluye-text p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.07);
  color: var(--primary);
}

.incluye-visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incluye-visual svg {
  width: 72px;
  height: 72px;
}

/* ── PROCESO — DARK ──────────────────────────── */
.s-proceso {
  background: var(--dark);
  padding: 100px 0;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.proceso-hdr .section-title {
  color: #fff;
}

.proceso-hdr p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 20px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.paso {
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}

.paso:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.paso:hover .paso-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.paso h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ── TESTIMONIOS — NEUTRAL ───────────────────── */
.s-testimonios {
  background: var(--neutral);
  padding: 80px 0;
}

.test-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.test-hdr .section-title {
  margin-bottom: 12px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--neutral2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 18, 64, 0.08);
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.test-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.test-role {
  font-size: 12px;
  color: rgba(0, 18, 64, 0.45);
  margin-top: 2px;
}

/* ── FAQ — LIGHT ─────────────────────────────── */
.s-faq {
  background: #fff;
  padding: 100px 0;
}

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

.faq-sidebar .section-title {
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ── CONTACTO / POR QUÉ ELEGIR — DARK ───────── */
.s-contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contacto-left h2 span {
  color: var(--primary);
}

.contacto-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 40px;
}

.difs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dif-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.dif-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.dif-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.contacto-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
}

.contacto-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contacto-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

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

.form-group select option {
  background: var(--dark);
  color: #fff;
}

.form-err {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 18px 24px;
  justify-content: center;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.form-ok {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-ok svg {
  width: 52px;
  height: 52px;
  stroke: #22c55e;
  margin-bottom: 16px;
}

.form-ok p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.form-srv-err {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 12px;
  display: none;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 5% 80px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .incluye-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .incluye-item:nth-child(even) .incluye-text {
    order: 0;
  }

  .incluye-item:nth-child(even) .incluye-visual {
    order: 1;
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contacto-right {
    padding: 28px 20px;
  }
}

/* ================================================================
   mantenimiento-paginas-web
   ================================================================ */

/* ============================================================
   mantenimiento-paginas-web.css
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — servicios/mantenimiento-de-paginas-web.html
       style.css provee: variables, reset, container, section-label,
       reveal, btn-primary, btn-outline, header, footer, wa-btn
    ─────────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 46px);
}

.section-title.md {
  font-size: clamp(24px, 2.6vw, 36px);
}

/* ── HERO — DARK ─────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.10);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.07);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
}

.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-img {
  aspect-ratio: 16/9;
  background-image: url('../img/hero-mantenimiento-web.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
}

.hero-badge-float small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
}

/* ── POR QUÉ — LIGHT ──────────────────────────── */
.s-porque {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.porque-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 18, 64, 0.7);
  margin-top: 24px;
  margin-bottom: 40px;
}

.porque-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bul-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.bul-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.bul-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.bul-desc {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.65;
}

.porque-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 14px;
  padding: 32px 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.55;
}

.porque-img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  background-image: url('/images_ref/cards/construccion-proyecto.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 102, 255, 0.2);
}

.porque-img svg {
  width: 72px;
  height: 72px;
  stroke: rgba(0, 102, 255, 0.22);
}

/* ── TIPOS DE CLIENTES — NEUTRAL ─────────────── */
.s-tipos {
  background: var(--neutral);
  padding: 90px 0;
}

.tipos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.tipos-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tipo-card {
  background: #fff;
  border: 1px solid var(--neutral2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 18, 64, 0.1);
}

.tipo-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipo-card-img svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.25);
}

.tipo-card-body {
  padding: 28px;
}

.tipo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tipo-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.tipo-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tipo-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tipo-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.2s;
}

.tipo-card:hover .tipo-link svg {
  transform: translateX(4px);
}

/* ── QUÉ INCLUYE — LIGHT ─────────────────────── */
.s-incluye {
  background: #fff;
  padding: 100px 0;
}

.incluye-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.incluye-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.incluye-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--neutral2);
}

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

.incluye-item:nth-child(even) .incluye-text {
  order: 2;
}

.incluye-item:nth-child(even) .incluye-visual {
  order: 1;
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.incluye-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.incluye-text p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.07);
  color: var(--primary);
}

.incluye-visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incluye-visual svg {
  width: 72px;
  height: 72px;
}

/* ── PROCESO — DARK ──────────────────────────── */
.s-proceso {
  background: var(--dark);
  padding: 100px 0;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.proceso-hdr .section-title {
  color: #fff;
}

.proceso-hdr p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 20px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.paso {
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}

.paso:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.paso:hover .paso-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.paso h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ── TESTIMONIOS — NEUTRAL ───────────────────── */
.s-testimonios {
  background: var(--neutral);
  padding: 80px 0;
}

.test-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.test-hdr .section-title {
  margin-bottom: 12px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--neutral2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 18, 64, 0.08);
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.test-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.test-role {
  font-size: 12px;
  color: rgba(0, 18, 64, 0.45);
  margin-top: 2px;
}

/* ── FAQ — LIGHT ─────────────────────────────── */
.s-faq {
  background: #fff;
  padding: 100px 0;
}

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

.faq-sidebar .section-title {
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ── CONTACTO / POR QUÉ ELEGIR — DARK ───────── */
.s-contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contacto-left h2 span {
  color: var(--primary);
}

.contacto-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 40px;
}

.difs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dif-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.dif-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.dif-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.contacto-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
}

.contacto-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contacto-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

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

.form-group select option {
  background: var(--dark);
  color: #fff;
}

.form-err {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 18px 24px;
  justify-content: center;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.form-ok {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-ok svg {
  width: 52px;
  height: 52px;
  stroke: #22c55e;
  margin-bottom: 16px;
}

.form-ok p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.form-srv-err {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 12px;
  display: none;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 5% 80px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .incluye-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .incluye-item:nth-child(even) .incluye-text {
    order: 0;
  }

  .incluye-item:nth-child(even) .incluye-visual {
    order: 1;
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contacto-right {
    padding: 28px 20px;
  }
}

/* ================================================================
   webs-monotributos
   ================================================================ */

/* ============================================================
   webs-monotributos.css
   H&FV Web Design
   ============================================================ */

/* ── PAGE-SPECIFIC — servicios/automatizacion-con-inteligencia-artificial.html
       style.css provee: variables, reset, container, section-label,
       reveal, btn-primary, btn-outline, header, footer, wa-btn
    ─────────────────────────────────────────────────────────── */

section {
  width: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.section-title.lg {
  font-size: clamp(28px, 3.5vw, 46px);
}

.section-title.md {
  font-size: clamp(24px, 2.6vw, 36px);
}

/* ── HERO — DARK ─────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.10);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.07);
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 160px 5% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(77, 148, 255, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-right {
  position: relative;
}

.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-img {
  aspect-ratio: 16/9;
  background-image: url('../img/hero-webs-monotributos.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-img svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
}

.hero-badge-float small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  font-size: 11px;
}

/* ── POR QUÉ — LIGHT ──────────────────────────── */
.s-porque {
  background: #fff;
  padding: 100px 0 80px;
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.porque-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 18, 64, 0.7);
  margin-top: 24px;
  margin-bottom: 40px;
}

.porque-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bul-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.bul-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.bul-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.bul-desc {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.65;
}

.porque-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--neutral2);
  border-radius: 14px;
  padding: 32px 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.6);
  line-height: 1.55;
}

.porque-img {
  border-radius: 14px;
  aspect-ratio: 4/3;
  background-image: url('/images_ref/cards/automatizacion-ia.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 102, 255, 0.2);
}

.porque-img svg {
  width: 72px;
  height: 72px;
  stroke: rgba(0, 102, 255, 0.22);
}

/* ── TIPOS DE CLIENTES — NEUTRAL ─────────────── */
.s-tipos {
  background: var(--neutral);
  padding: 90px 0;
}

.tipos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.tipos-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tipo-card {
  background: #fff;
  border: 1px solid var(--neutral2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 18, 64, 0.1);
}

.tipo-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipo-card-img svg {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.25);
}

.tipo-card-body {
  padding: 28px;
}

.tipo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tipo-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.tipo-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.tipo-card p {
  font-size: 14px;
  color: rgba(0, 18, 64, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tipo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tipo-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  transition: transform 0.2s;
}

.tipo-card:hover .tipo-link svg {
  transform: translateX(4px);
}

/* ── QUÉ INCLUYE — LIGHT ─────────────────────── */
.s-incluye {
  background: #fff;
  padding: 100px 0;
}

.incluye-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.incluye-header p {
  font-size: 17px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.75;
  margin-top: 20px;
}

.incluye-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--neutral2);
}

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

.incluye-item:nth-child(even) .incluye-text {
  order: 2;
}

.incluye-item:nth-child(even) .incluye-visual {
  order: 1;
}

.incluye-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.incluye-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.incluye-text p {
  font-size: 16px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 102, 255, 0.07);
  color: var(--primary);
}

.incluye-visual {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incluye-visual svg {
  width: 72px;
  height: 72px;
}

/* ── PROCESO — DARK ──────────────────────────── */
.s-proceso {
  background: var(--dark);
  padding: 100px 0;
}

.proceso-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.proceso-hdr .section-title {
  color: #fff;
}

.proceso-hdr p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 20px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.paso {
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}

.paso:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.paso:hover .paso-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.paso h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.paso p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ── TESTIMONIOS — NEUTRAL ───────────────────── */
.s-testimonios {
  background: var(--neutral);
  padding: 80px 0;
}

.test-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.test-hdr .section-title {
  margin-bottom: 12px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--neutral2);
  transition: transform 0.25s, box-shadow 0.25s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 18, 64, 0.08);
}

.stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.test-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 18, 64, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
}

.test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.test-role {
  font-size: 12px;
  color: rgba(0, 18, 64, 0.45);
  margin-top: 2px;
}

/* ── FAQ — LIGHT ─────────────────────────────── */
.s-faq {
  background: #fff;
  padding: 100px 0;
}

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

.faq-sidebar .section-title {
  margin-bottom: 20px;
}

.faq-sidebar p {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--neutral2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 15px;
  color: rgba(0, 18, 64, 0.65);
  line-height: 1.8;
  padding-bottom: 22px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ── CONTACTO / POR QUÉ ELEGIR — DARK ───────── */
.s-contacto {
  background: var(--dark);
  padding: 100px 0 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contacto-left h2 span {
  color: var(--primary);
}

.contacto-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 40px;
}

.difs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dif-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.dif-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.dif-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.contacto-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
}

.contacto-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contacto-right>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

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

.form-group select option {
  background: var(--dark);
  color: #fff;
}

.form-err {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
  display: none;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  padding: 18px 24px;
  justify-content: center;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.form-ok {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-ok svg {
  width: 52px;
  height: 52px;
  stroke: #22c55e;
  margin-bottom: 16px;
}

.form-ok p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.form-srv-err {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 12px;
  display: none;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1200px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 5% 80px;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .porque-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .incluye-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .incluye-item:nth-child(even) .incluye-text {
    order: 0;
  }

  .incluye-item:nth-child(even) .incluye-visual {
    order: 1;
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contacto-right {
    padding: 28px 20px;
  }
}

/* ================================================================
   PORTFOLIO — caso-de-estudio (compartido para todos los casos)
   ================================================================ */

/* ============================================================
   caso-de-estudio.css
   H&FV Web Design — CSS compartido para TODOS los casos de estudio
   Usar en cualquier portfolio/caso-de-estudio-[slug].html
   ============================================================ */

/* ── OVERRIDE DE VARIABLES (tema claro-azul) ── */
:root {
  --bg: #f0f5ff;
  --bg-elevated: #e0e8ff;
  --bg-deep: #001240;
  --primary: #0066ff;
  --secondary: #ff3366;
  --text: #001240;
  --text-muted: #4a5578;
  --accent: #4d94ff;
  --white: #ffffff;
  --dark: #001240;
  --neutral: #e8eeff;
  --border: rgba(0, 102, 255, 0.12);
  --border-strong: rgba(0, 102, 255, 0.28);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --max-w: 1350px;
}

/* Garantiza color blanco en botones (por si variables sobrescriben) */
.btn-primary {
  color: #ffffff !important;
}

.btn-submit {
  color: #ffffff !important;
}

/* FIX 1 — Logo como texto (no existe en style.css) */
.logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-text:hover {
  opacity: 0.85;
}

.logo-text span {
  color: var(--primary);
}

/* ── OVERRIDE BODY para tema claro ── */
body {
  background-color: var(--bg);
  color: var(--text);
}

/* ── HERO ──────────────────────────────────────── */
.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  padding: 120px 0 100px;
}

.cs-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}

.cs-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 18, 64, 0.92) 0%,
      rgba(0, 102, 255, 0.12) 50%,
      rgba(0, 18, 64, 0.95) 100%);
  z-index: 1;
}

.cs-hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.cs-hero .hero-content {
  display: block;
  /* override grid heredado de .hero-content de index.css */
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.cs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: #4d94ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: slideDown 0.6s ease both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.cs-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin-bottom: 2rem;
}

.cs-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cs-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.cs-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cs-breadcrumb {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cs-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.cs-breadcrumb-inner a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.cs-breadcrumb-inner a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cs-breadcrumb-inner span {
  color: rgba(255, 255, 255, 0.25);
}

.cs-breadcrumb-inner .current {
  color: rgba(255, 255, 255, 0.7);
}

/* ── CONTEXTO ──────────────────────────────────── */
.cs-context {
  padding: 100px 0;
  background: var(--white);
}

.cs-context-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.cs-context-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cs-context-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.cs-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cs-data-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-data-card i {
  color: var(--primary);
  width: 22px;
  height: 22px;
}

.cs-data-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.cs-data-value {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ── DESAFÍO ───────────────────────────────────── */
.cs-challenge {
  padding: 120px 0;
  background: var(--neutral);
}

.cs-challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: top;
}

.cs-challenge-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* FIX 10 — H3: fuente body en lugar de display */
.cs-challenge-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.cs-challenge-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.cs-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}

.cs-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.cs-check-list li i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.cs-challenge-visual {
  position: relative;
  /* FIX 12 — padding-bottom para que el badge flotante no quede cortado */
  padding-bottom: 28px;
}

.cs-challenge-img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: fill;
  aspect-ratio: 4/5;
  margin-bottom: 20px;
  margin-top: 20px;
}

.cs-time-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 102, 255, 0.35);
}

.cs-time-badge i {
  width: 18px;
  height: 18px;
}

/* ── PROCESO ───────────────────────────────────── */
.cs-process {
  padding: 100px 0;
  background: var(--white);
}

.cs-process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.cs-process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.cs-phases {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.cs-phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cs-phase--reverse .cs-phase-media {
  order: 2;
}

.cs-phase--reverse .cs-phase-content {
  order: 1;
}

.cs-phase-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.cs-phase-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.cs-phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}

/* FIX 10 — H3: fuente body en lugar de display */
.cs-phase-header h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.cs-phase-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── GALERÍA ───────────────────────────────────── */
.cs-gallery {
  padding: 80px 0;
  background: var(--bg-deep);
}

.cs-gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.cs-gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.cs-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.cs-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.cs-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.cs-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.cs-gallery-item img,
.cs-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cs-gallery-main {
  min-height: 480px;
}

.cs-gallery-stack .cs-gallery-item {
  flex: 1;
  min-height: 0;
}

.cs-gallery-item:hover img,
.cs-gallery-main:hover img {
  transform: scale(1.04);
}

.cs-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 18, 64, 0.82) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}

.cs-gallery-item:hover .cs-gallery-overlay,
.cs-gallery-main:hover .cs-gallery-overlay {
  opacity: 1;
}

.cs-gallery-label {
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

/* ── RESULTADOS ────────────────────────────────── */
.cs-results {
  padding: 100px 0;
  background: var(--neutral);
}

.cs-results-header {
  margin-bottom: 60px;
}

.cs-results-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.cs-results-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}

.cs-results-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs-stats-row {
  display: flex;
  gap: 0;
}

.cs-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--border-strong);
}

.cs-stat:first-child {
  padding-left: 0;
}

.cs-stat:last-child {
  border-right: none;
}

.cs-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.cs-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.cs-results-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-results-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.cs-results-check li i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.cs-results-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-impact-card {
  background: var(--white);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 102, 255, 0.07);
}

.cs-impact-card p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
}

/* ── TECNOLOGÍAS ───────────────────────────────── */
.cs-tech {
  padding: 80px 0;
  background: var(--bg);
}

.cs-tech-header {
  margin-bottom: 48px;
}

.cs-tech-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
  line-height: 1.2;
}

.cs-tech-groups {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-tech-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cs-tech-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  min-width: 80px;
  flex-shrink: 0;
}

.cs-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.cs-chip:hover {
  border-color: var(--primary);
  background: var(--bg-elevated);
}

.cs-chip i {
  color: var(--primary);
  width: 16px;
  height: 16px;
}

/* ── CTA FINAL + FORMULARIO ────────────────────── */
.cs-cta {
  padding: 120px 0;
  background: var(--bg-deep);
}

.cs-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cs-cta-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.cs-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.cs-cta-headline span {
  color: var(--accent);
}

.cs-cta-sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-top: -16px;
}

.cs-cta-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.cs-differentiators {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.cs-diff-item i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.cs-cta-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px;
}

.cs-form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cs-form-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

/* ── FORMULARIO — estilos de campos sin clase ── */
.cs-cta-glass .form-group {
  margin-bottom: 16px;
}

.cs-cta-glass label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 7px;
}

.cs-cta-glass input,
.cs-cta-glass textarea {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.cs-cta-glass input::placeholder,
.cs-cta-glass textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.cs-cta-glass input:focus,
.cs-cta-glass textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 148, 255, 0.18);
}

.cs-cta-glass input.error,
.cs-cta-glass textarea.error {
  border-color: #ff4d4d;
}

.cs-cta-glass textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 5px;
  min-height: 16px;
}

#submit-error {
  display: block;
  font-size: 13px;
  color: #ff6b6b;
  margin-bottom: 12px;
  text-align: center;
}

.cs-cta-glass #btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--accent);
}

.form-success i {
  display: block;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ── FOOTER OVERRIDE (tema oscuro ya funciona) ── */

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1200px) {
  .cs-context-inner {
    gap: 48px;
  }

  .cs-challenge-grid {
    gap: 48px;
  }

  .cs-phase {
    gap: 40px;
  }

  .cs-results-grid {
    gap: 48px;
  }

  .cs-cta-grid {
    gap: 48px;
  }
}

/* FIX 7 — Breakpoint tablet (769–900px) */
@media (max-width: 900px) {

  /* Colapsar grids de 2 columnas a 1 en tablet */
  .cs-context-inner,
  .cs-challenge-grid,
  .cs-results-grid,
  .cs-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-phase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-phase--reverse .cs-phase-media {
    order: unset;
  }

  .cs-phase--reverse .cs-phase-content {
    order: unset;
  }
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 100px 0 80px;
  }

  /* FIX 11 — Breadcrumb: reposicionamiento mobile */
  .cs-breadcrumb {
    bottom: 20px;
  }

  .cs-context-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-challenge-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-time-badge {
    right: 0;
    bottom: -16px;
  }

  .cs-phase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-phase--reverse .cs-phase-media {
    order: unset;
  }

  .cs-phase--reverse .cs-phase-content {
    order: unset;
  }

  .cs-gallery-grid {
    grid-template-columns: 1fr;
  }

  .cs-gallery-main {
    min-height: 280px;
  }

  /* FIX 8 — Galería stack en columna (no fila) */
  .cs-gallery-stack {
    flex-direction: column;
  }

  .cs-gallery-stack .cs-gallery-item {
    min-height: 180px;
  }

  .cs-stats-row {
    flex-direction: column;
    gap: 0;
  }

  .cs-stat {
    border-right: none;
    border-bottom: 1px solid var(--border-strong);
    padding: 20px 0;
  }

  .cs-stat:last-child {
    border-bottom: none;
  }

  .cs-stat-value {
    font-size: 2.75rem;
  }

  .cs-results-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-tech-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cs-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cs-cta-glass {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .cs-hero-meta {
    gap: 8px;
  }

  .cs-hero-chip {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .cs-data-grid {
    grid-template-columns: 1fr;
  }

  .cs-stat-value {
    font-size: 2.25rem;
  }

  .cs-gallery-stack {
    flex-direction: column;
  }
}

/* ── LIGHTBOX ─────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-figure {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  margin: 0;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 12px;
  padding: 0 12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 0;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.cs-gallery-main img,
.cs-gallery-item img {
  cursor: zoom-in;
}

@media (max-width: 600px) {
  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 70vh;
  }
}

/* ================================================================
   IMÁGENES POR PÁGINA (body.pg-[slug])
   Agregar una línea acá para cada nueva página.
   Path relativo desde assets/css/ → assets/img/
   ================================================================ */

/* ── PÁGINAS PRINCIPALES ── */
body.pg-index .hero-bg {
  background-image: url('../img/agencia-diseno-web-san-vicente-hfv.webp');
}

body.pg-servicios .hero-bg {
  background-image: url('../img/hero-mantenimiento-web.jpg');
}

body.pg-contacto .hero-bg {
  background-image: url('../img/hero-automatizacion-ia.jpg');
}

body.pg-quienes-somos .hero-bg {
  background-image: url('../img/hero-servicios-hfv.jpg');
}

/* ── SERVICIOS (hero-mockup-img) ── */
body.pg-constructoras .hero-mockup-img {
  background-image: url('../img/hero-diseno-web-constructoras.jpg');
}

body.pg-empresas .hero-mockup-img {
  background-image: url('../img/hero-diseno-web-empresas.jpg');
}

body.pg-automatizacion .hero-mockup-img {
  background-image: url('../img/hero-automatizacion-ia.jpg');
}

body.pg-redes .hero-mockup-img {
  background-image: url('../img/hero-gestion-redes-sociales.jpg');
}

body.pg-mantenimiento .hero-mockup-img {
  background-image: url('../img/hero-mantenimiento-web.jpg');
}

body.pg-monotributos .hero-mockup-img {
  background-image: url('../img/hero-webs-monotributos.jpg');
}

/* ── PORTFOLIO (casos de estudio) ──────────────────────────────
   Por página: ajustá opacity (.hero-bg) y gradiente (.hero-overlay)
   según la imagen real. Valores actuales son punto de partida.
   ────────────────────────────────────────────────────────────── */

body.pg-luminec .hero-bg {
  background-image: url('../img/10.sitio-web-para constructora.png');
  opacity: 1;
}

body.pg-luminec .hero-overlay {
  background: linear-gradient(135deg, rgba(0, 18, 64, 0.85) 0%, rgba(0, 60, 180, 0.15) 50%, rgba(0, 18, 64, 0.88) 100%);
}

body.pg-blackwolf .hero-bg {
  background-image: url('../img/Tienda-de-Accesorios-Automotrices.png');
  opacity: 1;
}

body.pg-blackwolf .hero-overlay {
  background:linear-gradient(135deg, rgba(0, 18, 64, 1) 20%, rgb(0 60 180 / 11%) 50%, rgb(0 18 64 / 0%) 90%);
}


body.pg-meet-me .hero-bg {
  background-image: url('../img/hero-portafolio-ecommerce-nfc.png');
  opacity: 1;
}

body.pg-meet-me .hero-overlay {
  background:linear-gradient(135deg, rgba(0, 18, 64, 1) 20%, rgb(0 60 180 / 11%) 50%, rgb(0 18 64 / 0%) 90%);
}

body.pg-instituto-saber .hero-bg {
  background-image: url('../img/hero-portfolio-instituto-saber.jpg');
  opacity: 2;
}

body.pg-instituto-saber .hero-overlay {
  background:linear-gradient(135deg, rgba(0, 18, 64, 1) 20%, rgb(0 60 180 / 11%) 50%, rgb(0 18 64 / 0%) 90%);
}

body.pg-paneles-solares .hero-bg {
  background-image: url('../img/landing-page-paneles-solares.png');
  opacity: 1;
}

body.pg-paneles-solares .hero-overlay {
  background:linear-gradient(135deg, rgba(0, 18, 64, 1) 20%, rgb(0 60 180 / 11%) 50%, rgb(0 18 64 / 0%) 90%);
}

body.pg-co-living .hero-bg {
  background-image: url('../img/hero-agencia-co-living.png');
  opacity: 1;
}

body.pg-co-living .hero-overlay {
  background:linear-gradient(135deg, rgba(0, 18, 64, 1) 20%, rgb(0 60 180 / 11%) 50%, rgb(0 18 64 / 0%) 90%);
}