 /* INDEX */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #fff;
    color: #facc15;
  }
  
  /* NAVBAR */
  .navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 10;
  }
  
  .logo {
    font-weight: bold;
    font-size: 20px;
    color: #facc15;
  }
  
  .logo span {
    color: white;
  }
  
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-size: 14px;
  }
  
  nav a:hover {
    color: #facc15;
  }
  
  .btn-nav {
    background: #facc15;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  /* HERO */
  .hero {
    height: 130vh;
    background: url('../imagenes/fondo1.jpeg') no-repeat center/cover;
  }
  
  .overlay {
    background: rgba(255, 251, 251, 0.055);
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .content {
    margin-left: 60px;
    max-width: 600px;
  }
  
  .content h1 {
    font-size: 50px;
    line-height: 1.2;
  }
  
  .content h1 span {
    color: #facc15;
  }
  
  .content p {
    margin-top: 20px;
    color: #ccc;
  }
  
  .buttons {
    margin-top: 25px;
  }
  
  .btn-primary {
    background: #facc15;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    margin-right: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-secondary {
    border: 1px solid #fff;
    background: transparent;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* FEATURES */
  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 60px;
    background: rgb(255, 255, 255);
  }
  
  .card {
    background: #fcfbfb;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
  }
  
  .card h3 {
    color: #facc15;
  }
  
  .card p {
    margin-top: 10px;
    font-size: 14px;
  }

  /* NAVBAR NORMAL */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  /* NAVBAR CUANDO BAJAS */
  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.432);
    padding: 10px 60px;
    box-shadow: 0 4px 10px rgb(212, 192, 8);
  }

  .logo img {
    height: 100px;   /* tamaño del logo */
    width: auto;
    object-fit: contain;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 60px;
    background: rgb(255, 255, 255);
  }
  
  .card {
    perspective: 1000px;
    
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 160px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  /* 🔄 GIRO */
  .card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  /* CARAS */
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    transition: all 0.3s ease; 
  }
  
  /* FRENTE */
  .card-front {
    background: #111; /* negro elegante */
  color: white;
  }
  
  /* ATRÁS */
  .card-back {
    background: #facc15; /* amarillo */
    color: black;
    transform: rotateY(180deg);
    padding: 15px;
    text-align: center;
  }
  
  /* ICONOS */
  .icon {
    font-size: 35px;
    margin-bottom: 10px;
    color: #000;

    margin-top: 15px;
    background: #facc15;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 2px;
  
    /* efecto glow */
    box-shadow: 0 0 10px #facc15;
    
  }
  
  /* EFECTO EXTRA */
  .card:hover .card-front {
    box-shadow: 0 0 15px #facc15;
  }

  /* CONTENEDOR */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  /* BOTÓN */
  .whatsapp-btn {
    background: #facc15; /* amarillo marca */
    color: black;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.6);
    transition: 0.3s;
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.1);
    background: #eab308; /* amarillo más fuerte */
  }
  
  /* MENSAJITO */
  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    bottom: 15px;
    background: white;
    color: black;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
  }
  
  /* MOSTRAR AL HOVER */
  .whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
  }

  .whatsapp-btn {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(250,204,21,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(250,204,21,0); }
    100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
  }

  #btnTop {
    position: fixed;
    bottom: 30px; /* arriba del botón de WhatsApp */
    left: 20px;
    background: #facc15;
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none; /* oculto al inicio */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.6);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  #btnTop:hover {
    transform: scale(1.1);
    background: #eab308;
  }

  #btnTop {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(250,204,21,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(250,204,21,0); }
    100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
  }

  .btn-nav  {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(250,204,21,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(250,204,21,0); }
    100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
  }

  .proceso {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 80px 20px;
}

.proceso h2 {
    color: #ffc107;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.pasos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.paso {
    max-width: 180px;
    position: relative;
}

.icono {
    width: 80px;
    height: 80px;
    border: 2px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 35px;
    color: #ffc107;
    transition: 0.3s;
}

.paso span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #ffc107;
}

.paso h3 {
    margin: 5px 0;
    font-size: 16px;
}

.paso p {
    font-size: 14px;
    color: #000;
}

/* Línea entre pasos */
.linea {
    width: 60px;
    height: 2px;
    background: #ffc107;
}

/* HOVER PRO */
.paso:hover .icono {
    background: #ffc107;
    color: #000;
    transform: scale(1.1);
}

.paso {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.app-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px;
    background: #fff;
    flex-wrap: wrap;
  }
  
  /* 📱 CELULAR */
  .phone {
    width: 405px;
    height: 600px;
    background: #111;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    position: relative;
  }
  
  .screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
  }
  
  .screen img {
    width: 78%;
    height: 78%;
    object-fit: cover;
  }
  
  /* DETALLE ARRIBA */
  .phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
  }
  
  /* 🧾 CUADRO INFO */
  .info-box {
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.747);
    transition: 0.3s;
  }
  
  .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgb(0, 0, 0);
  }
  
  .info-box h2 {
    color: #facc15;
    margin-bottom: 15px;
  }
  
  .info-box p {
    color: #000;
    margin-bottom: 20px;
  }
  
  /* LISTA */
  .info-box ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .info-box ul li {
    margin-bottom: 10px;
    color: #000;
  }
  
  /* BOTÓN */
  .info-box button {
    background: #facc15;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .info-box button:hover {
    background: #eab308;
  }

  .footer {
    background: #000;
    color: white;
    padding-top: 50px;
  }
  
  /* CONTENEDOR */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 60px;
  }
  
  /* CAJAS */
  .footer-box h3 {
    color: #facc15;
    margin-bottom: 15px;
  }
  
  .footer-box p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
  }
  
  /* LOGOS */
  .footer-logo {
    width: 230px;
    margin-bottom: 10px;
  }
  
  .footer-logo-small {
    width: 200px;
  }
  
  /* PARTE FINAL */
  .footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #fff;
    font-size: 14px;
    color: #fff;
  }

  .footer-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
  }
  

  .map-section {
    text-align: center;
    padding: 80px 20px;
    background: #000;
  }
  
  .map-section h2 {
    color: #facc15;
    margin-bottom: 40px;
  }
  
  /* 💻 LAPTOP */
  .laptop {
    width: 100%;
    max-width: 800px;
    margin: auto;
    perspective: 1000px;
  }
  
  /* PANTALLA */
  .laptop-screen {
    width: 130%;
    height: 450px;
    background: #111;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    transform: rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
  }
  
  /* MAPA */
  .laptop-screen {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
  }
  
  /* PANTALLAS */
  .screen {
    position: absolute;
    width: 120%;
    height: 120%;
    transition: transform 0.6s ease;
  }
  
  /* VIDEO visible */
  .video {
    z-index: 2;
    transform: translateX(0);
  }
  
  /* MAPA oculto a la derecha */
  .map {
    transform: translateX(100%);
  }
  
  /* 🎯 EFECTO AL PASAR EL MOUSE */
  .laptop:hover .video {
    transform: translateX(-100%);
  }
  
  .laptop:hover .map {
    transform: translateX(0);
  }
  
  /* VIDEO */
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* MAPA */
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* BASE (TECLADO) */
  .laptop-base {
    width: 110%;
    height: 30px;
    background: #222;
    margin-left: -5%;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    position: relative;
  }
  
  /* DETALLE TOUCHPAD */
  .laptop-base::before {
    content: '';
    width: 100px;
    height: 10px;
    background: #444;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
  }
  
  /* TEXTO */
  .map-text {
    margin-top: 25px;
    color: #ccc;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 60px;
    background: #000;
  }
  
  .stat h2 {
    font-size: 40px;
    color: #facc15;
  }
  
  .stat p {
    margin-top: 10px;
    color: #ccc;
  }





   /* SERVICIOS */

   /* HERO */
   .hero-servicios {
    height: 600px;
    background: url('../imagenes/servicio2.jpg') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

.hero-servicios h1 {
  font-size: 40px;
  color: #facc15;
}

.servicios-texto {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px;
  background: #fff;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.service-card i {
  font-size: 40px;
  color: #facc15;
  margin-bottom: 15px;

  margin-top: 15px;
  background: #facc15;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 2px;

  /* efecto glow */
  box-shadow: 0 0 10px #facc15;
}

.service-card h3 {
  color: white;
}

.service-card p {
  color: #000;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(250,204,21,0.3);
}

/* CONTENEDOR */
.service-card {
  perspective: 1000px;
}

/* INTERNO */
.card-inner {
  position: relative;
  width: 100%;
  height: 220px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* GIRO */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* CARAS */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
}

/* FRENTE */
.card-front {
 background: #fff;        /* fondo blanco limpio */
  color: black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.849); /* sombra suave */
}

/* ATRÁS */
.card-back {
  transform: rotateY(180deg);
  overflow: hidden;
}

.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DETALLE */
.service-detail {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 80px;
  background: #fff;
}

.detail-text {
  max-width: 400px;
}

.detail-text h2 {
  color: #facc15;
}

.detail-text p {
  color: #000;
  margin: 20px 0;
}

.detail-text button {
  background: #facc15;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
}

.detail-img img {
  width: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgb(0, 0, 0); /* sombra suave */
}

/* NOSOTROS */
.about {
  padding: 80px;
  background: #fff;
  text-align: center;
}

.about h2 {
  color: #facc15;
  margin-bottom: -90px;
  text-align: left;
  padding-left: 190px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  max-width: 500px;
  color: #000;
}

.about-img img {
  width: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgb(0, 0, 0); /* sombra suave */
}

/* MISION Y VISION */
.mision-vision {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px;
  background: #fff;
  flex-wrap: wrap;
}



.card-mv strong {

 color: #facc15;

}
.card-mv {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 350px;
  text-align: center;
  transition: 0.3s;
  border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.747);
    transition: 0.3s;
}

.card-mv h3 {
  color: #facc15;
  margin-bottom: 15px;
}

.card-mv p {
  color: #000;
}

.card-mv:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(250,204,21,0.3);
}

.cta {
  text-align: center;
  padding: 60px;
  background: #fff;
}

.cta h2 {
  color: #facc15;
  margin-bottom: 20px;
}

.cta button {
  background: #facc15;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  border-radius: 8px;
}








 /*tecnologia*/



 /*cobertura*/

 .hero-cobertura {
  height: 120vh;
  background: url('../imagenes/cobertura2.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  color: #facc15;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  color: #fff;
  font-size: 1.2rem;
}

 .map-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.map-section h2 {
  color: #facc15;
  margin-bottom: 30px;
}

/* TABLET */
.tablet {
  width: 80%;
  max-width: 800px;
  margin: auto;
  background: #facc15;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

/* MAPA */
#map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
}

.zonas {
  padding: 60px;
  text-align: center;
}

.zonas h2 {
  color: #facc15;
  margin-bottom: 30px;
}

.zonas-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.zona {
  background: #facc15;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  color: white;
  transition: 0.3s;
  color: black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.849); /* sombra suave */
}

.zona:hover {
  transform: translateY(-10px);
}

/* SECCIÓN */
.tiempos {
  padding: 60px;
  text-align: center;
}

.tiempos h2 {
  color: #facc15;
  margin-bottom: 40px;
}

/* CONTENEDOR */
.tiempos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.tiempo {
  background: #facc15;
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: 0.3s;
  color: black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.849); /* sombra suave */
}

.tiempo:hover {
  transform: translateY(-10px);
}

/* RELOJ DIGITAL */
.reloj {
  margin-top: 15px;
  background: #000;
  color: #facc15;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 2px;

  /* efecto glow */
  box-shadow: 0 0 10px #facc15;
}

.reloj {
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #facc15;
  }
  to {
    box-shadow: 0 0 20px #facc15;
  }
}


/* SECCIÓN */
.herramientas {
  padding: 60px 20px;
  text-align: center;
}

.herramientas h2 {
  color: #facc15;
  margin-bottom: 40px;
}

/* CONTENEDOR */
.herramientas-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CUADROS */
.tool-box {
  width: 1000px;
  background: #facc15;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transition: 0.3s;
}

.tool-box:hover {
  transform: translateY(-10px);
}

/* TITULO */
.tool-box h3 {
  color: #000;
  margin-bottom: 15px;
}

/* IFRAME */
.tool-box iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}



.btn-primary {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250,204,21,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(250,204,21,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
}

.btn-secondary {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250,204,21,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(250,204,21,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
}

 /*contacto*/

 .contacto-pro {
  padding: 60px;
  text-align: center;
}

.contacto-pro h2 {
  color: #facc15;
}

.sub {
  margin-bottom: 40px;
  color: gray;
}

.contacto-opciones {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-contacto {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  color: #000;
  transition: 0.3s;
  color: black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.849); /* sombra suave */
}

.card-contacto i {
  font-size: 40px;
  color: #facc15;
  margin-bottom: 15px;
}

.card-contacto button {
  margin-top: 15px;
  background: #facc15;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.card-contacto:hover {
  transform: translateY(-10px);
}

/* CONTENEDOR */
.btn-ubicacion {
  position: relative;
  display: inline-block;
}

/* MENÚ PRO */
.menu-ubicaciones {
  position: absolute;
  top: 50%;
  left: 115%;
  transform: translateY(-50%) scale(0.9);

  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(10px);

  padding: 15px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;

  box-shadow: 0 0 25px rgba(0,0,0,0.7);

  border: 1px solid rgba(255,255,255,0.05);
}

/* FLECHITA */
.menu-ubicaciones::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 15px;
  height: 15px;
  background: #111;
}

/* LINKS */
.menu-ubicaciones a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

/* HOVER BONITO */
.menu-ubicaciones a:hover {
  background: #facc15;
  color: #000;
  transform: translateX(5px);
}

/* ACTIVACIÓN PRO */
.btn-ubicacion:hover .menu-ubicaciones {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

/* WhatsApp */
.card-contacto:nth-child(1) i {
  color: #facc15;
}

/* Llamada */
.card-contacto:nth-child(2) i {
  color: #facc15;
}

/* Ubicación */
.card-contacto:nth-child(3) i {
  color: #facc15;
}

.sedes {
  padding: 60px;
  text-align: center;
}

.sedes h2 {
  color: #facc15;
  margin-bottom: 40px;
}

.sedes-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.sede-card {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGEN */
.sede-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* OVERLAY */
.sede-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;

  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  text-align: left;

  transform: translateY(100%);
  transition: 0.4s;
}

/* HOVER */
.sede-card:hover img {
  transform: scale(1.1);
}

.sede-card:hover .sede-info {
  transform: translateY(0);
}

.hero-contacto {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.418), rgba(0, 0, 0, 0.651)),
              url("../imagenes/contacto.jpeg"); /* tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* TEXTO */
.hero-contacto h1 {
  color: #facc15;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-contacto p {
  color: #fff;
  font-size: 1.2rem;
}

.rueda {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
}

.rueda h2 {
  color: #facc15;
  margin-bottom: 60px;
}

/* CONTENEDOR */
.rueda-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: auto;
}

/* CENTRO (NO SE MUEVE) */
.centro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(250,204,21,0.6);
}

.centro img {
  width: 100%;
}

/* LOGOS */
.logo-item {
  position: absolute;
  width: 80px;
  height: 80px;
  object-fit: contain;

  top: 40%;
  left: 42%;

  /* POSICIÓN EN CÍRCULO */
  transform: rotate(calc(45deg * var(--i)))
             translate(160px)
             rotate(calc(-45deg * var(--i)));

  animation: girar-item 20s linear infinite;


  opacity: 0.8;
  transition: 0.3s;
}

/* HOVER */
.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.2)
             rotate(calc(45deg * var(--i)))
             translate(160px)
             rotate(calc(-45deg * var(--i)));
}

/* ANIMACIÓN SOLO PARA LOS ITEMS */
@keyframes girar-item {
  from {
    transform: rotate(calc(45deg * var(--i)))
               translate(160px)
               rotate(calc(-45deg * var(--i)));
  }
  to {
    transform: rotate(calc(45deg * var(--i) + 360deg))
               translate(160px)
               rotate(calc(-45deg * var(--i) - 360deg));
  }
}

.logo-item {
  background: white;
  padding: 5px;
  border-radius: 10px;
}

.extra-empresas {
  margin-top: 40px;
  color: #facc15;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.pqr-section {
  background: #ffffff; /* fondo blanco */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

/* CAJA GRANDE */
.pqr-container {
  width: 100%;
  max-width: 1000px; /* MÁS GRANDE */
  background: #fff;
  padding: 40px;
  border-radius: 20px;

  /* SOMBRA PRO */
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);

  text-align: center;
  transition: 0.3s;
}

/* EFECTO HOVER */
.pqr-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* LOGO */
.pqr-logo {
  width: 300px;
  margin-bottom: 20px;
}

/* TITULO */
.pqr-container h2 {
  color: #facc15;
  margin-bottom: 10px;
}

/* TEXTO */
.pqr-container p {
  color: #555;
  margin-bottom: 25px;
}

/* INPUTS */
.pqr-container input,
.pqr-container select,
.pqr-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

/* FOCUS */
.pqr-container input:focus,
.pqr-container select:focus,
.pqr-container textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 5px rgba(250,204,21,0.5);
}

/* BOTÓN */
.pqr-container button {
  width: 100%;
  background: #facc15;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.pqr-container button:hover {
  background: #eab308;
  transform: scale(1.02);
}

/* FONDO OSCURO */
.popup-exito {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 9999;
}

/* MOSTRAR */
.popup-exito.active {
  opacity: 1;
  pointer-events: auto;
}

/* CAJA */
.popup-contenido {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;

  box-shadow: 0 15px 50px rgba(0,0,0,0.3);

  animation: aparecer 0.5s ease;
}

/* LOGO */
.popup-logo {
  width: 100px;
  margin-bottom: 15px;
}

/* TITULO */
.popup-contenido h2 {
  color: #facc15;
}

/* TEXTO */
.popup-contenido p {
  color: #555;
  margin: 10px 0;
}

/* FLECHA */
.flecha {
  font-size: 30px;
  color: #facc15;
  margin: 10px 0;
}

/* TEXTO PEQUEÑO */
.mini {
  font-size: 14px;
}

/* ANIMACIÓN */
@keyframes aparecer {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cerrar-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  color: #999;
  transition: 0.3s;
}

.cerrar-popup:hover {
  color: #facc15;
}

.popup-contenido {
  position: relative;
}

/* CONTENEDOR REDES */
.redes {
  margin-top: 15px;
  display: flex;
  justify-content: center; /* CENTRAR */
  align-items: center;
  gap: 12px; /* espacio entre iconos */
}

/* ICONOS */
.redes a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 45px;
  height: 45px;

  border-radius: 50%;
  background: #111; /* fondo oscuro */
  color: #facc15; /* amarillo marca */

  font-size: 20px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* HOVER PRO */
.redes a:hover {
  background: #facc15;
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 0 15px #facc15;
}

/* OPCIONAL: CENTRAR TODO EL FOOTER BOX */
.footer-box {
  text-align: center;
}

/* 🔥 SECCIÓN NOSOTROS */
.nosotros-cards {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: #fff;
}

/* TARJETA */
.card-nosotros {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TITULO */
.card-nosotros h3 {
  color: #000;
  margin-bottom: 10px;
}

/* TEXTO */
.card-nosotros p {
  color: #555;
  margin-bottom: 30px;
}

/* CONTENEDOR DE CÍRCULOS */
.imagenes-circulos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* 🔵 CÍRCULO */
.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #facc15;

  position: relative;
  transition: 0.3s;
}

/* 🖼️ IMAGEN */
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ✨ EFECTO HOVER PRO */
.circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #facc15;
}

.circle:hover img {
  transform: scale(1.2);
  filter: brightness(0.8);
  transition: 0.5s;
}

.circle img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.circle img.active {
  opacity: 1;
}

/* HERO NOSOTROS (IMAGEN PRINCIPAL) */
.hero-nosotros {
  height: 100vh;
  background: url('../equipodetrabajo/EQUIPO11.jpeg') no-repeat center/cover;
  position: relative;
}

/* CAPA OSCURA PARA QUE SE VEA EL TEXTO */
.overlay-nosotros {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);

  display: flex;
  justify-content: center;
  align-items: center;
}

/* TEXTO */
.overlay-nosotros h1 {
  color: #facc15;
  font-size: 60px;
}

.popup-novedades {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.popup-box {
  width: 1300px;
  height: 500px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  position: relative; /* 🔥 CLAVE */

  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ❌ BOTÓN BIEN POSICIONADO */
.cerrar-popup {
  position: absolute;
  top: 10px;
  right: 15px;

  background: #fff;
  border: none;
  font-size: 25px;
  cursor: pointer;

  width: 35px;
  height: 35px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.cerrar-popup:hover {
  background: #facc15;
  color: #000;
}

/* IZQUIERDA */
.popup-left {
  width: 50%;
  padding: 30px;
}

.popup-left h2 {
  color: #facc15;
  margin-bottom: 15px;
}

.popup-left ul {
  list-style: none;
}

.popup-left li {
  margin-bottom: 10px;
  color: #000;
}

/* MENSAJE */
#sin-novedades {
  color: gray;
  font-style: italic;
  display: none;
}

/* DERECHA */
.popup-right {
  width: 50%;
}

.popup-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-box {
  position: relative;
}

.cerrar-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #facc15;
  border: none;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-weight: bold;
}

.cerrar-popup:hover {
  background: #eab308;
}

.popup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0; /* bordes bonitos */
}

.circle video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.circle video.active {
  opacity: 1;
}

.wha {
  color: #fff;
}


/* 📱 RESPONSIVE (CELULARES) */
@media (max-width: 800px) {

  /* NAVBAR */
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 100px -10px;
    text-align: center;
  }

 img {
  max-width: 100%;
  height: auto;
 }
  
  .content {
    margin: 0 20px;
    text-align: center;
  }

  .content h1 {
    font-size: 30px;
  }

  /* FEATURES */
  .features {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* SECCIONES EN GRID */
  .services,
  .stats {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* PROCESO */
  .pasos {
    flex-direction: column;
  }

  .linea {
    display: none;
  }

  /* APP SECTION */
  .app-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .phone {
    width: 250px;
    height: 450px;
  }

  /* MAPA */
  .laptop-screen {
    height: 250px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* ABOUT */
  .about-container {
    flex-direction: column;
  }

  .about-img img {
    width: 100%;
  }

  /* SERVICIOS */
  .services {
    grid-template-columns: 1fr;
  }

  /* CONTACTO */
  .contacto-opciones {
    flex-direction: column;
    align-items: center;
  }

  /* IMÁGENES CÍRCULO */
  .circle {
    width: 200px;
    height: 200px;
  }

  /* POPUP */
  .popup-box {
    flex-direction: column;
    width: 90%;
    height: auto;
  }

  .popup-left,
  .popup-right {
    width: 100%;
  }

}

img {
  max-width: 100%;
  height: auto;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #facc15;
  cursor: pointer;
}

/* 📱 MODO CELULAR */
@media (max-width: 800px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    
    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;

    transition: 0.3s ease;
  }

  nav a {
    padding: 15px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #222;
  }

  .btn-nav {
    margin: 15px 0;
  }

  /* CUANDO SE ABRE */
  nav.active {
    max-height: 400px;
  }

  .detail-img {
    width: 5000px;
  }

  /* LOGO */
.logo img {
  height: 60px;
}



.menu-toggle img {
  width: 30px;
}
}




@media (max-width: 768px) {
  
  .hero-cobertura {
    height: auto;
    padding: 55px 10px;
    text-align: center;
  }
  

  .hero-contacto {
     height: auto;
    padding: 100px 10px;
    text-align: center;
  }

   .hero-servicios {
     height: auto;
    padding: 100px 10px;
    text-align: center;
   }

   .hero-nosotros {
     height: auto;
    padding: 90px 10px;
    text-align: center;
   }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 14px;
  }
}