html {
  scroll-behavior: smooth;
}

body {
  font-family: 'bogle';
  src: url(../fuente/Bogle-20250611T212308Z-1-001/Bogle/Bogle-Black.otf);
  font-weight: bold;
  font-style: bold;
  color: white;

}

.back {
  background-image: url('../img/BG-mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  /* o fixed si quieres efecto parallax */
  height: auto;
  min-height: 100vh;
  width: 100%;
}


/* PRIMERA SECCION  */
.fondo-seccion1-mob {
  background-image: url('../img/BG_home.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  /* o fixed si quieres efecto parallax */
  height: auto;
  min-height: 100vh;
  width: 100%;
}

.h1 {
  font-size: 60px;
  font-weight: bold;
}

.master {
  padding-top: 410px;
}



.logoht,
.logowl {
  width: 75%;
}

/* BOTON */

.btn {
  -webkit-appearance: none;
  border: 0;
  outline: 0;

  position: relative;
  background: linear-gradient(to bottom, #f6be2d 10%, #ec1f28 90%);
  background-size: 200% 100%;
  padding: 0.6rem 1.5rem;
  color: white;
  border-radius: 100px;
  font-size: 1.5rem;
  transition: 0.3s;
  border: 1px solid white;
  font-weight: bold;
}

.btn:hover {
  animation: bruh 3s linear infinite;
}

@keyframes bruh {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

a {
  display: table;
  margin: 25px auto;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

a:hover {
  color: white;
}

/* SEGUNDA SECCION  */

.fondo-seccion2-mob {
  background-image: url('../img/BG-mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: auto;
  /* o lo que necesites */
  min-height: 100vh;
  width: 100%;
}

.titulo-brillante {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  color: white;
  -webkit-text-stroke: 2px #FFB107;
  /* Borde verde */
  text-shadow:
    0 0 5px #FFB107,
    0 0 10px #B4E243,
    0 0 20px #FFB107;
  /* Brillo */
}

.borde-degradado {
  padding: 3px;
  /* grosor del borde */
  background: linear-gradient(45deg, #D38312, #A83279);
  /* tu degradado */
  border-radius: 15px;
  /* opcional */
  display: inline-block;
  /* o block */
  margin: 0px 50px 0px 50px;
}

.borde-degradado .cnt-dim {
  background: white;
  /* fondo interno */
  border-radius: 15px;
  /* igual o menor que el contenedor exterior */
  /* padding: 50px; */
}

.cnt-dim {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

.paso p {
  color: black;
  text-align: center;
  font-weight: 400;
}

/* span {
  color: black;
  font-size: 24px;
} */
.terminos {
  white-space: nowrap;           /* Evita que se rompa en varias líneas */
  overflow-x: auto;              /* Permite scroll horizontal si no cabe */
  font-size: 1rem;
  color: #000;
}

.terminos p {
  display: inline-block;
  white-space: normal; /* permite que se corte solo si es muy necesario */
  font-size: 12px;
  color: #000;
}

.terminos a {
  color: #000;
  text-decoration: underline;
  display: inline; /* Asegura que no salte de línea */
}

.terminos::-webkit-scrollbar {
  display: none; /* Oculta la barra en móviles si se llega a activar */
}

.rojo strong{
  color: red;
  font-size: 22px;
}
/* TERCERA SECCION  */



.plug {
    font-size: 20px;
    color: white;
    margin: 0;
    padding: 0px 74px;
}

/* CUARTA SECCION  */

.fondo-seccion4-prd {
  background-image: url('../img/BG-mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: auto;
  /* o lo que necesites */
  min-height: 100vh;
  width: 100%;
}

.prdc {
  background-color: white;
  border-radius: 10px;

}

.ppr {
  color: black;
  font-size: 15px;
  margin: 20px 50px 20px 50px;
}

.cnt-prem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.carousel-inner {
  padding: 76px;
  display: flex;
  gap: 20px;
}

.cnt-esc {
    display: flex;
  
    align-items: center;
    
    margin: 0 auto;
  }


/* 
QUINTA cuarta   */



.accordion-button {
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  transition: transform 0.2s ease-in-out;
}

.accordion-item {
  border-radius: 12px;
}

.accordion-body {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.cnt-preguntas {
  width: 427px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;

}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  /* o el color que prefieras */
}

.btn-comprarBA {
 
  background-color: #3FAD49; 
  color: white;
  border: none;
  padding: 7px 52px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-comprar:hover {
  background-color: #2A7330; /* azul más oscuro al pasar el mouse */
}


.btn-comprar {
  background-color: #0075dc; 
  color: white;
  border: none;
  padding: 7px 52px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-comprar:hover {
  background-color: #005bb5; /* azul más oscuro al pasar el mouse */
}

  
.footer{
  background-color: white;
  display: flex;
  flex-direction: row;
  width:100%;
  
  justify-content: flex-start;
  align-items: center;
  padding: 33px 0px;
  gap: 5px;
}
.footer img{
  width: 40%;
  height: auto;
}
.flecha-subir {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: red;
  color: yellow;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 999;
  animation: salto 1s infinite;
}

/* Eliminar espacio no deseado */
.flecha-subir::after {
  content: "";
  display: none;
}

@keyframes salto {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.footer {
  background-color: #fff; /* o el color que estés usando */
}

.footer-img {
  max-width: 150px; /* ajusta este valor según lo que necesites */
  height: auto;
  object-fit: contain;
}

.modal-dialog {
  max-width: 70vw;
  max-height: 70vh;
}

/* ::::::::TAMAÑO ESCRIORIO :::::::: */

@media (min-width : 786px) {
  .back {
    background-image: url('../img/BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* o fixed si quieres efecto parallax */
    height: auto;
    min-height: 100vh;
    width: 100%;
  }

  .fondo-seccion1-mob {
    background-image: url('../img/BG_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* o fixed si quieres efecto parallax */
    height: auto;
    min-height: 100vh;
    width: 100%;
  }

   .h1 {
    font-size: 40px;
    font-weight: bold;
  }
  .cntm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end ;
   
    width: 28%;
    height: auto;
    min-height: 100vh;
    margin: 0px 0px 0px 200px; 
    
  }

  .master {
    padding-top: 0px;
  }

  .logoht,
  .logowl {
    width: 75%;
  }

  .m-tex {
    font-size: 22px;
  }

  .h2 {
    font-size: 21px;
  }

  /* ====SECCION DOS DIMAICA==== */

  .cnt-dim {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 60px 60px 60px 60px;
  }


  .paso {
    display: flex;
    flex-direction: column;
    justify-content: center center;
    align-items: center;
    padding: 0px;
  }

  .terminos {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: black;
  }

  .terminos span {
    font-size: 12px;
    font-weight: 400;
    color: black;
  }

  /* ::::: SECCION 4 :::: */

  .cnt-esc {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    
  }

  .cnt-prem {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }

  .cnt-prem {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }

  .prdc {
    flex: 1;
    margin: 0;
    /* quita márgenes grandes para que se acomoden en fila */
    max-width: 300px;
  }
 

  /* SECCION 5 PREGUNTAS */

  .cnt-preguntas {
    width: 967px;
  }
  
 
  .footer-img {
    max-width: 200px;
  }


}

@media (max-width: 767px) {
  .footer-img {
    max-width: 120px;
  }
   .modal-dialog {
    max-width: 90vw;
    max-height: 90vh;
  }
}
}