@media (max-width: 480px) {
  .hero-shcompany {
    min-height: 28vh !important;
    padding-top: 1.1rem !important;
    padding-bottom: 0.7rem !important;
  }

  .fiber-bg-canvas {
    height: 28vh !important;
  }

  .hero-title {
    font-size: 1.05rem !important;
  }

  .hero-panel {
    min-width: 70px !important;
    min-height: 36px !important;
    font-size: 0.7rem !important;
    padding: 0.2rem 0.4rem !important;
  }

  .fiber-svg-visual {
    width: 70px !important;
    height: 70px !important;
  }
}

@media (max-width: 767px) {
  .hero-shcompany {
    min-height: 44vh !important;
    padding-top: 2.2rem !important;
    padding-bottom: 1.2rem !important;
  }

  .fiber-bg-canvas {
    height: 44vh !important;
  }

  .hero-title {
    font-size: 1.3rem !important;
  }

  .hero-panel {
    min-width: 90px !important;
    min-height: 48px !important;
    font-size: 0.85rem !important;
    padding: 0.4rem 0.7rem !important;
  }

  .fiber-svg-visual {
    width: 110px !important;
    height: 110px !important;
  }
}

/* === CANVAS FONDO FIBRA ÓPTICA === */
.fiber-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-shcompany {
  position: relative;
  overflow: hidden;
}

/* === ANIMACIÓN HOVER AL TÍTULO DEL HERO === */
.hero-title {
  transition: transform 0.4s cubic-bezier(.23, 1.01, .32, 1), text-shadow 0.4s;
  will-change: transform, text-shadow;
}

.hero-title:hover {
  transform: translateY(-12px) scale(1.04) rotate(-2deg);
  text-shadow: 0 8px 32px #3e08c6cc, 0 2px 16px #2cd16699;
  animation: hero-title-wiggle 0.7s cubic-bezier(.23, 1.01, .32, 1);
}

@keyframes hero-title-wiggle {
  0% {
    transform: translateY(0) scale(1) rotate(0);
  }

  20% {
    transform: translateY(-8px) scale(1.03) rotate(-2deg);
  }

  40% {
    transform: translateY(-14px) scale(1.06) rotate(2deg);
  }

  60% {
    transform: translateY(-10px) scale(1.04) rotate(-2deg);
  }

  80% {
    transform: translateY(-12px) scale(1.04) rotate(0);
  }

  100% {
    transform: translateY(-12px) scale(1.04) rotate(-2deg);
  }
}

/* === ANIMACIONES EXTRA HERO HEADER === */
.hero-shcompany {
  animation: hero-fadeup 1.2s cubic-bezier(.23, 1.01, .32, 1) both;
}

@keyframes hero-fadeup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel {
  animation: panel-bounce 1.2s cubic-bezier(.23, 1.01, .32, 1) both;
}

.hero-panel.bg-orange {
  animation-delay: 0.2s;
}

.hero-panel.bg-blue {
  animation-delay: 0.4s;
}

.hero-panel.bg-green {
  animation-delay: 0.6s;
}

@keyframes panel-bounce {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(40px);
  }

  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.fiber-svg-visual svg {
  filter: drop-shadow(0 0 24px #2cd16688) drop-shadow(0 0 32px #3e08c688);
  animation: fiber-glow 2.5s ease-in-out infinite alternate;
}

@keyframes fiber-glow {
  0% {
    filter: drop-shadow(0 0 8px #2cd16644) drop-shadow(0 0 12px #3e08c644);
  }

  100% {
    filter: drop-shadow(0 0 32px #2cd166cc) drop-shadow(0 0 48px #3e08c6cc);
  }
}

/* === AJUSTES HERO HEADER MÁS GRANDE Y ABAJO === */
.hero-shcompany {
  min-height: 80vh !important;
  align-items: flex-start !important;
  padding-top: 6rem !important;
  padding-bottom: 2.5rem !important;
}

.hero-title {
  font-size: 3.5rem !important;
}

.hero-panel {
  min-width: 180px !important;
  min-height: 110px !important;
  font-size: 1.3rem !important;
}

.fiber-svg-visual {
  width: 380px !important;
  height: 380px !important;
}

/* === HERO HEADER NUEVO SH COMPANY === */
.hero-shcompany {
  position: relative;
  background: linear-gradient(120deg, #0a0a1a 60%, #3e08c6 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

.hero-shcompany .container {
  position: relative;
  z-index: 2;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  background: linear-gradient(120deg, #0a0a1a 60%, #3e08c6 100%);
  opacity: 0.95;
  animation: hero-bg-move 8s linear infinite alternate;
}

@keyframes hero-bg-move {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(20deg);
  }
}

.hero-title .text-gradient {
  background: linear-gradient(90deg, #f25c05 30%, #fff 60%, #3e08c6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .text-gradient-2 {
  background: linear-gradient(90deg, #2cd166 0%, #3e08c6 60%, #f25c05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-panels {
  z-index: 3;
}

.hero-panel {
  background: linear-gradient(120deg, #181c2a 60%, #3e08c6 100%);
  border-radius: 1.2rem;
  box-shadow: 0 0 16px #3e08c644, 0 0 8px #f25c0544;
  padding: 1.1rem 1.7rem 1.1rem 1.7rem;
  min-width: 150px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  border: 1.5px solid #2cd16633;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-panel:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 0 32px #2cd16688, 0 0 16px #f25c05aa;
}

.panel-label {
  font-size: 1rem;
  color: #2cd166;
  font-weight: 700;
  margin-top: 0.2rem;
}

.panel-value {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 0.1rem;
}

.animate-panel-float {
  animation: panel-float 3.2s ease-in-out infinite alternate;
}

.animate-panel-float2 {
  animation: panel-float 2.7s ease-in-out infinite alternate 0.5s;
}

.animate-panel-float3 {
  animation: panel-float 3.7s ease-in-out infinite alternate 1s;
}

.animate-panel-float4 {
  animation: panel-float 2.9s ease-in-out infinite alternate 1.3s;
}

@keyframes panel-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.fiber-svg-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-shcompany .row {
    justify-content: center !important;
  }

  .hero-shcompany .col-lg-7 {
    align-items: center !important;
    text-align: center !important;
  }

  .fiber-svg-visual {
    width: 220px !important;
    height: 220px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem !important;
  }

  .hero-panel {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }

  .fiber-svg-visual {
    width: 140px !important;
    height: 140px !important;
  }
}

/* ===== HEADER DIGITAL PANEL ===== */
.header-digital-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(120deg, #0a0a1a 60%, #1a0a3a 100%);
}

.digital-circles {
  position: absolute;
  left: 10vw;
  top: 10vh;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 1;
  background: none;
}

.digital-circles::before,
.digital-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px dashed #2cd16655;
  opacity: 0.18;
  animation: digital-circles-spin 12s linear infinite;
}

.digital-circles::before {
  width: 400px;
  height: 400px;
  left: 80px;
  top: 80px;
  border-width: 2px;
  animation-delay: 0s;
}

.digital-circles::after {
  width: 250px;
  height: 250px;
  left: 170px;
  top: 170px;
  border-width: 3px;
  animation-delay: 3s;
}

@keyframes digital-circles-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.digital-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.digital-lines::before,
.digital-lines::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 2px;
  background: linear-gradient(90deg, #2cd166 0%, #3e08c6 60%, #f25c05 100%);
  opacity: 0.08;
  top: 30%;
  left: 0;
  animation: digital-line-move 8s linear infinite;
}

.digital-lines::after {
  top: 60%;
  opacity: 0.13;
  animation-delay: 2s;
}

@keyframes digital-line-move {
  0% {
    left: -10vw;
  }

  100% {
    left: 10vw;
  }
}

.digital-panel-float {
  position: absolute;
  right: 12vw;
  top: 18vh;
  width: 220px;
  height: 120px;
  background: linear-gradient(120deg, #fff2 60%, #3e08c6 100%);
  border-radius: 1.5rem;
  box-shadow: 0 0 32px #3e08c6cc, 0 0 12px #f25c05aa;
  opacity: 0.13;
  filter: blur(6px);
  animation: digital-panel-float 6s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes digital-panel-float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-18px) scale(1.04);
  }
}

.digital-panels-row {
  z-index: 3;
}

.digital-panel {
  background: linear-gradient(120deg, #181c2a 60%, #3e08c6 100%);
  border-radius: 1.2rem;
  box-shadow: 0 0 16px #3e08c644, 0 0 8px #f25c0544;
  padding: 1.1rem 1.7rem 1.1rem 1.7rem;
  min-width: 150px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  border: 1.5px solid #2cd16633;
  transition: transform 0.3s, box-shadow 0.3s;
}

.digital-panel:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 0 32px #2cd16688, 0 0 16px #f25c05aa;
}

.panel-label {
  font-size: 1rem;
  color: #2cd166;
  font-weight: 700;
  margin-top: 0.2rem;
}

.panel-value {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 0.1rem;
}

.animate-panel-float {
  animation: panel-float 3.2s ease-in-out infinite alternate;
}

.animate-panel-float2 {
  animation: panel-float 2.7s ease-in-out infinite alternate 0.5s;
}

.animate-panel-float3 {
  animation: panel-float 3.7s ease-in-out infinite alternate 1s;
}

.animate-panel-float4 {
  animation: panel-float 2.9s ease-in-out infinite alternate 1.3s;
}

@keyframes panel-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.icon-wifi-anim svg {
  filter: drop-shadow(0 0 8px #2cd166aa) drop-shadow(0 0 12px #3e08c6aa);
  animation: wifi-anim 2.2s ease-in-out infinite alternate;
}

@keyframes wifi-anim {
  0% {
    transform: scale(1) rotate(-8deg);
  }

  100% {
    transform: scale(1.08) rotate(8deg);
  }
}

@media (max-width: 991px) {
  .header-digital-bg {
    display: none;
  }

  .fiber-img-visual {
    margin-top: 2rem;
  }

  .digital-panels-row {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem !important;
  }

  .digital-panel {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }

  .fiber-img-visual {
    width: 180px !important;
    height: 100px !important;
  }
}

/* Imagen y efectos de fibra óptica realista en el header */
.fiber-img-visual {
  position: relative;
  width: 340px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fiber-real-img {
  border-radius: 1.5rem;
  box-shadow: 0 0 32px #3e08c6cc, 0 0 12px #f25c05aa;
  animation: fiber-img-float 3.5s ease-in-out infinite alternate;
}

@keyframes fiber-img-float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-12px) scale(1.03);
  }
}

.fiber-glow-anim {
  position: absolute;
  left: 60%;
  top: 30%;
  width: 120px;
  height: 60px;
  background: radial-gradient(circle at 60% 40%, #3e08c6cc 0%, #f25c0580 60%, transparent 100%);
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
  animation: fiber-glow-pulse 2.2s ease-in-out infinite alternate;
}

@keyframes fiber-glow-pulse {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.85;
  }
}

.fiber-lights-anim {
  position: absolute;
  left: 70%;
  top: 38%;
  width: 90px;
  height: 30px;
  pointer-events: none;
}

.fiber-lights-anim::before,
.fiber-lights-anim::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #fff 0%, #3e08c6 60%, #f25c05 100%);
  opacity: 0.7;
  filter: blur(1.5px) brightness(1.5);
  border-radius: 2px;
  animation: fiber-light-move 1.8s linear infinite;
}

.fiber-lights-anim::after {
  top: 18px;
  left: 10px;
  width: 70px;
  background: linear-gradient(90deg, #fff 0%, #f25c05 60%, #3e08c6 100%);
  animation-delay: 0.7s;
}

@keyframes fiber-light-move {
  0% {
    opacity: 0.2;
    transform: translateX(-10px) scaleX(0.8);
  }

  50% {
    opacity: 1;
    transform: translateX(10px) scaleX(1.1);
  }

  100% {
    opacity: 0.2;
    transform: translateX(-10px) scaleX(0.8);
  }
}

/* Animaciones para header llamativo */
.animate-fade-slide {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeSlideIn 1.1s cubic-bezier(.6, .2, .3, 1) 0.1s forwards;
}

.animate-fade-slide-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1.1s cubic-bezier(.6, .2, .3, 1) 0.5s forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Animación de icono fibra óptica */
.icon-fiber-animated svg {
  filter: drop-shadow(0 0 8px #f25c05aa) drop-shadow(0 0 12px #3e08c6aa);
}

/* ===== HERO HEADER SIMPLE FIBRA ÓPTICA ===== */
.hero-pqrs {
  position: relative;
  background: linear-gradient(120deg, #111 60%, #3e08c6 100%);
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-pqrs .container {
  position: relative;
  z-index: 2;
}

.hero-pqrs .row {
  justify-content: flex-start !important;
}

.hero-pqrs .col-lg-7 {
  align-items: flex-start !important;
  text-align: left !important;
}

@media (max-width: 991px) {
  .hero-pqrs .row {
    justify-content: center !important;
  }

  .hero-pqrs .col-lg-7 {
    align-items: center !important;
    text-align: center !important;
  }
}

.hero-pqrs .header-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.header-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #f25c05 60%, #3e08c6 100%, transparent 100%);
  opacity: 0.13;
  filter: blur(2.5px);
  animation: header-particle-float 6s linear infinite;
}

.header-particle.p1 {
  width: 32px;
  height: 32px;
  left: 12vw;
  top: 18vh;
  animation-delay: 0s;
}

.header-particle.p2 {
  width: 18px;
  height: 18px;
  left: 70vw;
  top: 30vh;
  animation-delay: 2s;
}

.header-particle.p3 {
  width: 24px;
  height: 24px;
  left: 40vw;
  top: 60vh;
  animation-delay: 4s;
}

.header-particle.p4 {
  width: 14px;
  height: 14px;
  left: 80vw;
  top: 10vh;
  animation-delay: 1s;
}

.header-particle.p5 {
  width: 20px;
  height: 20px;
  left: 25vw;
  top: 75vh;
  animation-delay: 3s;
}

@keyframes header-particle-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.13;
  }

  50% {
    transform: translateY(-40px) scale(1.2);
    opacity: 0.22;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 0.13;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 120px;
  background: linear-gradient(135deg, rgba(242, 92, 5, 0.10) 0%, rgba(62, 8, 198, 0.08) 100%);
  border-radius: 50%;
  animation: wave-animation 15s ease-in-out infinite;
}

.wave.wave-1 {
  animation-delay: 0s;
  opacity: 0.8;
}

.wave.wave-2 {
  animation-delay: 5s;
  opacity: 0.5;
  height: 160px;
}

.wave.wave-3 {
  animation-delay: 10s;
  opacity: 0.3;
  height: 200px;
}

@keyframes wave-animation {

  0%,
  100% {
    transform: translateX(-25%) rotate(0deg);
  }

  50% {
    transform: translateX(-75%) rotate(180deg);
  }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  z-index: 2;
}

.grid-line {
  position: absolute;
  background: #f25c05;
}

.grid-line:nth-child(1) {
  width: 1px;
  height: 100%;
  left: 20%;
}

.grid-line:nth-child(2) {
  width: 1px;
  height: 100%;
  left: 40%;
}

.grid-line:nth-child(3) {
  width: 1px;
  height: 100%;
  left: 60%;
}

.grid-line:nth-child(4) {
  width: 1px;
  height: 100%;
  left: 80%;
}

.grid-line:nth-child(5) {
  width: 100%;
  height: 1px;
  top: 50%;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px #000, 0 0 8px #3e08c6cc;
  letter-spacing: 1px;
}

.title-highlight {
  background: linear-gradient(90deg, #f25c05 30%, #fff 60%, #3e08c6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-fill-color: transparent; */
  filter: brightness(1.2) drop-shadow(0 0 8px #fff8);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #2cd166;
  margin-bottom: 0;
  text-shadow: 0 0 8px #2cd16688, 0 0 16px #fff8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}


.fibra-line.l1 {
  left: 20vw;
  animation-delay: 0s;
}

.fibra-line.l2 {
  left: 40vw;
  animation-delay: 1s;
}

.fibra-line.l3 {
  left: 60vw;
  animation-delay: 2s;
}

.fibra-line.l4 {
  left: 80vw;
  animation-delay: 0.5s;
}

.fibra-line.l5 {
  left: 50vw;
  animation-delay: 1.5s;
}

@keyframes fibra-line-move {
  0% {
    opacity: 0.18;
    transform: translateY(0);
  }

  50% {
    opacity: 0.38;
    transform: translateY(-30px);
  }

  100% {
    opacity: 0.18;
    transform: translateY(0);
  }
}

.header-content {
  z-index: 2;
  position: relative;
  padding: 2rem 1rem 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #000, 0 0 8px #3e08c6cc;
  background: none;
}

.text-gradient {
  background: linear-gradient(90deg, #f25c05 30%, #fff 60%, #3e08c6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-fill-color: transparent; */
  filter: brightness(1.2) drop-shadow(0 0 8px #fff8);
}

.velocidad-animada {
  display: inline-block;
  color: #2cd166;
  font-weight: 800;
  margin-left: 0.5rem;
  letter-spacing: 1.5px;
  animation: velocidad-move 1.2s cubic-bezier(.4, 1.4, .6, 1) infinite alternate;
  text-shadow: 0 0 8px #2cd16688, 0 0 16px #fff8;
}

@keyframes velocidad-move {
  0% {
    transform: scale(1) skewX(0deg);
    filter: brightness(1.1);
  }

  100% {
    transform: scale(1.08) skewX(-6deg);
    filter: brightness(1.3);
  }
}

.header-content .btn-elegante {
  font-size: 1.2rem;
  padding: 12px 36px;
  border-radius: 30px;
  box-shadow: 0 4px 24px #3e08c655;
}

@media (max-width: 768px) {
  .header-fibra-optica {
    min-height: 38vh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .header-title {
    font-size: 1.5rem;
  }

  .header-content {
    padding: 1.2rem 0.5rem;
  }

  .header-content img {
    max-width: 60px !important;
  }
}

@media (max-width: 480px) {
  .header-fibra-optica {
    min-height: 28vh;
  }

  .header-title {
    font-size: 1.1rem;
  }

  .header-content {
    padding: 0.7rem 0.2rem;
  }
}

/* -------------------- NAVBAR -------------------- */
.navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.3rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #f25c05 !important;
}

.navbar-nav .nav-link.active {
  color: #f25c05 !important;
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #f25c05;
  border-radius: 2px;
}

.logo-redondo {
  border-radius: 100%;
  object-fit: cover;
  width: 70px;
  height: 70px;
}

/* --- HERO FIBRA ÓPTICA ANIMADO --- */
.hero-bg-fibra {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(120deg, #0a0a1a 60%, #1a0a3a 100%);
}

.fibra-rays {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.fibra-ray {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 260px;
  background: linear-gradient(180deg, #fff 0%, #f25c05 60%, #3e08c6 100%, transparent 100%);
  border-radius: 3px;
  opacity: 0.22;
  transform-origin: bottom center;
  filter: blur(2.5px);
  animation: fibra-ray-rotate 5s linear infinite;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 12px;
  width: 50px;
  height: 50px;
  background-size: 60%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.carousel-indicators {
  bottom: -40px;
  z-index: 10;
}

.carousel-indicators [data-bs-target] {
  background-color: #2cd166;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-indicators .active {
  background-color: #3e08c6;
  opacity: 1;
}

/* -------------------- BOTÓN ELEGANTE -------------------- */
.btn-elegante {
  background-color: #3e08c6;
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-elegante:hover {
  background-color: #2cd166;
  color: #000;
}

/* -------------------- BOTÓN OUTLINE ORANGE -------------------- */
.btn-outline-orange {
  background-color: transparent;
  color: #f25c05;
  border: 2px solid #f25c05;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-outline-orange:hover {
  background-color: #f25c05;
  color: white;
  border-color: #f25c05;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(242, 92, 5, 0.3);
}

.btn-outline-orange:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 92, 5, 0.25);
}

.btn-outline-orange:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(242, 92, 5, 0.3);
}

/* -------------------- PLANES -------------------- */
.planes-card {
  transition: transform 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.planes-card:hover {
  transform: scale(1.03);
}

.card-title {
  font-weight: 600;
  color: #3e08c6;
}

/* -------------------- COBERTURA -------------------- */
.cobertura-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.cobertura-card:hover {
  transform: translateY(-5px);
}

.cobertura-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f25c05;
}

.cobertura-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.4rem;
}

.cobertura-card .btn-elegante {
  margin-top: auto;
  align-self: center;
}

/* -------------------- TESTIMONIOS -------------------- */
/* Estilo general para la sección de testimonios */
#testimonios {
  background-color: #1c1c1e;
  /* fondo oscuro elegante */
  color: #ffffff;
}

/* Color naranja personalizado */
.text-orange {
  color: #f77f00;
  /* puedes cambiar este color al de tu marca */
}

/* Tarjeta de testimonio */
#testimonios .bg-secondary {
  background-color: #2c2c2e !important;
  border-left: 5px solid #f77f00;
  /* borde naranja decorativo */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animación suave */
#testimonios .bg-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Ícono del título */
#testimonios h2 i {
  color: #f77f00;
}

/* Línea divisora */
#testimonios hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Nombre del cliente */
#testimonios h6 {
  color: #f77f00;
  font-weight: 600;
  margin-top: 10px;
}

/* -------------------- FORMULARIOS -------------------- */
form label {
  font-weight: 500;
}

form input,
form textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px;
}

/* -------------------- DENUNCIAS -------------------- */
#denuncias h2 {
  color: #f25c05;
  font-weight: 800;
}

.denuncia-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.denuncia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.denuncia-card img {
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
}

.btn-denuncia {
  background-color: #003366;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
  margin-top: auto;
  width: 100%;
  min-height: 44px;
  /* Optimización táctil */
}

.btn-denuncia:hover {
  background-color: #f25c05;
  color: #000;
}

/* DENUNCIAS OPTIMIZADAS PARA MÓVIL */
.denuncia-card {
  padding: 15px !important;
  min-height: 280px !important;
  margin-bottom: 1.5rem;
}

.denuncia-card img {
  max-height: 120px !important;
  min-height: 80px;
  width: 100% !important;
  object-fit: contain !important;
  object-position: center;
  margin-bottom: 15px;
}

.btn-denuncia {
  padding: 12px 20px !important;
  font-size: 14px !important;
  min-height: 44px;
  width: 100% !important;
}

#denuncias h2 {
  font-size: 1.5rem !important;
  margin-bottom: 2rem !important;
  line-height: 1.3;
  padding: 0 15px;
}

/* DENUNCIAS ULTRA MÓVIL */
.denuncia-card {
  padding: 12px !important;
  min-height: 260px !important;
  margin-bottom: 1rem;
}

.denuncia-card img {
  max-height: 100px !important;
  min-height: 70px;
}

.btn-denuncia {
  padding: 10px 15px !important;
  font-size: 13px !important;
}

#denuncias h2 {
  font-size: 1.3rem !important;
  padding: 0 10px;
  margin-bottom: 1.5rem !important;
}

/* -------------------- NEUTRALIDAD -------------------- */
.text-orange {
  color: #f25c05;
}

.neutral-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.neutral-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(124, 82, 82, 0.12);
}

.neutral-card h5 {
  font-size: 1.15rem;
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: #fff3e5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------- FOOTER INSTITUCIONAL -------------------- */
.footer-institucional {
  background-color: #000000;
  color: #ffffff;
  padding: 3rem 0 2rem 0;
  font-size: 0.95rem;
  border-top: 4px solid #f25c05;
}

.footer-institucional .footer-logo {
  max-height: 250px !important;
  height: auto;
  width: auto;
  display: block;
}

.footer-institucional small,
.footer-institucional p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-institucional a {
  color: #f25c05;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-institucional a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #f25c05;
}

.footer-institucional .text-danger {
  color: #fc3402 !important;
}

.footer-institucional .row img {
  transition: transform 0.3s ease;
  max-height: 60px;
  object-fit: contain;
  margin: auto;
  filter: none;
  /* Elimina cualquier filtro */
}

.footer-institucional .row img:hover {
  transform: scale(1.05);
}

.footer-institucional p {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #ffffff;
}

/* Estilos para los enlaces deshabilitados en información adicional */
.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
  position: relative;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: #f25c05;
  padding-left: 0.5rem;
  transform: translateX(5px);
}

.link-disabled {
  color: #6c757d !important;
  cursor: not-allowed;
  position: relative;
  user-select: none;
  display: inline-block;
  padding: 0.25rem 0;
}

.link-disabled::after {
  content: " (Próximamente)";
  font-size: 0.75rem;
  color: #f25c05;
  font-style: italic;
}

.link-disabled:hover {
  color: #6c757d !important;
  transform: none;
}

.seccion-titulo {
  border-bottom: 2px solid #f25c05;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem !important;
}

/* ===== SECCIÓN INFORMACIÓN ADICIONAL MEJORADA ===== */

#enlaces-adicionales {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

#enlaces-adicionales::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(242, 92, 5, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242, 92, 5, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

#enlaces-adicionales .container {
  position: relative;
  z-index: 2;
}

#enlaces-adicionales h2 {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #f25c05, #ff8a47, #f25c05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(242, 92, 5, 0.3);
  animation: titleGlow 3s ease-in-out infinite;
}

#enlaces-adicionales h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f25c05, transparent);
  border-radius: 2px;
  animation: underlineMove 3s ease-in-out infinite;
}

@keyframes titleGlow {

  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }

  50% {
    filter: brightness(1.2);
    transform: scale(1.02);
  }
}

@keyframes underlineMove {

  0%,
  100% {
    width: 100px;
    opacity: 0.7;
  }

  50% {
    width: 150px;
    opacity: 1;
  }
}

/* Columnas de información mejoradas */
#enlaces-adicionales .col-md-4 {
  margin-bottom: 2rem;
  position: relative;
}

/* Títulos de sección renovados */
.seccion-titulo {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f25c05;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 2rem !important;
  background: rgba(242, 92, 5, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(242, 92, 5, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.seccion-titulo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 92, 5, 0.2), transparent);
  transition: left 0.6s ease;
}

/* Partículas decorativas para iconos */
.col-md-4:nth-child(1) .seccion-titulo:hover::before {
  left: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 92, 5, 0.3), transparent);
}

.col-md-4:nth-child(2) .seccion-titulo:hover::before {
  left: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
}

.col-md-4:nth-child(3) .seccion-titulo:hover::before {
  left: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.seccion-titulo:hover::before {
  left: 100%;
}

.seccion-titulo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 92, 5, 0.3);
  border-color: #f25c05;
  background: rgba(242, 92, 5, 0.15);
}

/* Iconos para cada sección */
.seccion-titulo::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.seccion-titulo:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
  filter: drop-shadow(0 4px 12px rgba(242, 92, 5, 0.8)) brightness(1.2);
}

/* Iconos modernos SVG para cada sección */
.col-md-4:nth-child(1) .seccion-titulo::after {
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f25c05'%3E%3Cpath d='M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z'/%3E%3C/svg%3E") center/contain no-repeat;
  width: 32px;
  height: 32px;
  animation: iconPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(242, 92, 5, 0.3));
}

.col-md-4:nth-child(2) .seccion-titulo::after {
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f25c05'%3E%3Cpath d='M19 3H5c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4V9h-4V5h-2v4H7v4h4v4z'/%3E%3C/svg%3E") center/contain no-repeat;
  width: 32px;
  height: 32px;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(242, 92, 5, 0.3));
}

.col-md-4:nth-child(3) .seccion-titulo::after {
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f25c05'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  width: 32px;
  height: 32px;
  animation: iconSpin 4s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(242, 92, 5, 0.3));
}

/* Lista de enlaces mejorada */
.footer-links {
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-links li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links li:hover {
  background: rgba(242, 92, 5, 0.1);
  transform: translateX(5px);
}

@keyframes iconPulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    filter: drop-shadow(0 2px 4px rgba(242, 92, 5, 0.3));
  }

  50% {
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(242, 92, 5, 0.6));
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-60%);
  }
}

@keyframes iconSpin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Enlaces activos mejorados */
.footer-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f25c05'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 1.2rem;
}

.footer-links a:hover {
  color: #f25c05;
  padding-left: 3rem;
  background: linear-gradient(90deg, transparent, rgba(242, 92, 5, 0.1), transparent);
}

.footer-links a::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: right 0.5s ease;
}

.footer-links a:hover::after {
  right: 100%;
}

/* Enlaces deshabilitados súper mejorados */
.link-disabled {
  color: #6c757d !important;
  cursor: not-allowed;
  position: relative;
  user-select: none;
  display: block !important;
  padding: 1rem 1.5rem;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05));
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.link-disabled::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c757d'%3E%3Cpath d='M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03.06c2.84.48 5.35 1.91 7.17 4.14l-1.24 1.25C17.5 6.24 15.93 5.46 14.03 5.06V2.06zM19.94 11H17c-.41-2.16-1.52-4.12-3.21-5.68l1.42-1.42C16.95 5.26 18.41 7.94 19.94 11zM13 12h8c0 .34-.04.67-.09 1H13v-1z'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: constructionIcon 2s ease-in-out infinite;
}

.link-disabled::after {
  content: " (Próximamente)";
  font-size: 0.75rem;
  color: #f25c05;
  font-style: italic;
  font-weight: 600;
  background: rgba(242, 92, 5, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.5rem;
  animation: comingSoon 3s ease-in-out infinite;
}

.link-disabled:hover {
  color: #6c757d !important;
  transform: none;
  background: linear-gradient(90deg, rgba(108, 117, 125, 0.15), rgba(108, 117, 125, 0.1));
  border-left-color: #6c757d;
}

@keyframes constructionIcon {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0.7;
  }

  25% {
    transform: translateY(-50%) rotate(-5deg);
    opacity: 1;
  }

  75% {
    transform: translateY(-50%) rotate(5deg);
    opacity: 1;
  }
}

@keyframes comingSoon {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Efectos de partículas flotantes */
#enlaces-adicionales::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(242, 92, 5, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 138, 71, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(242, 92, 5, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 138, 71, 0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: floatingParticles 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatingParticles {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  100% {
    transform: translateY(-100px) translateX(50px);
  }
}

/* Responsive para información adicional */
@media (max-width: 768px) {
  #enlaces-adicionales h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .seccion-titulo {
    font-size: 1.2rem;
    padding: 0.8rem 0;
  }

  .footer-links a,
  .link-disabled {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .footer-links a:hover {
    padding-left: 2.5rem;
  }

  #enlaces-adicionales .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  #enlaces-adicionales h2 {
    font-size: 1.7rem;
  }

  .seccion-titulo {
    font-size: 1.1rem;
  }

  .footer-links a,
  .link-disabled {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
}


/* -------------------- RESPONSIVE -------------------- */
@media screen and (max-width: 768px) {

  #heroCarrusel,
  .carousel-item {
    height: 60vh;
    min-height: 400px;
  }

  /* Ajuste para tablet */
  .carousel-item img[src*="ayapel"] {
    object-position: center 25%;
  }

  .carousel-caption-custom {
    padding: 0 1rem;
    transform: translate(-50%, -45%);
  }

  .carousel-caption-custom h1 {
    font-size: 1.8rem;
  }

  .carousel-caption-custom .lead {
    font-size: 1rem;
  }

  .package-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding: 3rem 1rem;
  }

  .internet-icon,
  .tv-icon {
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .internet-icon i,
  .tv-icon i {
    font-size: 4rem;
    color: #f25c05;
  }

  .plus-sign {
    color: #f25c05;
    font-weight: 800;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }

  .plus-sign span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 576px) {

  #heroCarrusel,
  .carousel-item {
    height: 50vh;
    min-height: 350px;
  }

  /* Ajuste para móvil */
  .carousel-item img[src*="ayapel"] {
    object-position: center 20%;
  }

  .carousel-caption-custom h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .carousel-caption-custom .lead {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .carousel-caption-custom {
    padding: 0 1rem;
    transform: translate(-50%, -40%);
  }

  .package-visual {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .internet-icon,
  .tv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .internet-icon i,
  .tv-icon i {
    font-size: 2rem !important;
  }

  .plus-sign {
    transform: none;
    margin: 0 0.3rem;
  }

  .plus-sign span {
    font-size: 1.5rem !important;
  }

  .package-glow {
    width: 150px;
    height: 80px;
  }
}

@media screen and (max-width: 480px) {
  .package-visual {
    gap: 0.6rem;
    padding: 0.8rem 0.3rem;
  }

  .internet-icon i,
  .tv-icon i {
    font-size: 1.8rem !important;
  }

  .plus-sign span {
    font-size: 1.3rem !important;
    margin: 0 0.2rem;
  }

  .package-glow {
    width: 120px;
    height: 60px;
  }
}

@media screen and (max-width: 360px) {
  .package-visual {
    gap: 0.4rem;
    padding: 0.6rem 0.2rem;
  }

  .internet-icon i,
  .tv-icon i {
    font-size: 1.5rem !important;
  }

  .plus-sign span {
    font-size: 1.1rem !important;
  }

  .package-glow {
    width: 100px;
    height: 50px;
  }
}

/* -------------------- MEJORAS ADICIONALES PARA CARRUSEL -------------------- */
/* Asegurar que videos se reproduzcan correctamente */
.carousel-item video {
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Overlay más suave en móviles */
@media screen and (max-width: 576px) {
  .overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  }
}

/* -------------------- OPTIMIZACIONES GENERALES -------------------- */
/* Mejorar performance de animaciones */
.denuncia-card,
.cobertura-card,
.planes-card,
.tv-category-card {
  will-change: transform;
}

/* Optimización de imágenes para retina */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .denuncia-card img,
  .cobertura-card img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Mejora del contraste en modo oscuro */
@media (prefers-color-scheme: dark) {
  .denuncia-card {
    background-color: #2c2c2e;
    border-color: #444;
    color: #fff;
  }

  .btn-denuncia {
    background-color: #0066cc;
  }

  .btn-denuncia:hover {
    background-color: #f25c05;
    color: #000;
  }
}

/* -------------------- SECCIÓN TELEVISIÓN HD -------------------- */
#television {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tv-hero-content {
  padding: 2rem 0;
}

.tv-visual {
  position: relative;
}

.package-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  padding: 3rem 1rem;
}

.internet-icon,
.tv-icon {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.internet-icon i,
.tv-icon i {
  font-size: 6rem;
  color: #f25c05;
}

.plus-sign {
  color: #f25c05;
  font-weight: 800;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.plus-sign span {
  font-size: 4rem;
}

.package-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(242, 92, 5, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: packageGlow 4s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes packageGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Estilos para las tarjetas de planes */
.plan-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(242, 92, 5, 0.2);
  border-color: var(--color-primary);
}

.plan-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.plan-card.featured .plan-speed {
  position: relative;
}

.plan-card.featured .speed-number {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #ff6b1a 0%, #f25c05 50%, #e04503 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: featuredNumberGlow 2s ease-in-out infinite;
  text-shadow: 0 4px 8px rgba(242, 92, 5, 0.4);
}

.plan-card.featured .speed-top i {
  font-size: 2.2rem;
  animation: featuredSpeedRotate 2s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(242, 92, 5, 0.3));
}

.plan-card.featured .speed-bottom i {
  font-size: 1.6rem;
  animation: featuredTvGlow 2s ease-in-out infinite;
}

.plan-card.featured .speed-bottom span {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #e04503 0%, #f25c05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-card.featured .plan-speed::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #f25c05, #ff6b1a);
  border-radius: 2px;
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes featuredNumberGlow {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 4px 8px rgba(242, 92, 5, 0.4);
  }

  50% {
    transform: scale(1.12);
    text-shadow: 0 6px 16px rgba(242, 92, 5, 0.6);
  }
}

@keyframes featuredSpeedRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes featuredTvGlow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    color: #e04503;
  }

  50% {
    opacity: 0.8;
    transform: scale(1.15);
    color: #f25c05;
  }
}

@keyframes underlineGlow {

  0%,
  100% {
    opacity: 0.7;
    box-shadow: 0 0 5px rgba(242, 92, 5, 0.3);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(242, 92, 5, 0.6);
  }
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-speed {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.speed-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.speed-top i {
  font-size: 1.8rem;
  color: #f25c05;
  animation: speedRotate 3s linear infinite;
}

.speed-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f25c05 0%, #ff6b1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(242, 92, 5, 0.3);
  animation: numberPulse 2s ease-in-out infinite;
}

.speed-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f25c05;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.speed-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.speed-bottom i {
  font-size: 1.4rem;
  color: #e04503;
  animation: tvBlink 2.5s ease-in-out infinite;
}

.speed-bottom span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e04503;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes speedRotate {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes numberPulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.08);
    filter: brightness(1.2);
  }
}

@keyframes tvBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.plan-features {
  margin: 2rem 0;
}

.plan-features p {
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.plan-price {
  margin: 2rem 0;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.tv-category-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.tv-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(242, 92, 5, 0.2);
  border-color: #f25c05;
}

.tv-category-card i {
  transition: all 0.3s ease;
}

.tv-category-card:hover i {
  transform: scale(1.1);
  color: #e04503 !important;
}

.tv-cta {
  background: linear-gradient(135deg, #f25c05 0%, #e04503 100%);
  border: 2px solid #f25c05;
  position: relative;
  overflow: hidden;
}

.tv-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: ctaglow 4s ease-in-out infinite;
}

@keyframes ctaglow {

  0%,
  100% {
    opacity: 0.3;
    transform: rotate(0deg);
  }

  50% {
    opacity: 0.7;
    transform: rotate(180deg);
  }
}

.feature-item {
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  color: #f25c05;
}

.text-orange {
  color: #f25c05 !important;
}

/* Responsive para TV */
@media (max-width: 768px) {

  /* Optimización general para tablets */
  #heroCarrusel,
  .carousel-item {
    height: 60vh;
    min-height: 450px;
  }

  .carousel-caption-custom h1 {
    font-size: 2rem;
  }

  .carousel-caption-custom .lead {
    font-size: 1.1rem;
  }

  .tv-hero-content {
    text-align: center;
    padding: 1rem 0;
    order: 2;
  }

  .tv-visual {
    order: 1;
    margin-bottom: 2rem;
  }

  .package-visual {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .internet-icon i,
  .tv-icon i {
    font-size: 3rem !important;
  }

  .plus-sign span {
    font-size: 2.5rem !important;
  }

  .plus-sign {
    transform: none;
    margin: 0 0.5rem;
  }

  .package-glow {
    width: 250px;
    height: 120px;
  }

  /* Navegación responsive para tablets */
  .navbar-nav .nav-link {
    padding: 0.6rem 0.8rem;
  }
}

/* Estilos adicionales para pantallas pequeñas de tablet */
@media (max-width: 992px) and (min-width: 769px) {

  #heroCarrusel,
  .carousel-item {
    height: 70vh;
  }

  .carousel-caption-custom h1 {
    font-size: 2.5rem;
  }

  .carousel-caption-custom .lead {
    font-size: 1.3rem;
  }
}

/* -------------------- BOTÓN WHATSAPP CTA -------------------- */
.btn-whatsapp-cta {
  display: inline-block;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: white !important;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white !important;
  text-decoration: none !important;
}

.btn-whatsapp-cta:active {
  transform: translateY(0);
}

.btn-whatsapp-cta:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* -------------------- OPTIMIZACIÓN MÓVIL ADICIONAL -------------------- */
@media (max-width: 480px) {

  /* Botones más grandes para táctil */
  .btn-elegante,
  .btn-whatsapp-cta {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 44px;
  }

  /* Formularios optimizados */
  .form-control {
    min-height: 44px;
    font-size: 16px;
  }

  /* Carrusel ultra móvil */
  #heroCarrusel,
  .carousel-item {
    height: 45vh;
    min-height: 350px;
  }

  .carousel-caption-custom h1 {
    font-size: 1.2rem;
  }

  .carousel-caption-custom .lead {
    font-size: 0.85rem;
  }

  /* Planes más compactos en móvil */
  .plan-card {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
  }

  .speed-number {
    font-size: 2.2rem !important;
  }

  .speed-unit {
    font-size: 1.1rem !important;
  }

  .speed-bottom span {
    font-size: 1.3rem !important;
  }

  .speed-top i {
    font-size: 1.4rem !important;
  }

  .speed-bottom i {
    font-size: 1.1rem !important;
  }

  .plan-card.featured .speed-number {
    font-size: 2.5rem !important;
  }

  .plan-card.featured .speed-top i {
    font-size: 1.6rem !important;
  }

  .plan-card.featured .speed-bottom i {
    font-size: 1.3rem !important;
  }

  .plan-price .price-amount {
    font-size: 1.8rem;
  }

  /* Cobertura optimizada */
  .cobertura-card {
    padding: 1rem;
  }

  .cobertura-img {
    max-height: 150px;
    object-fit: cover;
  }

  /* Testimonios compactos */
  .bg-secondary {
    padding: 1.5rem !important;
  }

  /* Footer optimizado */
  .footer-institucional {
    text-align: center !important;
  }

  .footer-institucional .row>div {
    margin-bottom: 1rem;
  }
}

/* Optimización para pantallas muy pequeñas */
@media (max-width: 360px) {
  .carousel-caption-custom {
    padding: 0 0.5rem;
    transform: translate(-50%, -35%);
  }

  .carousel-caption-custom h1 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .carousel-caption-custom .lead {
    font-size: 0.8rem;
  }

  .package-visual {
    padding: 1rem;
    gap: 0.5rem;
  }

  .navbar-brand span {
    font-size: 1rem;
  }

  .logo-redondo {
    width: 45px;
    height: 45px;
  }
}

/* ================== SPEEDTEST STYLES ================== */
.speedtest-container {
  position: relative;
  background: linear-gradient(135deg, #343a40 0%, #495057 100%);
  border: 2px solid #f25c05;
}

.speedtest-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.speedtest-circle {
  width: 200px;
  height: 200px;
  border: 6px solid #495057;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #212529, #343a40);
  transition: all 0.3s ease;
  cursor: pointer;
}

.speedtest-circle:hover {
  border-color: #f25c05;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(242, 92, 5, 0.4);
}

.speedtest-circle.testing {
  border-color: #f25c05;
  animation: speedtest-pulse 2s infinite;
}

.speedtest-button {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f25c05, #ff8a47);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.speedtest-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(242, 92, 5, 0.6);
}

.speedtest-text {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

.speed-result-card {
  padding: 1rem;
  background: rgba(242, 92, 5, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(242, 92, 5, 0.3);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.speed-result-card:hover {
  background: rgba(242, 92, 5, 0.2);
  border-color: #f25c05;
  transform: translateY(-5px);
}

/* Animaciones del speedtest */
@keyframes speedtest-pulse {
  0% {
    border-color: #f25c05;
    box-shadow: 0 0 0 0 rgba(242, 92, 5, 0.7);
  }

  70% {
    border-color: #ff8a47;
    box-shadow: 0 0 0 15px rgba(242, 92, 5, 0);
  }

  100% {
    border-color: #f25c05;
    box-shadow: 0 0 0 0 rgba(242, 92, 5, 0);
  }
}

@keyframes speedtest-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.speedtest-circle.testing::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 6px solid transparent;
  border-top: 6px solid #f25c05;
  border-radius: 50%;
  animation: speedtest-rotate 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .speedtest-circle {
    width: 150px;
    height: 150px;
  }

  .speedtest-button {
    width: 90px;
    height: 90px;
  }

  .speedtest-text {
    font-size: 1rem;
  }
}

/* ==================== LIMITACIÓN DE VELOCIDAD HERO ==================== */

.limitacion-hero-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.limitacion-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.limitacion-particle {
  position: absolute;
  background: rgba(242, 92, 5, 0.3);
  border-radius: 50%;
  animation: limitacionFloat 6s ease-in-out infinite;
}

.limitacion-particle:nth-child(1) {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.limitacion-particle:nth-child(2) {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.limitacion-particle:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 20%;
  animation-delay: 1s;
}

.limitacion-particle:nth-child(4) {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 70%;
  animation-delay: 3s;
}

.limitacion-particle:nth-child(5) {
  width: 14px;
  height: 14px;
  top: 70%;
  left: 40%;
  animation-delay: 1.5s;
}

.limitacion-particle:nth-child(6) {
  width: 9px;
  height: 9px;
  top: 40%;
  left: 90%;
  animation-delay: 2.5s;
}

@keyframes limitacionFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.limitacion-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.limitacion-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.limitacion-main-icon {
  font-size: 4rem;
  color: #f25c05;
  background: rgba(242, 92, 5, 0.1);
  padding: 1.5rem;
  border-radius: 50%;
  border: 3px solid rgba(242, 92, 5, 0.3);
  animation: limitacionIconPulse 2s ease-in-out infinite;
}

@keyframes limitacionIconPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(242, 92, 5, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(242, 92, 5, 0.5);
  }
}

.limitacion-signal-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.limitacion-wave {
  position: absolute;
  border: 2px solid rgba(242, 92, 5, 0.4);
  border-radius: 50%;
  animation: limitacionWaveExpand 3s ease-out infinite;
}

.limitacion-wave.wave-1 {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.limitacion-wave.wave-2 {
  width: 100px;
  height: 100px;
  top: 10px;
  left: 10px;
  animation-delay: 1s;
}

.limitacion-wave.wave-3 {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  animation-delay: 2s;
}

@keyframes limitacionWaveExpand {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.limitacion-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #f25c05, #ff8a47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.limitacion-hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.limitacion-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.limitacion-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 120px;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(242, 92, 5, 0.2);
  box-shadow: 0 10px 25px rgba(242, 92, 5, 0.3);
}

.stat-item i {
  font-size: 2rem;
  color: #f25c05;
}

.stat-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

/* Responsive para Limitación Hero */
@media (max-width: 768px) {
  .limitacion-hero-title {
    font-size: 2.5rem;
  }

  .limitacion-hero-subtitle {
    font-size: 1.4rem;
  }

  .limitacion-hero-description {
    font-size: 1rem;
  }

  .limitacion-main-icon {
    font-size: 3rem;
    padding: 1rem;
  }

  .limitacion-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: 100px;
    padding: 0.8rem;
  }

  .stat-item i {
    font-size: 1.5rem;
  }

  .stat-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .limitacion-hero-title {
    font-size: 2rem;
  }

  .limitacion-hero-subtitle {
    font-size: 1.2rem;
  }

  .limitacion-hero-description {
    font-size: 0.9rem;
  }

  .limitacion-hero-content {
    padding: 1rem;
  }
}