﻿/* ================================
   Servicios-1 : Hero Infraestructura
   ================================ */

/* Typography lock for Infraestructura (Desktop - 16.svg reference).
   The SVG text is outlined, so no font-family metadata is available. */
.srv-infra-template {
  --srv-infra-font-display: 'Universo Sans', 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --srv-infra-font-ui: 'Poppins', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.srv-infra-template,
.srv-infra-template button,
.srv-infra-template input,
.srv-infra-template select,
.srv-infra-template textarea {
  font-family: var(--srv-infra-font-ui);
}

.srv-infra-template .srv-hero__title,
.srv-infra-template .srv-systems__title,
.srv-infra-template .srv-products__title,
.srv-infra-template .srv-additional__title,
.srv-infra-template .srv-additional__card-title,
.srv-infra-template .srv-additional-modal__title,
.srv-infra-template .srv-additional-modal__features-title,
.srv-infra-template .srv-featured__title,
.srv-infra-template .srv-certifications__title,
.srv-infra-template .srv-other__title,
.srv-infra-template .srv-other__card-title,
.srv-infra-template .prod-cta__title {
  font-family: var(--srv-infra-font-display);
}

.srv-infra-template .srv-hero__btn,
.srv-infra-template .srv-products__card-label,
.srv-infra-template .srv-products__cta,
.srv-infra-template .srv-featured__badge,
.srv-infra-template .srv-featured__card-name,
.srv-infra-template .srv-additional__card-btn,
.srv-infra-template .srv-additional-modal__features li,
.srv-infra-template .srv-certifications__card-title,
.srv-infra-template .btn-cta-dark,
.srv-infra-template .topbar .nav a,
.srv-infra-template .topbar .nav .menu-item-label,
.srv-infra-template .topbar .cta {
  font-family: var(--srv-infra-font-ui);
}

/* ---------- Hero section ---------- */
.srv-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b0c10;
}

/* Imagen de fondo */
.srv-hero__bg {
  position: absolute;
  inset: 0;
  background: url('img/inicio/baner1.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Overlay oscuro para legibilidad */
.srv-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, calc(0.62 * var(--echos-overlay-intensity, 1)));
}

/* Topbar posicionado arriba */
.topbar--srv {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 16px 0;
  z-index: 5;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.15)
  );
}

/* ---------- Contenido centrado ---------- */
.srv-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Titulo hero - estandar proyectos */
.srv-hero__title {
  margin: 0;
  font-family: 'Universo Sans', var(--font-sans);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(34px, 2.5vw, 36px);
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
}

/* DescripciÃ³n */
.srv-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- BotÃ³n "Ver portafolio" ---------- */
.srv-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18, #ff5c00);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 14px 40px rgba(255, 106, 0, 0.35);
  transition: transform 0.2s, filter 0.2s;
}

.srv-hero__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.srv-hero__btn-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

/* ---------- Curva inferior ---------- */
.srv-hero__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.srv-hero__curve svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ================================
   Servicios-1 : SecciÃ³n Sistemas
   ================================ */

.srv-systems {
  position: relative;
  background: #F6F1E8;
  padding: 0;
}

/* Inner con bordes redondeados superiores que "sobrepasan" el hero */
.srv-systems__inner {
  position: relative;
  z-index: 5;
  margin-top: -40px;
  background: #F6F1E8;
  border-radius: 32px 32px 0 0;
  padding: 60px 80px 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Fila: grid de 2 columnas */
.srv-systems__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Fila invertida (imagen izquierda, texto derecha) */
.srv-systems__row--reverse {
  direction: ltr; /* asegura orden */
}

.srv-systems__row--reverse .srv-systems__img {
  order: -1;
}

/* TÃ­tulo */
.srv-systems__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #0b0c10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

/* PÃ¡rrafos */
.srv-systems__text p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
}

.srv-systems__text p:last-child {
  margin-bottom: 0;
}

/* Imagen */
.srv-systems__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Separador */
.srv-systems__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 56px 0;
}

/* ================================
   Servicios-1 : SecciÃ³n Productos
   ================================ */

.srv-products {
  position: relative;
  background: #0b0c10;
  overflow: hidden;
  padding: 80px 0 70px;
}

/* Decoraciones geomÃ©tricas en las esquinas */
.srv-products__deco {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
}

.srv-products__deco--tr {
  top: 0;
  right: 0;
  background:
    linear-gradient(225deg, transparent 48%, rgba(255, 106, 0, 0.25) 49%, transparent 50%),
    linear-gradient(225deg, transparent 38%, rgba(255, 106, 0, 0.18) 39%, transparent 40%),
    linear-gradient(225deg, transparent 28%, rgba(255, 106, 0, 0.12) 29%, transparent 30%);
}

.srv-products__deco--bl {
  bottom: 0;
  left: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255, 106, 0, 0.25) 49%, transparent 50%),
    linear-gradient(45deg, transparent 38%, rgba(255, 106, 0, 0.18) 39%, transparent 40%),
    linear-gradient(45deg, transparent 28%, rgba(255, 106, 0, 0.12) 29%, transparent 30%);
}

.srv-products__deco--tl {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background:
    linear-gradient(315deg, transparent 48%, rgba(255, 106, 0, 0.2) 49%, transparent 50%),
    linear-gradient(315deg, transparent 38%, rgba(255, 106, 0, 0.14) 39%, transparent 40%);
}

.srv-products__deco--br {
  bottom: 20%;
  right: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 106, 0, 0.2) 49%, transparent 50%),
    linear-gradient(135deg, transparent 38%, rgba(255, 106, 0, 0.14) 39%, transparent 40%);
}

/* Sutil resplandor naranja inferior */
.srv-products::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 106, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.srv-products__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* TÃ­tulo */
.srv-products__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 42px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.1;
}

/* SubtÃ­tulo */
.srv-products__subtitle {
  margin: 0 auto 48px;
  max-width: 620px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
}

/* Grid 3 columnas */
.srv-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.srv-products__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1f;
}

.srv-products__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.srv-products__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.srv-products__card:hover .srv-products__card-img img {
  transform: scale(1.05);
}

/* Label inferior de la card */
.srv-products__card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  color: #0b0c10;
  font-weight: 600;
  font-size: 14px;
}

.srv-products__card-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: #0b0c10;
  flex-shrink: 0;
}

/* BotÃ³n CTA */
.srv-products__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.srv-products__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid #ff5c00;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
}

.srv-products__cta:hover {
  background: rgba(255, 92, 0, 0.15);
  transform: translateY(-2px);
}

.srv-products__cta-arrow {
  font-size: 18px;
}

/* ================================
   Servicios-1 : Proyectos Destacados (Slider)
   ================================ */

.srv-featured {
  background: #F6F1E8;
  padding: 80px 0 70px;
}

.srv-featured__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header: tÃ­tulo + flechas */
.srv-featured__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.srv-featured__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  color: #0b0c10;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.srv-featured__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 560px;
}

/* Flechas de navegaciÃ³n */
.srv-featured__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

.srv-featured__arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: #0b0c10;
  cursor: pointer;
  transition: opacity 0.2s;
}

.srv-featured__arrow:hover {
  opacity: 0.6;
}

/* Slider container */
.srv-featured__slider {
  overflow: hidden;
}

.srv-featured__track {
  display: flex;
  gap: 28px;
  transition: transform 0.4s ease;
}

/* Card */
.srv-featured__card {
  position: relative;
  min-width: calc((100% - 56px) / 3);
  max-width: calc((100% - 56px) / 3);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.srv-featured__card--clickable {
  cursor: pointer;
}

.srv-featured__card-hitarea {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 20px;
  text-decoration: none;
}

.srv-featured__card-hitarea:focus-visible {
  outline: 2px solid rgba(255, 92, 0, 0.9);
  outline-offset: -2px;
}

.srv-featured__card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
}

.srv-featured__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.35s ease;
}

.srv-featured__card:hover .srv-featured__card-img img {
  transform: scale(1.05);
}

/* Badge (categorÃ­a) */
.srv-featured__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #0b0c10;
  line-height: 1.3;
  z-index: 2;
}

/* Info inferior de la card â€” posiciÃ³n absoluta dentro de la imagen */
.srv-featured__card-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(240, 236, 228, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.srv-featured__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.srv-featured__card-name {
  font-weight: 700;
  font-size: 15px;
  color: #0b0c10;
}

.srv-featured__card-date {
  font-size: 13px;
  color: #666;
}

.srv-featured__card-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: #0b0c10;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.srv-featured__card-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.srv-featured__card:hover .srv-featured__card-link {
  background: rgba(0, 0, 0, 0.05);
}

/* CTA */
.srv-featured__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.srv-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18, #ff5c00);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  font-style: italic;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 36px rgba(255, 106, 0, 0.3);
  transition: transform 0.2s, filter 0.2s;
}

.srv-featured__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.srv-featured__cta-arrow {
  font-size: 20px;
}

/* ================================
   Servicios-1 : Certificaciones y Respaldo
   ================================ */

.srv-certifications {
  background: #FDF8F0;
  padding: 80px 0 90px;
}

.srv-certifications__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.srv-certifications__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  color: #0b0c10;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.srv-certifications__subtitle {
  margin: 0 auto 48px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a3a;
}

.srv-certifications__cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.srv-certifications__card {
  background: rgba(224, 218, 206, 0.45);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 380px;
  width: 100%;
  text-align: left;
}

.srv-certifications__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.srv-certifications__card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 140, 50, 0.18);
  flex-shrink: 0;
}

.srv-certifications__card-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: #0b0c10;
  text-transform: none;
}

.srv-certifications__card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
}

/* ================================
   Servicios-1 : Otros Servicios
   ================================ */

.srv-other {
  background: #F6F1E8;
  padding: 80px 0 90px;
}

.srv-other__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.srv-other__title {
  margin: 0 0 48px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: #0b0c10;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.15;
}

.srv-other__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Card */
.srv-other__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0c10;
  text-decoration: none;
  padding: 36px 32px;
  transition: transform 0.3s ease;
}

.srv-other__card:hover {
  transform: translateY(-4px);
}

/* Fondo con patrÃ³n geomÃ©trico y glow naranja */
.srv-other__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* IluminaciÃ³n - patrÃ³n de red/constelaciÃ³n */
.srv-other__card-bg--iluminacion {
  background:
    radial-gradient(ellipse at 20% 90%, rgba(255, 120, 0, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 95%, rgba(255, 90, 0, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 15% 35%, rgba(255, 106, 0, 0.08) 0%, transparent 25%);
}

.srv-other__card-bg--iluminacion::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px at 18% 22%, rgba(255, 140, 50, 0.9) 0%, transparent 2px),
    radial-gradient(circle 2px at 35% 15%, rgba(255, 140, 50, 0.8) 0%, transparent 2px),
    radial-gradient(circle 2px at 28% 38%, rgba(255, 140, 50, 0.7) 0%, transparent 2px),
    radial-gradient(circle 2px at 12% 50%, rgba(255, 140, 50, 0.6) 0%, transparent 2px),
    radial-gradient(circle 2px at 45% 28%, rgba(255, 140, 50, 0.7) 0%, transparent 2px),
    radial-gradient(circle 2px at 52% 18%, rgba(255, 140, 50, 0.5) 0%, transparent 2px),
    radial-gradient(circle 2px at 40% 45%, rgba(255, 140, 50, 0.6) 0%, transparent 2px),
    radial-gradient(circle 1.5px at 22% 60%, rgba(255, 140, 50, 0.5) 0%, transparent 2px),
    radial-gradient(circle 1.5px at 55% 40%, rgba(255, 140, 50, 0.4) 0%, transparent 2px);
  opacity: 0.8;
}

.srv-other__card-bg--iluminacion::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* lÃ­neas de conexiÃ³n simuladas */
    linear-gradient(32deg, transparent 49.5%, rgba(255, 120, 50, 0.15) 49.5%, rgba(255, 120, 50, 0.15) 50.5%, transparent 50.5%),
    linear-gradient(145deg, transparent 49.5%, rgba(255, 120, 50, 0.12) 49.5%, rgba(255, 120, 50, 0.12) 50.5%, transparent 50.5%),
    linear-gradient(78deg, transparent 49.5%, rgba(255, 120, 50, 0.1) 49.5%, rgba(255, 120, 50, 0.1) 50.5%, transparent 50.5%);
}

/* Stands - patrÃ³n de estructura/stand */
.srv-other__card-bg--stands {
  background:
    radial-gradient(ellipse at 80% 90%, rgba(255, 120, 0, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 95%, rgba(255, 90, 0, 0.2) 0%, transparent 40%);
}

.srv-other__card-bg--stands::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 18%;
  width: 120px;
  height: 160px;
  border: 1.5px solid rgba(255, 120, 50, 0.35);
  border-bottom: none;
  background: transparent;
}

.srv-other__card-bg--stands::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 22%;
  width: 80px;
  height: 120px;
  border-left: 1.5px solid rgba(255, 120, 50, 0.25);
  border-right: 1.5px solid rgba(255, 120, 50, 0.25);
  background:
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 25px,
      rgba(255, 120, 50, 0.18) 25px,
      rgba(255, 120, 50, 0.18) 26.5px
    );
}

/* Contenido de la card */
.srv-other__card-content {
  position: relative;
  z-index: 1;
}

.srv-other__card-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.srv-other__card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 380px;
}

/* Flecha inferior derecha */
.srv-other__card-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: background 0.25s, border-color 0.25s;
}

.srv-other__card:hover .srv-other__card-arrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ================================
   Servicios-1 : CTA Final
   ================================ */

.prod-cta {
  background: #F5F1E8;
  padding: 80px 0;
  text-align: center;
}

.prod-cta__card {
  background: #EDE8DD;
  border-radius: 28px;
  padding: 70px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.prod-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #1a1000;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-style: italic;
}

.prod-cta__text {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 460px;
}

.prod-cta__buttons {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botones oscuros CTA */
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 28px;
  border-radius: 999px;
  background: #2E1A0E;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
  border: none;
}

.btn-cta-dark:hover {
  background: #1a0e05;
  transform: translateY(-2px);
}

.btn-cta-dark__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .srv-hero {
    min-height: 460px;
  }

  .srv-hero__content {
    padding: 90px 20px 70px;
  }

  .srv-hero__title {
    font-size: clamp(30px, 5.4vw, 34px);
    letter-spacing: 0;
  }

  .srv-systems__inner {
    padding: 48px 40px 60px;
    margin-top: -30px;
    border-radius: 24px 24px 0 0;
  }

  .srv-systems__row {
    gap: 32px;
  }

  .srv-systems__img img {
    height: 260px;
  }

  .srv-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .srv-featured__card {
    min-width: calc((100% - 28px) / 2);
    max-width: calc((100% - 28px) / 2);
  }

  .srv-other__grid {
    gap: 24px;
  }

  .srv-other__card {
    min-height: 240px;
    padding: 28px 24px;
  }

  .prod-cta__title {
    font-size: 28px;
  }

  .prod-cta__card {
    padding: 50px 30px 60px;
  }
}

@media (max-width: 720px) {
  .srv-systems__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .srv-systems__row--reverse .srv-systems__img {
    order: -1;
  }

  .srv-systems__inner {
    padding: 36px 24px 48px;
  }

  .srv-systems__img img {
    height: 240px;
  }

  .srv-products__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .srv-products__inner {
    padding: 0 20px;
  }

  .srv-products {
    padding: 60px 0 50px;
  }

  .srv-featured__card {
    min-width: 100%;
    max-width: 100%;
  }

  .srv-featured__inner {
    padding: 0 20px;
  }

  .srv-featured {
    padding: 60px 0 50px;
  }

  .srv-featured__header {
    flex-direction: column;
    gap: 16px;
  }

  .srv-other__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .srv-other__inner {
    padding: 0 20px;
  }

  .srv-other {
    padding: 60px 0 60px;
  }

  .srv-other__card {
    min-height: 220px;
  }

  .prod-cta {
    padding: 50px 0;
  }

  .prod-cta__card {
    padding: 40px 20px 50px;
    border-radius: 20px;
  }

  .prod-cta__title {
    font-size: 24px;
  }

  .prod-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .srv-hero {
    min-height: 420px;
  }

  .srv-hero__content {
    padding: 80px 16px 60px;
  }

  .srv-hero__title {
    font-size: clamp(26px, 8vw, 30px);
    letter-spacing: 0;
  }

  .srv-hero__desc {
    font-size: 13px;
  }

  .srv-hero__btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  .srv-systems__inner {
    padding: 28px 16px 40px;
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
  }

  .srv-systems__title {
    font-size: 20px;
  }

  .srv-systems__text p {
    font-size: 14px;
  }

  .srv-systems__img img {
    height: 200px;
  }

  .srv-systems__divider {
    margin: 36px 0;
  }
}

