/*---------------------------------------Estilos base------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;  
}

.container {
    width: 100%;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
}

.container--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.column {
    width: 100%;
}

.social-bar-fixed {
  display: none;
}

/*---------------------------------------Estilos Header----------------------------------*/
.fondo-header-slider {
  background: url('../images/inicio/Background_Carrusel_1.png') no-repeat center;
  background-size: cover;
  width: 100%;
}

.main-header {
  width: 100%;
  padding: 20px 0;
  top: 0;
  left: 0;
  z-index: 1000;
}

.main-header__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 0 auto;
  padding: 20px 40px;
}

.logo-container {
  width: auto;
}

.main-header__imgHeader {
  height: 100px;
  max-width: 160px;
  object-fit: contain;
  transform: none;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.separator {
  color: white;
}


.menu__item {
  margin: 0 5px;
  position: relative;
  padding: 0;
}

.menu__link {
  text-decoration: none;
  color: #ffffff;
  font-size: 19px;
  padding: 10px 10px 15px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.menu__link--select,
.menu__link:hover {
  color: #FF6600;
}

/*------------Redes Sociales------------*/
.social-icon {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-icon__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ff6600;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon__link:hover {
  background-color: #df432e;
  transform: translateY(-3px);
}

/*----------------------------------Estilos Slider Principal-----------------------------*/

/* SLIDER */
.slider-principal { 
    color: white;
    padding: 100px 0 180px 0;
    position: relative;
    overflow: hidden;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide {
  display: none;
  opacity: 0;
}

.slide.active {
  display: block;
  animation: slideIn 0.6s ease forwards;
}

.contenido-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 40px;
}

.contenido-slider.reverse {
  flex-direction: row-reverse;
}

.texto-slider, .img-slider {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.slide.active .texto-slider,
.slide.active .img-slider {
  opacity: 1;
  transform: translateY(0);
}

.texto-slider {
  flex: 2;
  padding-left: 50px;
}

.contenido-slider.reverse .texto-slider {
  padding-left: 0;
  padding-right: 20px;
  text-align: right;
}

.texto-slider h2 {
    font-size: 50px;
    font-weight: 100;
}

.texto-slider p {
    font-size: 25.8px;
    font-weight: 600;
}

.texto-slider span {
    font-size: 71px;
    font-weight: 900;
    color: #FFD401;
}

.img-slider {
  flex: 1;
  text-align: center;
  transform: translate(-80px);
  transition: transform 0.3s ease;
}

.contenido-slider.reverse .img-slider {
  transform: translate(80px); /* lo invertimos */
}

.img-slider img {
    height: 390px; /* Altura fija para el logo */
    max-width: fit-content;
}

.slide-2-ajuste .img-slider {
  margin-left: 120px;
}

.slide-2-ajuste .texto-slider {
  padding-right: 40px; /* Ajusta si es necesario */
}


/* Flechas */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.prev {
  left: 80px;
}

.next {
  right: 80px;
}

.arrow-icon {
  width: 85px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.arrow-icon:hover {
  opacity: 1;
}

/* Dots */
.dots-container {
  text-align: center;
  position: absolute;
  bottom: 25px;
  width: 73%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active, .dot:hover {
  background-color: #FF6600;
}

/*------------------------------------404---------------------------------*/

.error-404 {
  min-height: 70vh;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.error-contenido {
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

.error-icono {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 1.2s infinite;
}

.error-contenido h1 {
  font-size: 2.8rem;
  color: #ff6600;
  margin-bottom: 20px;
}

.error-contenido p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 15px;
}

.btn-volver {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff6600;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-volver:hover {
  background-color: #e55300;
  transform: scale(1.05);
}

/* Animaciones */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/*-------------------------------------PAGINA DE INICIO----------------------------------*/
/*-----------------------------------Estilos Viper SmartStart----------------------------*/

.viper-smartstart {
    background: #F4F9FF;
    padding: 70px 0;
}

.contenido-smart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.img-smart img {
    width: auto;
    height: 550px; /* Altura fija para el logo */
    max-width: fit-content;
}

.texto-smart h3 {
    font-size: 54px;
    font-weight: 900;
    color:#FF6600;
    margin-bottom: 15px;
}

.texto-smart p {
    font-size: 25px;
    color: #646569;
    margin-bottom: 7px;
}

.texto-smart {
    text-align: center;
    transform: translate(65px);
}

.botones-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
}

.botones-apps a {
  display: inline-block;
  margin: 0 18px; /* Puedes ajustar el valor según lo veas mejor */
}

.botones-apps img {
    width: auto;
    height: 68px; /* Altura fija para el logo */
    max-width: fit-content;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/*-------------------------------------Estilos Viper Alarmas-----------------------------*/

.viper-alarmas {
    background: url('../images/inicio/Background_Viper.png') center;
    background-size: cover;
    width: auto;
    padding: 200px 0;
    text-align: center;
}

.contenido-viper {
    display: flex;
    flex-direction: column; /* ✅ Así siempre pone imagen arriba y texto abajo */
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

.contenido-viper img {
    width: auto;
    height: 100px; /* Altura fija para el logo */
    max-width: 100%;
    margin-bottom: 15px;
}

.contenido-viper h1 {
    text-align: center;
    font-size: 30px;
    font-weight: lighter;
    color: #ffffff;
    margin-top: 10px;
}


/*----------------------------------Estilos Nuestros Clientes----------------------------*/

.nc-clientes-section {
  background: white;
  padding: 155px 0;
  text-align: center;
  position: relative;
}

.nc-titulo {
    font-family: 'Montserrat', sans-serif;
    background-color: #ff6600;
    color: white;
    font-size: 60px;
    font-weight: 900;
    padding: 29px 30px;
    padding-left: 370px;
    padding-right: 370px;
    display: inline-block;
    border-radius: 14px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.nc-slider-container {
  position: relative;
  max-width: 1530px; /* Más parecido a la referencia */
  margin: 0 auto;
  padding: 30px 40px;
}

#ncSliderClientes.slick-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  /* El alto del slider lo controla el contenido */
}

#ncSliderClientes .slick-track {
  display: flex;
  align-items: center;
}

#ncSliderClientes .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 135px !important; /* más alto para centrar verticalmente */
}

.nc-cliente-logo {
  height: 140px;
  width: 270px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  margin: 0 18px;
  transition: box-shadow 0.2s;
}

.nc-cliente-logo img {
  max-height: 88px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 65px;    /* flechas más grandes */
  height: 65px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
}

.nc-arrow img {
  width: 45px;
  height: 90px;
  transition: opacity 0.2s;
}

.nc-arrow:hover img {
  opacity: 1;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.19));
}

.nc-prev {
  left: -125px;
}
.nc-next {
  right: -125px;
}


/*-------------------------------------Estilos Wialon Hosting----------------------------*/

.wialon-hosting {
    background: url('../images/inicio/BackGround_Winlon.png') no-repeat center;
    background-size: cover;
    width: 100%;
    padding: 180px 0;
}

.contenido-wialon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.img-wialon, .texto-wialon {
    flex: 1;
    display: grid;
    justify-content: center;
}

.botones-w_apps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
}

.botones-w_apps a {
  display: inline-block;
  margin: 0 7px; /* Puedes ajustar el valor según lo veas mejor */
}

.botones-w_apps img {
    width: auto;
    height: 68px; /* Altura fija para el logo */
    max-width: fit-content;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.texto-wialon h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 100;
    padding-top: 20px 0 10px;
    color: #646569;
}

/*----------------------------------------Estilos Audison-------------------------------*/

.audison {
    background: url('../images/inicio/Background_audison.png') center center;
    background-size: cover;
    width: auto;
    padding: 180px 0;
}

.contenido-audison {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.texto-audison {
    flex: 1;
    padding-right: 30px;
    display: grid;
    justify-content: center;
}

.texto-audison h3 {
    font-size: 55px;
    color: #ffffff;
    font-weight: 100;
}

.texto-audison span {
    font-weight: 900;
    color: rgb(0, 162, 255);
}

.texto-audison p {
    font-size: 30px;
    color: #ffffff;
}

.texto-audison img {
    width: auto;
    height: 85px; /* Altura fija para el logo */
    max-width: 100%;
}

.img-audison {
    flex: 1;
    text-align: center;
}

.btn-audison {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FF6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.audison-bg {
  background: rgba(255,255,255,0.05);
  padding: 25px 35px;
  margin-top: 36px;
  margin-bottom: 40px;
  font-size: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  width: 150%;          /* Ocupar todo el ancho del bloque */
  max-width: 900px;     /* Limita el máximo, ajusta según tu diseño */
  display: block;       /* Asegura que se expanda a lo ancho */
}



/*------------------------------------Footer--------------------------------------------*/

.footer {
  background-color: #1a1a1a;
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}

.footer-logo-box {
  flex: 0 0 610px;
  max-width: 800px;
  display: flex;
  align-items: flex-end;
}

.logo-orange-bg {
  background-color: #ff6600;
  border-radius: 0 50px 0 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 42px 80px;
}

.logo-orange-bg img {
  max-width: 150px;
  height: auto;
}

.footer-columns {
  flex: 1;
  display: flex;
  gap: 100px;
  padding: 80px 160px;
  padding-bottom: 45px;
  align-items: flex-start;
}

.footer-column {
  min-width: 190px;
}

.footer-column h4 {
  color: #ff6600;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 23px;
}

.footer-column ul {
  list-style: none;
  font-size: 15px;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #ff6600;
}

.footer-column p {
  font-size: 15px;
  margin: 20px 0;
  color: #ccc;
}

.direccion p {
  margin: 8px 0;
}

.direccion {
  padding-left: 60px;
}

.footer-bottom {
  background-color: #292929;
  text-align: center;
  padding: 40px;
  font-size: 11px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-bottom p {
  font-family: Arial, Helvetica, sans-serif;
}

.footer-bottom .web-icon {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin: 0 5px;
  display: inline-block;
}


/*------------------------------------ Página Seguridad --------------------------------------------*/

.seguridad-hero {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.seguridad-hero__contenido {
  flex-direction: column-reverse;
  gap: 30px;
}

.seguridad-hero__texto h1 {
  font-size: 36px;
  color: #ff6600;
  margin-bottom: 10px;
}

.seguridad-hero__texto p {
  font-size: 18px;
  color: #ccc;
}

.seguridad-hero__imagen img {
  max-width: 300px;
  margin: auto;
}

/*-----------------------------------¿Que alarma elegir?---------------------------------*/

.elige-alarma {
  background: url('../images/seguridad/Background_alarmas.png');
  background-size: contain;
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.elige-alarma::before {
  background-color: #ffffff;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 0;
}

.elige-alarma > .elige-alarma__container{
  position: relative;
  z-index: 1;
}

.elige-alarma__titulo {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 130px;
  margin-top: 80px;
}

.elige-alarma__opciones {
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.elige-alarma__item {
  background: url('../images/seguridad/Background_productos_alarmas.png') center no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  width: 400px;
  min-height: 550px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.elige-alarma__icono-wrapper {
  background-color: #4D4D4D;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.elige-alarma__icono img {
  width: 50px;
  height: auto;
  background-color: transparent;
}

.llave-alarma {
  width: 60px;
  height: 130px;
}

.llave2-alarma {
  width: 80px;
  height: 110px;
}

.celular-alarma {
  width: 60px;
  height: 115px;
}

.elige-alarma__text {
  text-align: center;
  align-content: center;
  padding: 0 10px;
  margin-bottom: auto;
}

.elige-alarma__text h3 {
  font-size: 35px;
  font-weight: 300;
  width: 395px;
  padding-bottom: 20px;
  color: #fff;
}

.elige-alarma__text p {
  font-size: 16px;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  line-height: 25px;
}

.elige-alarma__text span {
  font-weight: bold;
  color: #ffffff;
}


/*------------------------ PROTEC V2 -----------------------------*/
#protec-v2 {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.protec-title {
  font-size: 60px;
  font-weight: 700;
}

.protec-title span {
  display: block;
  font-size: 36px;
  font-weight: 100;
  color: black;
}

.flecha-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.flecha-img {
  width: 115px;
  height: auto;
}

.protec-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.protec-icons {
  display: flex;
  justify-content: space-between;
  width: 1350px; /* Mismo ancho que la barra */
}

.protec-control {
  width: auto;
  max-height: fit-content;
  transform: translate(70px);
  margin-left: 25px;
  padding-top: 30px;
}

.protec-auto {
  width: auto;
  max-height: fit-content;
  margin-right: 25px;
}

/* BARRA */
.range-bar {
  width: 1100px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-line {
  width: 100%;
  height: 55px;
  background-color: #ff6a00;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
}

.bar-text {
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

/* Barras verticales en extremos */
.bar-marker {
  width: 10px;
  height: 120px;
  border-radius: 6px;
  background-color: #ff6a00;
  position: absolute;
  top: 25px;
}

.bar-marker.left {
  left: 0;
}

.bar-marker.right {
  right: 0;
}

/* INFO Y PIE */
.protec-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 170px;
  flex-wrap: wrap;
}

.info-box {
  max-width: 300px;
  text-align: center;
  margin: 50px;
}

.icon_info__wrapped {
  background-color: #f6f6f6;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.info-box img {
  width: 80px;
  justify-content: center;
}

.info-box p {
  font-size: 18px;
  color: #333;
}

.divider {
  width: 2px;
  height: 290px;
  border-radius: 6px;
  background-color: #bbbbbb;
  position: absolute;
}

.protec-footer {
  margin-top: 70px;
  font-size: 28px;
  color: #777;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.hecho-mexico {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider-range {
  width: 660px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-bottom {
  width: 100%;
  height: 2px;
  background-color: #ff6a00;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------CORPORATIVOS--------------------------*/
.corporativos {
  background: url('../images/seguridad/Background_corporativos.png') center no-repeat;
  padding: 100px 0;
  text-align: center;
}

.corporativos__titulo {
  text-align: center;
  font-size: 35px;
  font-weight: 400;
    color: #666;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.corporativos__titulo span {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #ff5c00;
  margin-top: 5px;
}

/* VEHÍCULOS CENTRADOS */
.corporativos__vehiculos {
  justify-content: center;
  gap: 130px;
  margin: 60px 0;
}

.corporativos__vehiculos img {
  width: auto;
  max-width: fit-content;
  justify-content: center;
}

.corporativos-icon__wrappred {
    background-color: #cecdcd;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporativos__cruz {
  position: relative; /* Necesario para posicionar el centro */
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 75px auto;
}

.cruz__bloque {
  width: 50%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
  box-sizing: border-box;
  color: #666;
}

.bloque-top-right {
  border-left: 1px dashed #666;
}

.bloque-bottom-left {
  border-top: 1px dashed #666;
}

.bloque-bottom-right {
  border-left: 1px dashed #666;
  border-top: 1px dashed #666;
}

/* Círculo central */
.cruz__centro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Sobre los bordes */
}

.centro__circulo {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #666;
}


/*------------------------------------RASTREO---------------------------------*/
.rastreo-intro {
  background: url('../images/rastreo/bg-rastreo.png') center/cover no-repeat;
  padding: 195px 20px 250px;
  color: white;
  text-align: center;
  position: relative;
}

.rastreo-intro__titulo {
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.rastreo-intro__contenedor {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.rastreo-intro__contenido {
  background: #fff;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: #333;
  position: relative;
  z-index: 1;
  text-align: left;
}

.rastreo-intro__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
}

.rastreo-intro__contenido-list {
  flex: 0 135px;
  margin-left: 250px;
}

.rastreo-intro__columna-derecha {
  flex: 1 220px;
}

.rastreo-intro__contenido-lista,
.rastreo-intro__etiquetas-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rastreo-intro__contenido-lista li {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 17px;
  text-align: justify;
}

.rastreo-intro__contenido-lista li::before {
  content: "✔ ";
  color: #ff5c00;
  font-weight: bold;
}

.rastreo-intro__etiquetas-box {
  background: #444;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.rastreo-intro__etiquetas-lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  text-align: justify;
  list-style: disc;
  list-style-position: inside;
}

.rastreo-intro__etiquetas-lista li {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.rastreo-intro__contenido p {
  font-size: 18px;
  color: #444;
  text-align: center;
}

.rastreo-intro__contenido strong {
  color: #ff5c00;
}

/* Celular flotante a la derecha */
.rastreo-intro__img {
  position: absolute;
  top: 35%;
  right: 75%;
  transform: translateY(-45%);
  z-index: 2;
}

.rastreo-intro__img img {
  max-width: 345px;
  height: auto;
}

/* Logo fijo dentro del contenido */
.rastreo-intro__logo {
  position: absolute;
  bottom: -10%;
  right: -5%;
  z-index: 3;
}

.rastreo-intro__logo img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}


/*-------------------------------APPS------------------------------*/
/* SECCIÓN APPS */
.rastreo-apps {
  background-color: #ffffff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin: 200px 0 50px 0;
}

/* GRID FLEXIBLE */
.rastreo-apps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px 80px;
}

/* TARJETA */
.rastreo-app {
  background: #ffffff;
  padding: 60px 20px 25px; /* espacio arriba para ícono */
  margin-bottom: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  width: 400px;
  height: 250px;
}

.rastreo-app:hover {
  transform: translateY(-5px);
}

/* ICONO SUPERIOR */
.rastreo-app__icono-wrapper {
  background-color: #f6f6f6;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.08);
}

.rastreo-app__icono-wrapper img {
  width: 40px;
  height: auto;
}

.rastreo-app__divisor {
  width: 18%;
  height: 6px;
  background-color: #ff6600;
  border-radius: 4px;
  margin: 10px auto;
}

/* TEXTO */
.rastreo-app h3 {
  font-size: 35px;
  color: #232526;
  margin-bottom: 10px;
  margin-top: 5px;
  font-weight: 800;
}

.rastreo-app p {
  color: #666;
  font-size: 15px;
  line-height: 1.4;
}

/* ICONOS MÚLTIPLES (para "Muchas más") */
.rastreo-app__container-img {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.rastreo-app__container-img .rastreo-app__icono-wrapper {
  position: static;
  transform: none;
  width: 70px;
  height: 70px;
  background-color: #f6f6f6;
}

/*--------------FMU130----------------*/

.rastreo-device {
  background: url('../images/rastreo/bg-fmu130.png') center no-repeat;
  background-size: cover;
  padding: 60px 20px;
}

.rastreo-device__detalles {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin-top: 90px;
  margin-bottom: 90px;
}

.rastreo-device__img {
  width: 350px;
  max-width: 100%;
  margin: auto;
}

.rastreo-device__img img {
  width: 100%;
  height: auto;
  display: block;
}

.rastreo-device__list {
  display: flex;
  flex-direction: column;
  gap: 55px;
  list-style: none;
  padding: 0;
}

.rastreo-device__list li {
  display: flex;
  align-items: center; 
  background-color: rgba(168, 168, 168, 0.61);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
  position: relative;
  width: 700px;
  padding: 0 30px;
  height: 80px; 
}

/* Cinta izquierda (flecha hacia la derecha) */
.rastreo-device__list.left li {
  background: linear-gradient(to left, #e0e0e0 0%, transparent 100%);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  align-self: flex-end;
  text-align: right;
    justify-content: flex-end;
}

/* Cinta derecha (flecha hacia la izquierda) */
.rastreo-device__list.right li {
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
  background: linear-gradient(to right, #e0e0e0 0%, transparent 100%);
  align-self: flex-start;
  text-align: left;
    justify-content: flex-start;
}


/*------------------------------------CONFORT---------------------------------*/

/* ------------------ AUDIO A TU ESTILO ------------------ */
.audio-estilo {
    background: url('../images/confort/bg-audio-estilo.png') center;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.audio-estilo .titulo-seccion {
    font-size: 60px;
    font-weight: 700;
    color: #ff6600;
    margin-top: 100px;
    margin-bottom: 100px;
}

.grid-estilo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px 100px;
}

.estilo-item {
    max-width: 400px;
    text-align: center;
}

.estilo-item img {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 220px;
    background-color: rgba(100, 100, 100, 0.5);
    border-radius: 50%;
    height: 200px;
    width: 200px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.estilo-item h3 {
    font-size: 35px;
    color: white;
    margin-bottom: 10px;
}

.estilo-item p {
    font-size: 0.95rem;
    color: white;
}

/* ------------------ PROYECTOS PROFESIONALES ------------------ */
.proyectos-profesionales {
    padding: 120px 20px;
    background-color: #fff;
    text-align: center;
}

.titulo-seccion {
    color: #ff6600;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.grid-proyectos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 40px;
    overflow: hidden;
}

.grid-proyectos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ------------------ MARCAS RECONOCIDAS ------------------ */
.marcas-reconocidas {
    position: relative;
    padding: 150px 20px 100px;
    background-color: #f5f5f5;
    text-align: center;
}

.marcas-reconocidas__container {
    padding: auto;
}

.marcas-reconocidas .titulo-seccion {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff6600;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: bold;
  padding: 20px 60px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 1;
}

.grid-marcas {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    align-items: center;
}

.grid-marcas img {
    max-width: 260px;
    height: auto;
}

.grid-marcas img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



/*--------------------------------------------CONTACTO----------------------------------------*/

/* Sección de contacto */
.contacto {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.contacto__titulo {
  color: #FF5A00;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 15px;
}

.contacto__descripcion {
  margin-bottom: 30px;
  color: #333;
}

.contacto__form {
  max-width: 800px;
  margin: 0 auto;
}

.contacto__inputs {
  gap: 10px;
  margin-bottom: 20px;
}

.contacto__input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
}

.contacto__textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.contacto__recaptcha {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.contacto__botones {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contacto__btn {
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

.contacto__btn--borrar {
  background-color: #666;
  color: #fff;
}

.contacto__btn--enviar {
  background-color: #FF5A00;
  color: #fff;
}

/*------------------------------------MAPA---------------------------------*/
.mapa {
  background-color: #FF5A00;
  color: #fff;
  text-align: center;
  padding: 20px 0 0 0;
}

.mapa__direccion {
  padding: 10px 0;
  font-weight: bold;
  font-size: 16px;
}

.mapa__contenedor {
  width: 100%;
  height: 400px;
}

.mapa__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/*------------------------------------PRODUCTOS---------------------------------*/

.contenedor-productos {
  padding: 130px 20px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  background: #fff;
}

.titulo-principal_container {
  font-size: 55px;
  color: #ff6600;
  margin-bottom: 40px;
  font-weight: 900;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.producto-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.producto-card:hover {
  transform: translateY(-5px);
}

.producto-card img {
  width: 150px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 15px;
}

.producto-card h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  min-height: 48px;
  line-height: 1.2;
}

.boton-ver {
  position: absolute;
  bottom: -15px; /* sobresale del borde inferior */
  left: 50%;
  transform: translateX(-50%);
  background: #ff6600;
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.438);
}

.boton-ver:hover {
  background-color: #e95c00;
}


/*------------------------------------VISUALIZACIÓN PRODUCTOS---------------------------------*/

.vista-producto {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.titulo-principal {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-break: break-word;
  line-height: 1.2;
}

.producto-detalle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 0 25px rgba(0,0,0,0.05);
}

.producto-img {
  flex: 1 1 40%;
  text-align: center;
}

.producto-img img {
  max-width: 500px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.caracteristicas-lista {
  list-style: disc inside;
  padding-left: 1rem;
  margin-top: 1rem;
}

.caracteristicas-lista li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.producto-info {
  flex: 1 1 50%;
  color: #555;
}

.producto-info h3 {
  color: #ff6600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 700;
}

.producto-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.encabezado-producto {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 4rem;
  margin-bottom: 2rem;
  gap: 1rem;
}

.boton-regresar {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.boton-regresar:hover {
  background-color: #ccc;
}

.producto-botones {
  display: flex;
  justify-self: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.boton-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.boton-whatsapp:hover {
  background-color: #128C7E;
}




