@font-face {
  font-family: "Hemi Head";
  src: url("../fonts/hemi head bd it.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-black";
  font-weight: 900;
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-medium";
  font-weight: 900;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-bold";
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-ligth";
  font-weight: 300;
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-regular";
  font-weight: 300;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "LEMONMILK-bold";
  font-weight: 300;
  src: url("../fonts/LEMONMILK-Bold.otf") format("truetype");
  font-display: swap;
}


#placeholder {
  background-color: #f0f0f0;
  color: #333;
  padding: 20px;
  text-align: center;
  border: 2px dashed #ccc;
  cursor: pointer;
}

html,
body {
  font-family: "Roboto-bold", bold italic;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.servicios-card {
  cursor: pointer;
  /* Muestra el cursor de botón */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.servicios-card:active {
  transform: scale(0.98);
  /* Simula el efecto de presionado */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.servicios-card:focus {
  outline: 2px solid #ffa500;
  /* Agrega un borde al enfoque */
}

.banner-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  /* Para alinear el contenido del banner y el formulario */
  align-items: center;
  width: 100%;
  overflow: hidden;
  /* Evita que elementos se salgan del contenedor */
  background-color: #000;
}

.swiper-container-banner {
  flex: 1 1 65%;
  /* Ocupa el 65% del ancho */
  position: relative;
}

.contact-form {
  height: 400px;
  flex: 7;
  padding: 10px;
  border-radius: 10px;
  text-align: center;

}

.custom-checkbox {
  margin-top: 10px;
  display: flex;
  align-items: center;
  /* Alinea verticalmente el checkbox y el texto */
  gap: 10px;
  /* Espaciado entre el checkbox y el texto */
}

.custom-checkbox a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Tamaño de los checkboxes */
.checkbox-container #csrf_1 {
  margin-top: 10px;
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
  /* Espacio entre el checkbox y el texto */
}

.checkbox-container #tyc_1 {
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
  /* Espacio entre el checkbox y el texto */
}

/* Estilo del texto de los links */
.checkbox-container a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.1;
  cursor: pointer;
  transition: color 0.3s ease;

}

@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    background-color: #000;
    /* Apila los elementos en pantallas pequeñas */
  }



}

button[type="submit"] {
  padding: 10px;
  background-color: #000;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 800;
  transition: background-color 0.3s;
}

.margin {
  margin-top: 10px;
}

/* Personalización de la paginación */
.swiper-pagination .orange .swiper-pagination-bullet {
  width: 20px;
  /* Cambia el ancho de los botones */
  height: 20px;
  /* Cambia el alto de los botones */
  background-color: #FFA500;
  /* Color naranja */
  opacity: 1;
  /* Asegura que el color de fondo sea sólido */
}

.swiper-servicios .swiper-pagination {

  position: absolute;
  bottom: -50px;
  /* Baja los bullets más hacia abajo */
  width: 100%;
  /* Para centrar los bullets */
  text-align: center;
  /* Centrar los bullets horizontalmente */
  z-index: 999;
  height: 100px;

}

.swiper-container .swiper-pagination {

  position: absolute;
  bottom: -70px;
  /* Baja los bullets más hacia abajo */
  width: 100%;
  /* Para centrar los bullets */
  text-align: center;
  /* Centrar los bullets horizontalmente */
  z-index: 999;
  height: 100px;

}

/* Estado activo del botón */
.swiper-pagination.orange .swiper-pagination-bullet-active {
  background-color: #FF8C00;
  /* Un naranja más oscuro para el botón activo */
}

/* Si quieres que los botones sean aún más grandes, ajusta los valores */


.modal {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Fondo semitransparente */
  box-shadow: none;
}

.modal-content {
  background-image: url(../media/fondomodal.webp);
  background-size: cover;
  background-position: 50%;
  margin: 15% auto;
  padding: 20px;
  box-shadow: none;
  width: 100%;
  max-width: 800px;
  max-height: 400px;
  z-index: 10000;
}

@media (max-width: 1000px) {
  .modal-content {
    max-height: 600px;
  }

}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  /* Prevents scrolling when popup is displayed */
}

.popupcookies-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0;
  box-sizing: border-box;
  z-index: 1000;
}

.popupcookies-content {
  background: #fff;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  margin: 0;
  box-sizing: border-box;
}

.popupcookies-content h2 {
  margin: 10px 0;
  font-size: 16px;
}

.popupcookies-content p {
  font-size: 12px;
  line-height: 1.5;
  margin: 10px 0;
  text-align: center;
}

.accept-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
}

.accept-btn:hover {
  background: #444;
}

.header {
  background-color: #000;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  height: 80px;
  margin: 10px;
  margin-left: -30px;

}

.pill-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  justify-content: center;
  /* Centra los botones horizontalmente */
  align-items: center;
  /* Centra los botones verticalmente */
}

.pill-button-black,
.pill-button-green,
.pill-button-orange {
  font-size: 26px;
  font-family: "Hemi Head", bold italic;
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 5px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centra el contenido dentro del botón */
  height: auto;
}

.pill-button-green {
  background-color: #04b319;
  border: none;
  font-size: 26px;
  font-family: "Hemi Head", bold italic;

  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 5px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centra el contenido dentro del botón */
  height: auto;
}

.pill-button-orange {
  background-color: #ff8400;
  border: none;
  color: black;
}

@media (max-width: 1200px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .header .logo {
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .header .logo img {
    margin-left: 0;
  }

  .pill-buttons {
    justify-content: center;
    /* Centra los botones en pantallas más pequeñas */
  }

  .pill-button-black,
  .pill-button-green,
  .pill-button-orange {
    font-size: 18px;
    padding: 5px 10px;
    margin-right: 5px;
    font-family: "Hemi Head", bold italic;
  }


}


@media (min-width: 901px) {
  .banner-movil {
    display: none;
  }
}

/* Aplica a todos los dispositivos con un ancho máximo de 768px */
@media (max-width: 900px) {
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Asegura que el contenedor ocupe toda la altura de la pantalla */
  }


  .pill-buttons {
    display: flex;
    flex-direction: column;
    /* Coloca los botones en una columna */
    justify-content: center;
    /* Centra los botones verticalmente */
    align-items: center;
    /* Centra los botones horizontalmente */
    width: 100%;
    /* Asegura que el contenedor ocupe todo el ancho disponible */
  }

  .pill-button-black,
  .pill-button-green,
  .pill-button-orange {
    font-size: 30px;
    max-height: 110px;
    height: auto;
    text-align: center;
    width: 100%;
    /* Ocupa el 80% del ancho disponible */
    box-sizing: border-box;
    /* Asegura que el padding y border se incluyan en el ancho total */
    margin-bottom: 10px;
    /* Espacio entre los botones */
    font-family: "Hemi Head", bold italic;
  }




}





.modal {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Fondo semitransparente */
  box-shadow: none;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}




.banner {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.swiper-container-banner {
  width: 100%;
  height: 100%;
  position: relative;
  /* Cambiado a relative para ajustarse a la altura de las imágenes */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide .orange {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff8400;
  border-radius: 20px;
  max-width: 350px;
  min-height: 400px;

}

.swiper-slide .black {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-radius: 20px;
  max-width: 350px;
  min-height: 400px;
}

.swiper-slide .black img {
  width: 70%;
  height: auto;
  display: flex;
}

.swiper-slide .black p {
  color: white;
  max-width: 250px;
  text-align: center;
}

.swiper-slide .orange p {
  color: white;
  max-width: 250px;
  text-align: center;
}

.swiper-slide h3 {
  color: white;
}

.swiper-slide .orange img {
  width: 80%;
  height: auto;
  display: flex;
  padding-top: 10px;
}


.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Estilos iniciales del formulario */
.contact-form {
  position: absolute;
  top: 45%;
  right: 1.2%;

  transform: translateY(-50%);
  z-index: 10000;
  display: flex;
  align-items: center;
  background: black;
  padding: 20px;
  border-radius: 32px;
  width: 50%;
  max-height: 95%;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.ancho {
  max-width: 300px;
}

.contact-form .contact-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
  margin-bottom: -60px;
}

.contact-form .contact-image {
  width: 175%;
  height: auto;
  transition: all 0.3s ease;
}

.contact-form .form-container {
  flex: 2;
  text-align: left;
  color: white;
  width: 100%;
  transition: all 0.3s ease;
  font-family: "Hemi Head";
}

.contact-form h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #ff8400;
  text-align: center;
}

.contact-form p {
  margin: 0 0 10px;
  font-size: 16px;
  color: white;
  text-align: center;
}

.contact-form h4 {
  margin: 0 0 10px;
  font-size: 32px;
  color: white;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.contact-form input[type="text"] {
  margin-bottom: 10px;
  padding: 2px;
  border: none;
  border-radius: 12px;
  width: 80%;
  max-height: 40px;
  box-sizing: border-box;
  text-align: center;
  font-size: 24px;
  font-family: "Hemi Head", bold italic;
}

.contact-form label {
  color: white;
  text-align: center;
  font-family: "Roboto";
  font-size: 12px;
  align-items: center;
}



.checkbox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 40px;
}

.contact-form .orange-button {
  padding: 10px;
  background-color: #ff8000;
  border: none;
  border-radius: 12px;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto-black", black;
  border: 1px solid white;
  text-align: center;
  margin: 20px;
  white-space: nowrap;
  overflow: visible;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 350px;
}

.contact-form .orange-button span {
  display: block;
  overflow: visible;
  text-overflow: ellipsis;
  flex-grow: 1;
  text-align: center;
  font-size: 36px;
}

.contact-form .orange-button img {
  height: 40px;
  width: 40px;
  margin-left: -10px;
}

@media (max-width: 500px) {
  .contact-form .orange-button span {
    font-size: 20px;
  }
}



.contact-form .form-button {
  padding: 10px;
  background-color: #04b319;
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: flex;
  max-height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: "Roboto-black", black;
  border: 1px solid white;
  text-align: center;
  margin: 20px;
}

.contact-form .form-button .icon {
  width: 20px;
  height: 20px;
  padding-left: 5px;
  padding-right: 15px;
}

.contact-form .form-button:hover {
  background-color: green;
}

/* Media queries para hacer todo más pequeño cada 300px */
@media (max-width: 1800px) {
  .contact-form {
    padding: 10px;
    width: 400px;

  }

  .contact-form h2 {
    font-size: 34px;
    margin-bottom: 2px;
  }

  .contact-form p,
  .contact-form label {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .contact-form input[type="text"] {
    font-size: 22px;
    margin-bottom: 2px;
  }

  .contact-form .form-button {
    font-size: 14px;
  }

  .contact-form .contact-image-container {
    margin-bottom: -70px;
  }

  .contact-form .contact-image {
    width: 140%;
    height: auto;
    transition: all 0.3s ease;
  }
}

@media (max-width: 900px) {
  .contact-form {
    padding: 8px;
    width: 25%;
  }

  .contact-form h2 {
    font-size: 24px;
  }

  .contact-form p,
  .contact-form label {
    font-size: 8px;
  }

  .contact-form input[type="text"] {
    font-size: 22px;
  }

  .contact-form .form-button {
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  .contact-form {
    padding: 6px;
    width: 20%;
  }

  .contact-form h2 {
    font-size: 24px;
  }

  .contact-form p,
  .contact-form label {
    font-size: 6px;
  }

  .contact-form input[type="text"] {
    font-size: 22px;
  }

  .contact-form .form-button {
    font-size: 8px;
  }
}







/* Mostrar el formulario en el contenedor mobile-form en pantallas pequeñas */
.mobile-form .contact-form {
  position: static;
  transform: none;
  margin: 10px auto;
  /* Reducir margen superior e inferior */
  width: 85%;
  max-height: 300px;
  /* Reducir altura máxima */
  display: flex;
  flex-direction: row;
  /* Mantener disposición en fila */
  align-items: flex-start;
  padding: 10px;
  /* Reducir padding */
  box-sizing: border-box;
  height: 80%;
}

.mobile-form .contact-image-container {
  flex: 0 0 30%;
  /* Reducir tamaño del contenedor de imagen */
  margin-right: 1%;
  left: -45px;
  margin-top: 10px;
  /* Ajustar para mover la imagen hacia abajo */
}

.mobile-form .contact-image {
  width: 180%;
  /* Ajustar ancho de la imagen a 100% del contenedor */
  height: auto;
  /* Mantener proporción de la imagen */
  display: block;
  /* Asegurarse de que la imagen se comporte como un bloque */
}

.mobile-form .form-container {
  flex: 1;
  text-align: left;
}

.contact-form label {
  font-size: 12px;
  /* Aumentar tamaño de fuente */
  width: 100%;
  text-align: left;
  margin-bottom: 0px;
  /* Reducir margen inferior */
}

.mobile-form input[type="text"],
.mobile-form input[type="email"],
.mobile-form textarea {
  font-size: 18px;
  /* Aumentar tamaño de fuente */
  width: 80%;
  margin-bottom: 5px;
  /* Reducir margen inferior */
  padding: 4px;
  /* Reducir padding */
  box-sizing: border-box;
}

.mobile-form button {
  font-size: 16px;
  /* Ajustar tamaño de fuente */
  padding: 4px 4px;
  /* Reducir padding horizontal */
  border-radius: 8px;
  width: auto;
  /* Hacer el botón de tamaño automático */
  box-sizing: border-box;
  margin-top: 5px;
  /* Reducir margen superior */
  margin-bottom: 5px;
}

.mobile-form img {
  width: 15%;
  height: auto;
  margin-right: -5px;
}

a {
  text-decoration: none;
}

.mobile-form h2 {
  font-size: 16px;
  /* Aumentar tamaño de fuente */
  text-align: center;
  width: 100%;
  margin-bottom: 5px;
  /* Reducir margen inferior */
}

.mobile-form p {
  font-size: 12px;
  /* Ajustar tamaño de fuente */
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
  /* Reducir margen inferior */
}

@media (max-width: 450px) {
  .checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Espacio entre cada checkbox */
  }

  .checkbox-item {
    display: flex;
    align-items: flex-start;
    /* Alinea la caja al inicio del texto */
    gap: 10px;
    /* Espacio entre el checkbox y el texto */
  }

  .checkbox-item input[type="checkbox"] {
    margin-top: 4px;
    /* Ajusta el margen superior para alinear mejor con el texto */
    margin-left: 10px;
  }

  .checkbox-item a {
    font-family: 'Roboto-regular';
    /* Aplica la fuente */
    color: #fff;
    /* Cambia el color del texto si es necesario */
    text-decoration: none;
  }

  .mobile-form .contact-image {
    width: 150%;
    /* Ajustar ancho de la imagen a 100% del contenedor */
    height: auto;
    /* Mantener proporción de la imagen */
    display: block;
    /* Asegurarse de que la imagen se comporte como un bloque */
  }

  .mobile-form .contact-image-container {
    flex: 0 0 30%;
    /* Reducir tamaño del contenedor de imagen */
    margin-right: 1%;
    left: -15px;
    margin-top: 20px;
    /* Ajustar para mover la imagen hacia abajo */
  }
}

@media (max-width: 420px) {
  .mobile-form .contact-image {
    width: 155%;
    /* Ajustar ancho de la imagen a 100% del contenedor */
    height: auto;
    /* Mantener proporción de la imagen */
    display: block;
    /* Asegurarse de que la imagen se comporte como un bloque */
  }

  .mobile-form .contact-image-container {
    flex: 0 0 30%;
    /* Reducir tamaño del contenedor de imagen */
    margin-right: 1%;
    left: -20px;
    margin-top: 50px;
    /* Ajustar para mover la imagen hacia abajo */
  }
}


@media (max-width: 360px) {
  .mobile-form .contact-image {
    width: 155%;
    /* Ajustar ancho de la imagen a 100% del contenedor */
    height: auto;
    /* Mantener proporción de la imagen */
    display: block;
    /* Asegurarse de que la imagen se comporte como un bloque */
  }

  .mobile-form .contact-image-container {
    flex: 0 0 30%;
    /* Reducir tamaño del contenedor de imagen */
    margin-right: 1%;
    left: -20px;
    margin-top: 60px;
    /* Ajustar para mover la imagen hacia abajo */
  }
}

@media (max-width: 1060px) {
  .contact-form {
    display: none;
  }
}

@media (min-width: 1061px) {
  .mobile-form {
    display: none;
  }
}



/* Consulta de medios para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .gris h2 {
    font-size: 24px;
    /* Tamaño de fuente más pequeño en pantallas pequeñas */
  }
}

.permanencia {
  margin-top: 15px;
  background-color: white;
  margin-bottom: 30px;
  color: black;
  font-size: 12px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.permanencia h2 {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .permanencia {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .permanencia {
    font-size: 8px;
    margin-top: -15px;
  }
}

.fibra-optica {
  color: #ff8400;
  font-size: 38px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .gris {
    font-size: 36px;
    height: auto;
  }

  .fibra-optica {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .gris {
    font-size: 24px;
    padding: 10px;
  }

  .fibra-optica {
    font-size: 24px;
  }
}

.plan-line {
  height: 20px;
  background: black;
  color: white;
  font-size: 16px;
}

.swiper-container {
  width: 100%;
  padding: 20px 0;
  margin: auto;
  overflow: hidden;
  /* Esto asegura que las tarjetas fuera del área visible se oculten */
}

.swiper-slide {
  display: flex;
  align-items: center;

}

.swiper-container {
  display: flex;
  align-items: center;
  /* Centra verticalmente las flechas con respecto a las tarjetas */
  position: relative;
}

.swiper-wrapper {
  display: flex;
}

.plan-card {
  min-width: 300px;
  width: 300px;
  min-height: 798px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-family: "Hemi Head", bold italic;
  text-align: center;
  background-color: white;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0px;
  border-bottom-right-radius: 40px;
  border-top-left-radius: 40px;
}

.swiper-button-prev.custom-navigation,
.swiper-button-next.custom-navigation {
  color: orange;
  position: absolute;
  display: none;
  /* Serán mostradas solo cuando se aplique la clase `show-navigation` */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}



.swiper-button-prev.custom-navigation {
  left: 10px;
  /* Ajusta según sea necesario */
}

.swiper-button-next.custom-navigation {
  right: 10px;
  /* Ajusta según sea necesario */
}

.swiper-container.show-navigation .swiper-button-prev.custom-navigation,
.swiper-container.show-navigation .swiper-button-next.custom-navigation {
  display: block;
  /* Mostradas cuando se aplica la clase `show-navigation` */
}

.plan-card .precio-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #ff8400;
  padding: 10px 0;
}

.plan-card .precio-container-black {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: black;
  padding: 10px 0;
  margin-top: -10px;
}

.plan-card .card-header-1 {
  background-color: black;
  padding: 5px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}


.card-header-orange {
  background-color: #ff8400;
  color: black;
  height: 50px;
  font-size: 16px;

}

.plan-card .card-header-aumenta {
  margin-top: -60px;
  margin-left: -40px;
  background-color: black;
  padding: 5px;
  color: white;
  font-size: 12px;
  font-weight: bold;

  border-radius: 0 10px 10px 0;
}

.plan-card .card-header-aumenta-orange {
  margin-top: -60px;
  margin-left: -40px;
  background-color: #ff8400;
  padding: 5px;
  color: white;
  font-size: 12px;
  font-weight: bold;

  border-radius: 0 10px 10px 0;
}

.line-through {
  position: relative;
  display: inline-block;
  color: white;
  width: 25%;
}

.line-through::before {
  content: "";
  position: absolute;
  width: 100%;
  /* Línea del ancho del número */
  height: 4px;
  /* Grosor de la línea */
  background-color: orange;
  /* Color de la línea */
  top: 50%;
  /* Cruza el texto horizontalmente */
  left: 0;
  transform: translateY(-50%);
}

.line-through-white {
  position: relative;
  display: inline-block;
  color: black;
  width: 25%;
}

.line-through-white::before {
  content: "";
  position: absolute;
  width: 100%;
  /* Línea del ancho del número */
  height: 4px;
  /* Grosor de la línea */
  background-color: white;
  /* Color de la línea */
  top: 50%;
  /* Cruza el texto horizontalmente */
  left: 0;
  transform: translateY(-50%);
}

.plan-card {
  overflow: visible;
  /* Asegura que el contenido que sobresale no se corte */
}

.card-header-1 {
  position: relative;
  /* Necesario para posicionar el sticker dentro de este contenedor */
  padding: 10px;
  /* Ajusta según sea necesario */
  background-color: #f8a92c;
  /* Ajusta según sea necesario */
  font-size: 1.5em;
  /* Ajusta según sea necesario */
  font-weight: bold;
  /* Ajusta según sea necesario */
  text-align: center;
  /* Centra el texto */
  overflow: visible;
  /* Asegura que el contenido que sobresale no se corte */
  border-radius: 15px;
  /* Hace que el fondo sea redondeado */
}

.sticker {
  position: absolute;
  top: -40px;
  /* Ajusta según sea necesario para que sobresalga más arriba */
  right: -40px;
  /* Ajusta según sea necesario para que sobresalga más a la derecha */
  width: 20px;
  /* Hace la imagen más pequeña */
  height: 20px;
  /* Hace la imagen más pequeña */
}

.plan-card {
  overflow: visible;
  /* Asegura que el contenido que sobresale no se corte */
}

.rounded-image {
  border-radius: 20px 0 20px 0;
  /* Superior izquierda y inferior derecha redondeadas */
  width: 100%;
  /* Asegura que las imágenes sean responsivas */
  height: auto;
  /* Mantiene la proporción original de las imágenes */
}

.card-header-1 {
  position: relative;
  /* Necesario para posicionar el sticker dentro de este contenedor */
  padding: 10px;
  /* Ajusta según sea necesario */
  background-color: #f8a92c;
  /* Ajusta según sea necesario */
  font-size: 1.5em;
  /* Ajusta según sea necesario */
  font-weight: bold;
  /* Ajusta según sea necesario */
  text-align: center;
  /* Centra el texto */
  overflow: visible;
  /* Asegura que el contenido que sobresale no se corte */
  /* border-radius: 0px;  Hace que el fondo sea redondeado */
  border-top-left-radius: 40px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;

}

.card-header-1 img.sticker {
  position: absolute;
  top: -60px;
  /* Ajusta según sea necesario para que sobresalga más arriba */
  right: -90px;
  /* Ajusta según sea necesario para que sobresalga más a la derecha */
  width: 150px;
  /* Hace la imagen más pequeña */
  height: 150px;
  /* Hace la imagen más pequeña */
}



.plan-card .card-header-2 {
  color: white;
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  margin-top: -10px;
}

.plan-card .card-header-2-orange {
  color: #000;
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  margin-top: -10px;
}

.plan-card .card-header-3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-left: 5px;
  margin: 0;
}


.plan-card .black-line {
  background-color: black;
  color: white;
  padding: 5px;
  font-size: 14px;
  font-family: "Roboto-black";
  margin-top: 0px;
  height: 50px;

}

.plan-card .orange-line {
  background-color: #ff8400;
  color: black;
  padding: 5px;
  font-size: 14px;
  font-family: "Roboto-black";
  margin-top: -10px;
  height: 40px;

}

.vendido {
  background-color: #000;
  color: #ff8000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 16px;
  width: 200px;
  text-align: center;
  margin-bottom: -10px;
}

.menos {
  margin-top: -10px;
}

.custom-list {
  font-family: "Roboto-bold";
  list-style-position: inside;
  /* Cambia la posición del punto al interior */
  padding-left: 0;
  /* Elimina cualquier relleno a la izquierda */
  text-align: left;
  /* <-- fuerza alineación a la izquierda */
}

.custom-list li {
  margin-left: 10px;
  /* Ajusta la posición del punto si es necesario */
  text-indent: 0;
  /* Evita cualquier indentación adicional */
}

.plan-card .oferta {
  width: 50%;
  margin-left: 30px;
  align-items: center;
}

.ver-mas-container {
  font-family: Arial, sans-serif;
  padding: 10px;
  margin: 20px auto;
  cursor: pointer;
}

.toggle-header {
  align-items: center;
  gap: 10px;
  /* Espacio entre la imagen y el texto */
  color: #ff8000;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Roboto-bold;

}

.plan-card .icon {
  width: 20px;
  /* Tamaño de la imagen */
  transition: transform 0.3s ease;
  /* Animación para rotar */
}

.icon.rotated {
  transform: rotate(180deg);
  /* Rotación cuando visible */
}

.hidden-content {
  display: none;
  /* Oculto por defecto */
  margin-top: 10px;
  color: #333;
  /* Color de texto */
  text-align: center;
  /* Centramos texto en el contenedor */
}

.desplege {
  text-align: left;
  font-family: "roboto-bold";
  font-size: 14px;
}


.plan-card img {
  align-self: center;
  height: auto;
}

.plan-card .white-section {
  background-color: white;
  color: black;
  font-size: 24px;
  margin-bottom: -50px;
  margin-top: -20px;
  z-index: 500;

}

.plan-card .precio-promo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -25px;
  margin-top: -30px;
  margin-top: 5px;
}

.plan-card .precio-promocional {
  color: black;
  font-size: 100px;
}

.plan-card .numero-inc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 10px;
}

.plan-card .numero-pequeño {
  font-size: 40px;
  line-height: 1.2em;
  text-align: right;
  margin-top: 0px;
}

.plan-card .texto-pequeño {
  font-size: 10px;
  text-align: right;
}

.plan-card .separador {
  width: 100%;
  border: none;
  border-top: 1px solid black;
  margin: 5px 0;
  margin-top: -8px;
}

.plan-card .incluye {
  text-align: left;
  font-size: 24px;
}

.plan-card .precio-normal {
  font-size: 18px;
  font-family: "Roboto-regular";
  margin-bottom: 10px;
}

.plan-card .texto-antivirus {
  font-size: 18px;
  font-family: "Roboto-bold";
  margin-top: -20px;
  margin-bottom: 10px;

}

.plan-card .texto-antivirus-1 {
  font-size: 18px;
  font-family: "Roboto-bold";
  margin-top: 5px;
  margin-bottom: 10px;
}

.plan-card .texto-antivirus-2 {
  font-family: 'Roboto-bold';
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  color: #ff8400;
  margin-top: -15px;
}

.plan-card .texto-antivirus-3 {
  font-family: 'Roboto-bold';
  color: black;
  font-size: 22px;
}

.plan-card .antivirus {
  font-size: 18px;
  font-family: "Roboto-black";
  text-align: left;
  margin-left: 30px;
  margin-top: 0px;
}

.plan-card .discount-container-white {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.plan-card .price-discount {
  color: #ff8400;
  font-size: 50px;
  margin-left: 20px;
}


.plan-card .text-discount {
  font-family: "Roboto-black";
  color: #ff8400;
  font-size: 18px;
  text-align: left;
  margin-left: 5px;
  max-width: 200px;
  height: 3.6em;
  line-height: 1.2em;
  margin-right: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.plan-card .text-discount-white {
  font-family: "Roboto-black";
  color: #ffff;
  font-size: 18px;
  text-align: left;
  margin-left: 5px;
  max-width: 260px;
  height: 3.6em;
  line-height: 1.2em;
  margin-right: 20px;
  margin-left: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.plan-card .text-discount1 {
  font-family: "Roboto-black";
  color: #ff8400;
  font-size: 22px;
  text-align: center;
  margin-left: 5px;
  max-width: auto;
  height: 3.6em;
  line-height: 1.2em;
  margin-right: 0px;
  margin-top: 10px;
  margin-bottom: -10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.plan-card .bottom-fixed {
  width: 100%;
  margin-top: auto;
  /* Empuja esta sección hacia abajo */
  /*background-color: #ff8400;*/
  margin-bottom: 10px;
}

.plan-card .button {
  font-family: "Roboto-black";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #ff8400;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.plan-card .button img {
  margin-left: 10px;
}

.plan-card .button:hover {
  background: darkorange;
}

hr {
  border: 1px solid #000;
  margin: 20px 0;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
  margin-bottom: -15px;
}

.image-container img {
  width: 75%;
  height: auto;
}



.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
  margin-bottom: -15px;
}

.image-container img {
  width: 75%;
  height: auto;
}



.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.separator-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  width: auto;
  padding: 0 10px;
}

.swiper-container {
  width: 80%;
  padding: 20px 0;
  margin: auto;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


.swiper-servicios {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 550px;

}

.wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.separator-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  width: auto;
  padding: 0 10px;
}

.swiper-container {
  width: 80%;
  padding: 20px 0;
  margin: auto;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*.swiper-slide:not(:last-child) > .servicios-card::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: orange;
}
*/

.servicios-card {
  min-width: 300px;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  font-family: "Roboto-bold";
  text-align: center;
  background-color: orangered;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.servicios-card img {
  width: 80%;
  height: auto;
}




.button img,
.button2 img {
  margin-left: 10px;
  height: 30px;
  width: 30px;
  margin-bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  color: orange;
  position: absolute;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-next {
  right: -2px;
}

.swiper-button-prev {
  left: -2px;
}



.swiper-pagination-bullet {
  background-color: #f4ca95 !important;
}

.swiper-pagination-bullet-active {
  background-color: #ff8400 !important;
}


.swiper-container {
  position: relative;
}

@media (max-width: 1024px) {
  .swiper-container {
    width: 90%;
  }

  .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .swiper-container {
    width: 100%;
  }

  .swiper-slide {
    width: 100%;
  }
}

.plan-card .price,
.plan-card .normal-price {
  padding: 15px 10px;
}

/* Estilos responsivos para pantallas más pequeñas */
@media (max-width: 900px) {


  .buttons-container {
    display: block;
    background-color: #fff;
    padding: 10px;
    width: 95%;
    text-align: center;
  }

  .buttons-container .pill-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    width: 100%;
  }
}



.contact-section {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: black;
  text-align: center;
  background-image: url(../media/cards/form.webp);
  background-size: cover;
  background-position: 100%;
  align-items: center;
}

@media (max-width: 1000px) {
  .contact-section {
    background-image: url(../media/cards/form-mobile.webp);
  }
}

#contact-section-envio {
  background: radial-gradient(circle,
      rgba(255, 173, 84),
      rgba(255, 133, 2) 100%);
  padding: 20px;
  display: flex;
  justify-content: center;
  /* Centramos horizontalmente el contenido */
  align-items: center;
  /* Centramos verticalmente el contenido */
  height: 100vh;
  /* Opcional: ajusta la altura según sea necesario */
  color: black;
  text-align: center;
  max-height: 200px;
}

#contact-section-envio .text-container {
  color: black;
  text-align: center;
}


.contact-section .text-container {
  flex: 3;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  overflow-wrap: break-word;
  font-family: "roboto", bold italic;
}



.contact-section .contact-section-form-container {
  flex: 2;
  text-align: left;
  /* Alineación a la izquierda */
  max-width: 600px;
  font-size: 22px;
  font-family: "Roboto";
}

.contacto-section .contact-section-form-container label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.5em;
  /* Tamaño de fuente inicial del label */
}

.contact-section .contact-section-form-container input[type="text"] {
  font-family: "roboto-bold", bold italic;
  width: 100%;
  max-height: 70px;
  max-width: 450px;
  padding: 20px;
  font-size: 150%;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  text-align: center;
  /* Texto centrado */
}

.contact-section .contact-section-form-container .checkbox-container {
  display: flex;
  align-items: flex-start;
  /* Alinea los elementos al inicio para que el checkbox esté al nivel de la primera línea del label */
  margin: 10px 0;
  flex-direction: column;
  text-align: left;
}

.contact-section .contact-section-form-container input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
  /* Ajusta este valor según sea necesario para alinear el checkbox con la primera línea del label */
}

.contact-section .contact-section-form-container .checkbox-container label {
  font-size: 1.2em;
  /* Aumenta el tamaño de fuente del texto del checkbox */
}

.contact-now-button {
  font-family: "Roboto-black";
  background-color: black;
  color: white;
  font-size: 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  flex-shrink: 0;
}

.contact-now-button:hover {
  background-color: #2d2e32;
}

.contact-now-whatsapp {
  font-family: "Roboto-black";
  background-color: #04b319;
  color: white;
  font-size: 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 1600px) {
  .contact-section h1 {
    font-size: 28px;
    white-space: normal;
  }


}

@media (max-width: 1160px) {
  .contact-section h1 {
    font-family: roboto-bold;
    font-size: 28px;
    white-space: normal;
  }

  .contact-section .contact-section-form-container label {
    font-size: 1.3em;
    /* Ajustar más el tamaño de fuente del label */
  }

  .contact-section .contact-section-form-container .checkbox-container label {
    font-size: 0.9em;
    /* Ajustar más el tamaño de fuente del texto del checkbox */
  }
}

@media (max-width: 1000px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-section .text-container,
  .contact-section .contact-section-form-container {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
  }

  .contact-section .text-container {
    width: 100%;
  }

  .contact-section h1 {
    font-size: 30px;
    white-space: normal;
  }


  .contact-section .contact-section-form-container label {
    font-size: 1.2em;
    /* Ajustar tamaño de fuente del label en pantallas pequeñas */
  }

  .contact-section .contact-section-form-container .checkbox-container label {
    font-size: 0.8em;
    /* Ajustar tamaño de fuente del texto del checkbox en pantallas pequeñas */
  }

  .contact-section .contact-section-form-container .checkbox-container {
    justify-content: center;
    /* Asegura que el checkbox y el label estén alineados en el centro */
  }



  .contact-now-button {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    font-size: 30px;
    margin-left: 0px;
  }
}





/* Estilos responsivos */









#floatingButton {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: 20px;
  animation: orbit 6s infinite ease-in-out;
  z-index: 1000;
  visibility: hidden;
}

@keyframes orbit {
  0% {
    transform: translateX(0) translateY(0);
  }

  25% {
    transform: translateX(4px) translateY(-4px);
  }

  50% {
    transform: translateX(8px) translateY(0);
  }

  75% {
    transform: translateX(4px) translateY(4px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 1200px) {
  #floatingButton {
    width: 50%;
    height: auto;
    z-index: 1000;
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}


#whatsappLink {
  position: fixed;
  /*flotante mobile*/
  bottom: 50px;
  right: 20px;
  z-index: 10000;
}

#mobileButtonContainer {
  display: none;
  /* Ocultar en dispositivos de escritorio */
}

.header-final {
  margin-top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 20px;
  font-family: "Roboto-bold";
  font-size: calc(12px + 0.5vw);
  color: white;
  border-top: 1px solid #ddd;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  flex: 1;
  text-align: center;
  font-family: "Roboto-black";
}

.header-left .logo {
  height: calc(50px + 1vw);
  margin-right: 20px;
  margin-left: 20px;
}

.header-right {
  font-family: "Roboto";
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header-right span {
  cursor: pointer;
  color: white;
  margin-right: 10px;
}

.header-final span a {
  cursor: pointer;
  color: white;

  font-size: calc(10px + 0.5vw);
}





.popup {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 100000;
  /* Asegura que el popup esté por encima de otros elementos */
}



.popup-content {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

.popup-image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin-right: 20px;
}

.popup-form {
  flex: 1;
}

.popup-form h2 {
  margin: 0 0 10px;
}

.popup-form p {
  margin: 0 0 20px;
}

#numero-celular {
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkboxes {
  text-align: left;
  margin-bottom: 20px;
}

.checkboxes label {
  display: block;
  margin-bottom: 10px;
}

button {
  background: #ff8400;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: black;
}


@media (min-width: 768px) {
  .contrata3 {
    display: flex;
  }
}