/* ============================================
   SERVICIOS - Diseño Premium Alta Gama
   Colores corporativos: Naranja + Azul
   ============================================ */

/* --- VARIABLES LOCALES --- */
.servicios-page {
  --accent-orange: #ff6b35;
  --accent-orange-dark: #e55a2a;
  --accent-blue: #2a6f8f;
  --accent-blue-dark: #1e5a75;
  --cream: #faf8f5;
  --dark: #0d0d0d;
  --dark-secondary: #1a1a1a;
  --text-body: #5a5a5a;
  --text-light: #888;
  --border-light: rgba(0, 0, 0, 0.06);
  overflow-x: hidden;
  background: #fff;
}

/* ============================================
   HERO SERVICIOS
   ============================================ */
.servicios-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.servicios-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.servicios-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: servHeroBreath 15s ease-in-out infinite alternate;
  filter: brightness(0.28) saturate(0.45);
}

@keyframes servHeroBreath {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.13); }
}

.servicios-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.8) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 55%);
  z-index: 2;
}

/* Líneas */
.servicios-hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.shl {
  position: absolute;
  opacity: 0.1;
}

.shl-1 {
  top: 20%;
  right: 10%;
  width: 1px;
  height: 35vh;
  background: var(--accent-orange);
  animation: linePulseServ 7s ease-in-out infinite;
}

.shl-2 {
  bottom: 25%;
  left: 8%;
  width: 30vw;
  height: 1px;
  background: var(--accent-blue);
  animation: linePulseServ 9s ease-in-out infinite reverse;
}

@keyframes linePulseServ {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.22; }
}

/* Contenido */
.servicios-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  animation: contentReveal 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes contentReveal {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.servicios-hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 2rem;
  font-weight: 500;
}

.servicios-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.st-row {
  display: block;
}

.st-row.accent {
    /* font-style: italic; */
  color: var(--accent-orange);
  font-weight: 500;
}

.servicios-hero-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.servicios-hero-sep span {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.servicios-hero-sep i {
  font-size: 0.3rem;
  color: var(--accent-orange);
}

.servicios-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  margin: 0 auto;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-bar {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.scroll-fill {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-orange);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   SERVICIO DESTACADO (IMAGEN IZQUIERDA)
   ============================================ */
.servicio-destacado {
  padding: 8rem 0;
  background: #fff;
}

.servicio-destacado-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.servicio-destacado-visual {
  position: relative;
}

.sdv-imagen {
  position: relative;
  z-index: 1;
}

.sdv-imagen img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.9);
}

.sdv-marco {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-orange);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.sdv-numero {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
    /* font-style: italic; */
  color: var(--accent-orange);
  opacity: 0.15;
  line-height: 1;
  z-index: 2;
}

/* --- INFO DEL SERVICIO --- */
.sd-tag {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--accent-orange);
}

.sd-titulo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sd-descripcion {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 2rem;
  font-weight: 300;
}

.sd-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sd-lista li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sd-lista li i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sd-lista li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sd-lista li strong {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.sd-lista li span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
}

.sd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--dark);
  color: #fff;
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sd-btn i {
  margin-left: 0.8rem;
  transition: transform 0.4s ease;
}

.sd-btn:hover {
  background: var(--accent-orange);
  padding-right: 2.8rem;
}

.sd-btn:hover i {
  transform: translateX(6px);
}

/* ============================================
   SERVICIO ALTERNO (IMAGEN DERECHA)
   ============================================ */
.servicio-alterno {
  padding: 8rem 0;
  background: var(--cream);
}

.servicio-alterno-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.servicio-alterno-visual {
  position: relative;
}

.servicio-alterno-visual .sdv-marco {
  right: auto;
  left: -18px;
}

.servicio-alterno-visual .sdv-numero {
  left: auto;
  right: -1.5rem;
}

/* ============================================
   SECCIÓN DITECOMEX (DTC)
   ============================================ */
.servicio-dtc {
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.dtc-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,107,53,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(42,111,143,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.dtc-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.dtc-header {
  text-align: center;
  margin-bottom: 5rem;
}

.dtc-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent-orange);
  margin-bottom: 1.5rem;
}

.dtc-titulo {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.dtc-titulo span {
  font-size: 1.8rem;
  color: var(--accent-orange);
    /* font-style: italic; */
  font-weight: 300;
}

.dtc-subtitulo {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.dtc-descripcion {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.dtc-descripcion strong {
  color: rgba(255,255,255,0.8);
}

.dtc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.dtc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dtc-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-8px);
}

.dtc-card-icono {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
  border-radius: 50%;
}

.dtc-card-icono i {
  font-size: 1.3rem;
  color: #fff;
}

.dtc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}

.dtc-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ============================================
   PROCESO
   ============================================ */
.proceso-section {
  padding: 8rem 0;
  background: #fff;
}

.proceso-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.proceso-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 500;
  display: block;
  margin-bottom: 1.2rem;
}

.section-title-premium {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.proceso-intro {
  color: var(--text-body);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.proceso-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3rem;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--accent-orange),
    var(--accent-blue),
    var(--accent-orange)
  );
  opacity: 0.3;
}

.proceso-item {
  position: relative;
  padding-bottom: 3.5rem;
  padding-left: 2.5rem;
}

.proceso-item:last-child {
  padding-bottom: 0;
}

.proceso-paso {
  position: absolute;
  left: -3.6rem;
  top: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
    /* font-style: italic; */
  color: var(--accent-orange);
  font-weight: 600;
  z-index: 2;
  transition: all 0.4s ease;
}

.proceso-item:hover .proceso-paso {
  background: var(--accent-orange);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 0 10px rgba(255,107,53,0.08);
}

.proceso-contenido {
  background: var(--cream);
  padding: 1.8rem 2rem;
  transition: all 0.4s ease;
}

.proceso-item:hover .proceso-contenido {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transform: translateX(8px);
}

.proceso-contenido h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.proceso-contenido p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}

/* ============================================
   CTA FINAL
   ============================================ */
.servicios-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.cta-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

.cta-contenido {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 650px;
  padding: 0 2rem;
}

.cta-tag {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 1.5rem;
}

.cta-titulo {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-texto {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--accent-orange);
  color: #fff;
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cta-btn i {
  margin-left: 0.8rem;
  transition: transform 0.4s ease;
}

.cta-btn:hover {
  background: var(--accent-orange-dark);
  padding-right: 3rem;
}

.cta-btn:hover i {
  transform: translateX(6px);
}

/* ============================================
   FOOTER PREMIUM (Mismo diseño)
   ============================================ */
.footer-premium {
  background: #000;
  position: relative;
  overflow: hidden;
}

.footer-border-top {
  display: flex;
  height: 3px;
}

.border-accent { flex: 1; }
.border-orange { background: var(--accent-orange); }
.border-blue { background: var(--accent-blue); }

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 3rem 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.footer-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin: 1.5rem 0;
  font-weight: 300;
}

.footer-certifications {
  display: flex;
  gap: 1.5rem;
}

.cert-item {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

.cert-item i {
  color: var(--accent-blue);
  margin-right: 0.4rem;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.4s ease;
}

.footer-col:hover .footer-heading::after {
  width: 35px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 10px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-weight: 300;
}

.footer-contact-list li i {
  color: var(--accent-orange);
  margin-top: 3px;
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--accent-orange);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 0.9rem;
}

.social-icon-link:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  transform: translateY(-4px);
}

.footer-legal-bar {
  padding: 2.5rem 0;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-orange);
}

.legal-divider {
  color: rgba(255,255,255,0.08);
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.footer-copyright sup {
  font-size: 0.55rem;
}

.footer-madeby {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.1);
  letter-spacing: 2px;
    /* font-style: italic; */
  font-family: 'Outfit', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .dtc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .servicio-destacado-grid,
  .servicio-alterno-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sdv-imagen img {
    height: 350px;
  }

  .sd-titulo {
    font-size: 2.2rem;
  }

  .sdv-numero {
    font-size: 3.5rem;
    bottom: -1rem;
    left: 0.5rem;
  }

  .servicio-alterno-visual {
    order: -1;
  }

  .section-title-premium {
    font-size: 2.5rem;
  }

  .dtc-titulo {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .servicios-hero {
    height: 90vh;
    min-height: 550px;
  }

  .servicios-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  .servicio-destacado,
  .servicio-alterno,
  .servicio-dtc,
  .proceso-section,
  .servicios-cta {
    padding: 5rem 0;
  }

  .servicio-destacado-grid,
  .servicio-alterno-grid {
    padding: 0 2rem;
    gap: 2.5rem;
  }

  .dtc-container {
    padding: 0 2rem;
  }

  .dtc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dtc-titulo {
    font-size: 2.2rem;
  }

  .dtc-titulo span {
    font-size: 1.3rem;
  }

  .proceso-container {
    padding: 0 2rem;
  }

  .proceso-grid {
    padding-left: 2.5rem;
  }

  .proceso-item {
    padding-left: 1.5rem;
  }

  .proceso-paso {
    left: -3rem;
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }

  .cta-titulo {
    font-size: 2.5rem;
  }

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

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .servicios-hero-tag {
    font-size: 0.6rem;
    letter-spacing: 4px;
  }

  .sd-titulo {
    font-size: 1.8rem;
  }

  .sdv-imagen img {
    height: 280px;
  }

  .sd-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.7rem;
    width: 100%;
    justify-content: center;
  }

  .section-title-premium {
    font-size: 2rem;
  }

  .dtc-titulo {
    font-size: 1.8rem;
  }

  .cta-titulo {
    font-size: 2rem;
  }

  .footer-container {
    padding: 3rem 1.5rem 0;
  }
}