html{
  scroll-behavior:smooth;
}

.menu{
  background:#002a5c;
  padding:15px;
  text-align:center;
}

/* ===== MENU GENERAL ===== */
/* ===== HEADER ===== */
.encabezado{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:#0b1f6b;
flex-wrap:wrap; /* CLAVE */
}

/* ===== MENU ===== */
.menu{
display:flex;
gap:25px;
align-items:center;
flex-wrap:wrap; /* CLAVE */
}

.menu a{
color:white;
text-decoration:none;
font-weight:600;
padding:8px 10px;
transition:.3s;
}

.menu a:hover{
color:#ffd200;
}
@media(max-width:768px){

.menu{
flex-direction:column;
align-items:center;
margin-top:15px;
}

.btn-cliente{
width:100%;
text-align:center;
}

}
/* BOTON CLIENTE */
.btn-cliente{
  background:#ff2a2a;
  padding:10px 18px;
  border-radius:30px;
  color:white;
  font-weight:bold;
  text-decoration:none;
  white-space:nowrap;
}
.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo{
height:60px;
width:auto;
}

.nombre{
display:flex;
flex-direction:column;
justify-content:center;
}

.nombre span{
font-size:12px;
opacity:.8;
}



/* boton contratar ahora despues del texto */
.btn-contratar{
display:inline-block;
margin-top:25px;
padding:8px 18px;
font-size:22px;
font-weight:700;
color:white;
text-decoration:none;
border-radius:60px;
background:linear-gradient(45deg,#00c853,#25D366,#00c853);
background-size:300%;
box-shadow:0 0 20px rgba(37,211,102,.7);
animation:brillo 6s linear infinite;
position:relative;
overflow:hidden;
transition:.3s;
letter-spacing:1px;
}

/* brillo animado */
@keyframes brillo{
0%{background-position:0%}
100%{background-position:300%}
}

/* luz que pasa */
.btn-contratar::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,.6),transparent);
transition:.7s;
}

.btn-contratar:hover::before{
left:100%;
}

.btn-contratar:hover{
transform:translateY(-6px) scale(1.1);
box-shadow:0 0 40px rgba(37,211,102,1);
}

/* pulso */
.btn-contratar::after{
content:"";
position:absolute;
inset:0;
border-radius:60px;
border:2px solid rgba(255,255,255,.3);
animation:pulso 2.5s infinite;
}

@keyframes pulso{
0%{opacity:1; transform:scale(1)}
100%{opacity:0; transform:scale(1.5)}
}
/* ATENCION AL CLIENTE BOTON------------------- */
.btn-cliente{
    background: linear-gradient(45deg,#ffee00,#00ffb3);
    color:white;
    padding:18px 50px;
    border-radius:30px;
    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;
}








/* 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 */

.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:40px 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: 18px 50px;
  border-radius: 30px;
  color: black;
  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{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:#0b1f6b;
flex-wrap:wrap;
}

  .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;
}

/* EFECTO HOVER */
.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
}

/* 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 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;
  }
}
/* CONTENEDOR PRINCIPAL */
.cuadros {
  display: flex;
  gap: 20px; /*para unir los cuadros*/
  padding: 10px 20px;
  align-items: center;
}

/* Imagen grande */
.imagen-cuadro {
  flex: 0 0 60%; /* agrandar la imagen*/
}

.imagen-cuadro img {
  width: 100%;
  border-radius: 12px;
}

/* Pagos */
.pagos-cuadro {
  flex: 0 0 35%;
  background: linear-gradient(135deg, #162a75, #1f3fbf);
  color: white;
  padding: 40px 25px; /* agrandar el cuadro*/
  border-radius: 12px;
  text-align: center;
}

/* Botón */
.btn-pagos-grande {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(45deg, #00b894, #00cec9);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-pagos-grande:hover {
  transform: scale(1.05);
}

.nota-clave {
  margin-top: 20px;
  font-size: 14px;
}

.nota-clave a {
  color: #00b894;
  font-weight: bold;
  text-decoration: none;
}

.nota-clave a:hover {
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
  .cuadros {
    flex-direction: column;
  }

  .imagen-cuadro,
  .pagos-cuadro {
    flex: 100%;
  }
}

/*labra de la clave */

.nota-clave {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.85;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pagos-cuadro {
    padding: 40px 20px;
  }

  .pagos-cuadro h2 {
    font-size: 22px;
  }

  .pagos-cuadro p {
    font-size: 15px;
  }

  .btn-pagos-grande {
    font-size: 16px;
    padding: 14px 30px;
  }
}
/* 📱 RESPONSIVE CELULAR */
@media (max-width: 768px) {
  .cuadros {
    flex-direction: column; /* se ponen uno debajo del otro */
    text-align: center;
  }

  .cuadro {
    max-width: 100%;
  }
}


/* -------- GENERAL EL CUADRO menu color-------- */
body {
  font-family: Arial, sans-serif;
  background-color: #1634b8;
  margin: 0;
  padding: 0%;
}

/* -------- HEADER -------- */
header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}


.logo {
  width: 150px;
  margin-bottom: 1px;
  height: auto;
}


/* ===== PLANES ===== */
.planes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.plan {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Parte superior */
.amarillo {
  background-color: #ffd400;
  text-align: center;
  padding: 20px;
}

.amarillo h3 {
  margin: 0;
  font-size: 22px;
}

/* Parte azul */
.azul {
  background-color: #0a0553;
  color: white;
  padding: 20px;
  text-align: center;
}

.precio {
  font-size: 42px;
  font-weight: bold;
  margin: 10px 0;
}

.precio span {
  font-size: 20px;
}

.detalle {
  font-size: 14px;
  margin-bottom: 15px;
}

.plan ul {
  list-style: none;
  padding: 0;
}

.plan li {
  margin-bottom: 8px;
}

.plan button {
  margin-top: 15px;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: white;
  color: #100386;
  font-weight: bold;
  cursor: pointer;
}

/* Plan popular */
.popular {
  transform: scale(1.05);
}
/* Animación solo para el plan popular */
.plan.popular {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan.popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
/*SOLO el botón del popular*/
.plan.popular button {
  transition: background-color 0.3s, color 0.3s;
}

.plan.popular:hover button {
  background-color: #ffd400;
  color: #005aa7;
}
 /*PULAR REVISAR*/
.etiqueta {
  position: absolute;
  background: red;
  color: white;

  font-size: 15px;          /* letra pequeña */
  font-weight: bold;
  text-transform: uppercase;

  padding: 10px 40px;      /* 🔥 MÁS ANCHA LA BANDA */

  top: 18px;
  right: -38px;           /* 🔥 la centra en la esquina */
  transform: rotate(45deg);

  border-radius: 2px;
}
.plan {
  position: relative;
  overflow: hidden;
}


/* Animación suave Botón animado */
.plan {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.plan button {
  transition: background-color 0.3s, color 0.3s;
}

.plan:hover button {
  background-color: #ff2600;
  color: #16034b;
}


.plan ul {
  text-align: left;
  margin-top: 15px;
  padding-left: 20px;
}

.plan ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

.plan .frase {
  margin-top: 10px;
  font-weight: bold;
  color: #ffd700;
}

.plan button {
  font-size: 16px;
  padding: 12px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.plan button:hover {
  transform: scale(1.05);
}






/* BOTON VER MAS */
.ver-mas-contenedor{
    display:flex;
    justify-content:center;
    margin:15px 0;
    padding:0 20px;
}

/* BOTÓN FIBRA ÓPTICA */
.btn-ver-mas{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 50px;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    border-radius:50px;
    background:linear-gradient(135deg,#00c6ff,#0072ff,#001f3f);
    background-size:200% 200%;
    box-shadow:0 15px 35px rgba(0,114,255,0.4);
    transition:all 0.4s ease;
    overflow:hidden;
}

/* EFECTO BRILLO DESLIZANTE */
.btn-ver-mas::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,0.3);
    transform:skewX(-25deg);
    transition:0.6s;
}

.btn-ver-mas:hover::before{
    left:125%;
}

/* HOVER */
.btn-ver-mas:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,114,255,0.6);
}

/* FLECHA */
.flecha{
    transition:transform 0.3s ease;
}

.btn-ver-mas:hover .flecha{
    transform:translateX(6px);
}

/* 📱 RESPONSIVE */
@media (max-width:600px){
    .btn-ver-mas{
        width:100%;
        justify-content:center;
        padding:16px 20px;
        font-size:16px;
    }
}






/*por que elegsirnos*/
.beneficios {
  padding: 60px 20px;
  background: #f5f7ff;
  text-align: center;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.beneficio {
  background: white;
  padding: 25px;
  border-radius: 15px;
}
/* ===== BENEFICIOS RESPONSIVE ===== */

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 CELULAR */
@media (max-width: 600px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficio {
    padding: 20px;
  }
}



/*covertura ----------------------------------------------*/
.cobertura-pro{
    padding:80px 20px;
    text-align:center;
    color:white;

    background:
    linear-gradient(rgba(0,0,40,.5),rgba(32, 84, 196, 0.85)),
    url("imagenes/fibra.jpg");
    background-size:cover;
    background-position:center;
}

.cobertura-pro h2{
    font-size:40px;
    color:#00eaff;
    margin-bottom:10px;
}

.cobertura-pro .sub{
    font-size:18px;
    margin-bottom:40px;
    color:#ddd;
}

.zonas{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.zona{
    background:rgba(255,255,255,0.1);
    padding:18px 30px;
    border-radius:15px;
    font-size:18px;
    backdrop-filter:blur(8px);
    transition:0.3s;
}

.zona:hover{
    transform:scale(1.08);
    background:rgba(255,255,255,0.25);
}

.btn-cobertura{
    display:inline-block;
    margin-top:50px;
    padding:18px 40px;
    background:linear-gradient(45deg,#00c853,#00e676);
    border-radius:40px;
    color:white;
    font-size:18px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 10px 30px rgba(0,0,0,.5);
    transition:0.3s;
}

.btn-cobertura:hover{
    transform:scale(1.1);
}
@media(max-width:768px){

  .cobertura-pro h2{
      font-size:28px;
  }

  .zona{
      width:90%;
  }

  .btn-cobertura{
      width:90%;
      font-size:16px;
  }
}

/* MAPA*/
.cobertura-mapa{
    text-align:center;
    padding:60px 20px;
    background:linear-gradient(135deg,#10164d,#0a1f6b,#2c5364);
    color:white;
}

.btn-mapa{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    background:#00c853;
    color:white;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

.btn-mapa:hover{
    transform:scale(1.05);
}




/*---------------------------------------------------------*/

.contacto-asesor {
  display: flex;
  min-height: 100vh;
}

/* IMAGEN */
.contacto-imagen {
  flex: 2; /*reducir tamaño a la imagen de velocidad o medir*/
  background: #0c0724;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px; /* para anchar la imagen hasta los borde */
}

.contacto-imagen img {
  max-width: 100%;
  height: auto;
}

/* FORMULARIO */
.contacto-form {
  flex: 1;
  background: #0057A3;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacto-form h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contacto-form p {
  margin-bottom: 30px;
}

.contacto-form form {
  display: flex;
  flex-direction: column;
}

.contacto-form input,
.contacto-form select {
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  margin-bottom: 25px;
  padding: 10px 5px;
  color: #fff;
  font-size: 1rem;
}

.contacto-form input::placeholder {
  color: rgba(255,255,255,0.8);
}

.checkbox {
  font-size: 0.9rem;
  margin-bottom: 25px;
}

button {
  background: #E60023;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .contacto-form {
    padding: 40px;
  }
}

/* 📱 CELULAR */
@media (max-width: 768px) {
  .contacto-asesor {
    flex-direction: column;
  }

  .contacto-imagen {
    height: 250px;
  }

  .contacto-form {
    padding: 30px 20px;
  }

  .contacto-form h1 {
    
    
    font-size: 1.6rem;
  }
}

/* 📱 CELULARES PEQUEÑOS */
@media (max-width: 480px) {
  .contacto-form h1 {
    font-size: 1.4rem;
  }

  button {
    padding: 12px;
  }
}
/*-----------------------------*/

/* RESET TOTAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY SIN ESPACIOS */
body {
  margin: 0;
  padding: 0;
  background: #0b1a6e; /* o el color que uses */
}

/* SECCIONES SIN HUECOS */
section {
  margin: 0;
}

/* COBERTURA */
.cobertura {
  padding: 50px 20px;
}

                             /* FOOTER */
.footer {
  background-color: #1f1f1f;
  color: white;
  padding: 25px 15px;
}

.footer-contenido {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .footer-contenido {
    font-size: 13px;
  }
}

/* -------- INTRO -------- */
.intro {
  background-color: white;
  padding: 20px;
  margin-bottom: 30px;
}


/* -------- SERVICIOS -------- */
.servicios {
  background-color: white;
  padding: 20px;
  margin-bottom: 30px;
}

.img-servicios {
  max-width: 100%;
  margin-top: 20px;
}

/* -------- CONTACTO -------- */
.contacto {
  text-align: center;
}

button {
  background-color: #38ada9;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  cursor: pointer;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 24px;
  }

  button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {

  .encabezado {
    flex-direction: column;
    gap: 15px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
  }

}
@media (max-width: 600px) {
  .footer {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .planes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .planes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .planes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .planes {
    grid-template-columns: 1fr;
  }
}





/* -------- FOOTER -------- */
.footer {
  background-color: #0e0238;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer p {
  margin: 5px 0;
  font-size: 14px;
}
 /* planesssssssssssssssssssss planes pagina*/

/* SOLO para la página de planes */
.planes-pagina{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    padding:40px 20px;
}

.planes-pagina .plan{
    width:260px;
}
.plan.popular{
    transform:scale(1.05);
    border:3px solid gold;
}
/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px){

  .planes-pagina{
      gap:20px;
      padding:30px 15px;
  }

  .planes-pagina .plan{
      width:45%;
      min-width:250px;
  }

  .plan.popular{
      transform:scale(1.02);
  }
}


/* ============================= */
/* CELULAR SOLO 1 PLAN */
/* ============================= */
@media (max-width: 700px){

  .planes-pagina{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:20px;
      padding:20px;
  }

  .planes-pagina .plan{
      width:95%;
      max-width:360px;
  }

  .plan.popular{
      transform:none;
  }
}

/* METRAS DE DEL MEDIO*/
.planes-header {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #10164d, #f13e37, #2c5364);
    color: white;
}

.planes-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.planes-header p {
    font-size: 20px;
    color: #dcdcdc;
    max-width: 600px;
    margin: 0 auto;
}

.planes-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 25px auto 0;
    border-radius: 5px;
}
/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px){

  .planes-header{
    padding: 60px 20px;
  }

  .planes-header h2{
    font-size: 32px;
    letter-spacing: 1px;
  }

  .planes-header p{
    font-size: 18px;
    max-width: 500px;
  }

  .planes-header::after{
    width: 60px;
    height: 3px;
  }
}


/* ============================= */
/* CELULAR */
/* ============================= */
@media (max-width: 600px){

  .planes-header{
    padding: 50px 15px;
    background: linear-gradient(135deg, #10164d, #f13e37);
  }

  .planes-header h2{
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }

  .planes-header p{
    font-size: 16px;
    padding: 0 10px;
  }

  .planes-header::after{
    width: 50px;
    margin-top: 15px;
  }
}


/*CSS PROFESIONAL PARA NOSOTROS*/
