body{
    margin:0;
    font-family:Arial;
    background:#0a0f2c;
    color:white;
}
html {
  scroll-behavior: smooth;
  .menu{
  background:#002a5c;
  padding:15px;
  text-align:center;
}

/* ===== MENU GENERAL ===== */
.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #0a1f6b;
    padding: 15px;
    flex-wrap: wrap;
}

.menu a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}

.menu a:hover{
    background: #00c3ff;
    border-radius: 20px;
}

.btn-menu{
    background: #ff4d4d;
    border-radius: 6px;
}
}


/* COLORES */
:root {
  --azul: #0b1f6b;
  --amarillo: #ffd200;
  --verde: #25D366;
  --blanco: #ffffff;
}

/* HEADER */
.encabezado {
  background: var(--azul);
  height: 80px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
}

.encabezado h1 {
  color: white;
  font-size: 1.3rem;
}
* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background-color: #162a75; /* azul empresarial */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}



/* ATENCION AL CLIENTE BOTON */
/* Botón contratar */



.btn-cliente{
  background: #fd0800;
    color:white;
    padding:12px 22px;
    border-radius:50px;
    font-weight:bold;
    text-decoration:none;
    box-shadow:0 0 15px rgba(229, 255, 0, 0.6);
    transition:0.3s;
}

.btn-cliente:hover{
    transform:scale(1.1);
    box-shadow:0 0 25px rgba(0,255,200,1);
}
@keyframes brillo{
    0%{box-shadow:0 0 5px #f7f7f7;}
    50%{box-shadow:0 0 25px #ffffff;}
    100%{box-shadow:0 0 5px #ffffff;}
}

.btn-cliente{
    animation: brillo 2s infinite;
}



/* HERO */
.hero {
  background: var(--azul);
  padding: -50px 0 -20px 0; /* arriba derecha abajo izquierda */
}

.hero-contenido {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}



.hero-texto {
  color:  #ffffff;
}

.hero-texto h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero-texto p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-texto button {
  background: var(--verde);
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  color: black AJOPIJIOAB;
  font-weight: bold;
  cursor: pointer;
}

/* IMAGEN HERO */
.hero-imagen img {
  width: 100%;
  border-radius: 30px;
  max-height: 420px;
  object-fit: cover;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-contenido {

    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-imagen img {
    max-height: 300px;
  }

  .encabezado {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }

  .menu {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* BOTON WHATSAPP PROFESIONAL flotante */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  padding: 15px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Poppins', Arial, sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 9999;
  transition: 0.3s;
  animation: latido 2s infinite;
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 18px;
}
/* icono del boton whasosap*/
.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#29c562;
    color:white;
    padding:12px 20px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    transition:0.3s;
}

.btn-whatsapp:hover{
    background:#1ebe5d;
    transform:scale(1.05);
}

.icono{
    width:30px;
}
/* EFECTO HOVER */
.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
}
/* EFECTO LATIDO SUAVE */
@keyframes latido {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

/* 📱 CELULAR */
@media (max-width: 600px) {
  .btn-whatsapp {
    padding: 16px 26px;
    font-size: 17px;
  }
}







/* HERO */
.hero-nosotros{
    background:url("imagenes/fibra.jpg") center/cover no-repeat;
    padding:140px 20px;
    text-align:center;
    position:relative;
}

.hero-nosotros::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
}

.hero-texto{
    position:relative;
}

.hero-texto h1{
    font-size:55px;
    color:#36cee2;
}

.hero-texto p{
    font-size:22px;
    margin-bottom:25px;
}

.btn{
    background:#36cee2;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    color:black;
    font-weight:bold;
}

/* NOSOTROS */
.nosotros{
    padding:80px 20px;
}

.contenedor{
    display:flex;
    align-items:center;
    gap:40px;
    max-width:1100px;
    margin:auto;
    flex-wrap:wrap;
}

.texto{
    flex:1;
}

.texto h2{
    font-size:40px;
    color:#00e0ff;
}

.seccion-nosotros{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.texto{
    flex:1;
    min-width:280px;
}

.seccion-nosotros{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.texto{
    flex:1;
    min-width:280px;
}
.imagen img{
    width:100%;
    max-width:700px;
    height:auto;
    border-radius:20px;   /* esquinas rectas */
}
    

.imagen{
    flex:1;
    min-width:280px;
    
}
@media(max-width:768px){
    .imagen img{
        width:80%;
    }
}
/* CONTADORES */
.contadores{
    display:flex;
    justify-content:center;
    gap:40px;
    padding:60px;
    background:#10164d;
    flex-wrap:wrap;
}

.box{
    text-align:center;
}

.box h3{
    font-size:45px;
    color:#00e0ff;
}

/* EQUIPO */
.equipo{
    text-align:center;
    padding:80px 20px;
}

.tarjetas{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    background:#141b4d;
    padding:20px;
    border-radius:20px;
    width:260px;
}

.card img{
    width:100%;
    border-radius:15px;
}

/* VIDEO */
.video{
    text-align:center;
    padding:20px;
}

.video video{
    width:30%;
    max-width:350px;
    border-radius:10px;
}

/* FOOTER */
footer{
    background:black;
    text-align:center;
    padding:20px;
}

/* 📱 RESPONSIVE */
@media(max-width:768px){
    .hero-texto h1{font-size:32px;}
}