/* Estilo base del botón */
/* Botón dorado oscuro con destellos brillantes */
.btn-golden {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #8B7300, #B8860B, #D4AF37, #8B7300); /* Degradado dorado más oscuro */
    /*background-size: 200% 200%;*/
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.8); /* Sombra dorada */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-golden:hover {
    animation: gradient-shift 3s infinite;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 1); /* Sombra más brillante */
    color: #000;
  }

  /* Animación del degradado */
  @keyframes gradient-shift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  /* Efecto de destellos brillantes */
  .btn-golden::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent); /* Brillo circular */
    transform: rotate(45deg);
    animation: sparkle 3s infinite;
  }

  /* Animación de destellos */
  @keyframes sparkle {
    0% {
      transform: rotate(45deg) translate(-100%, -100%);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: rotate(45deg) translate(100%, 100%);
      opacity: 0;
    }
  }

/* Estilo base del botón */
/* Botón dorado oscuro con destellos brillantes */
.btn-orange {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #8B7300, #B8860B, #D4AF37, #8B7300); /* Degradado dorado más oscuro */
  background-size: 200% 200%;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.8); /* Sombra dorada */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-orange:hover {
  animation: gradient-shift 3s infinite;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 1); /* Sombra más brillante */
  color: #000;
}

/* Estilo base del botón */
/* Botón dorado oscuro con destellos brillantes */
.btn-orange {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #f8910b, #d98c38, #ff8c10, #ea8603); /* Degradado dorado más oscuro */
    background-size: 200% 200%;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.8); /* Sombra dorada */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-orange:hover {
    animation: gradient-shift 3s infinite;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 1); /* Sombra más brillante */
    color: #000;
  }

  /* Efecto de destellos brillantes */
  .btn-orange::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent); /* Brillo circular */
    transform: rotate(45deg);
    animation: sparkle 3s infinite;
  }


  .carousel{
    top: 19px;
  }

 /* Estilos personalizados */
 .carousel-item img {
    height: 600px; /* Altura fija para las imágenes */
    object-fit: cover; /* Ajusta la imagen al contenedor */
  }

  .carousel-caption {
      font-family: 'Poppins', sans-serif;
      position: absolute;
      top: 50%; /* Centrado verticalmente */
      left: 50px; /* Alineado a la izquierda */
      transform: translateY(-50%); /* Corrección para centrar verticalmente */
      background: transparent; /* Fondo transparente */
      text-align: left; /* Texto alineado a la izquierda */
      max-width: 40%; /* Limita el ancho del caption */
  }

  .carousel-caption h5 {
      font-size: 3.5rem; /* Título más grande */
      /*color: #ffd700;  Letras blancas */
      background: linear-gradient(45deg, #fff, #D4AF37, #fff, #8B7300); /* Degradado dorado oscuro */
      -webkit-background-clip: text;
      /*-webkit-text-fill-color: transparent;*/
      /*-webkit-text-stroke: 2px #8B7300; /* Borde dorado oscuro */
      font-weight: bold;
      text-transform: uppercase; /* Texto en mayúsculas */
      margin-bottom: 20px; /* Espacio entre el título y el párrafo */
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Sombra negra sencilla */
  }

 

  .carousel-caption p {
      font-size: 1.2rem; /* Párrafo más grande */
      color: #fff; /* Letras blancas */
      margin: 0; /* Sin margen adicional */
  }

   /* Margen superior para el carrusel */
   .carousel-container {
    margin-top: 100px; /* Espacio entre el navbar y el carrusel */
  }

  .topmenu{
    top: -100px;  
  }

  /******Clientes*/
  .marquee-container {
    width: 100%;
    
    /*height: 100px; /* Altura del contenedor */
  }
      
  .marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
  }
  
  .marquee-content img {
    width: 100px; /* Altura máxima de 100px */
    margin-right: 50px; /* Espacio entre imágenes */
    margin-top: -100px;
    height: 50%;
    padding-bottom: 50px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
  }

  .marquee-content img:hover {
    filter: grayscale(0%);
   
  }
  
  @keyframes marquee {
    0% { 
      transform: translateX(0); 
    }
    
    100% { 
      transform: translateX(-100%); 
    }
  }


  .marquee-inverso-container {
    width: 100%;
    
    /*height: 100px; /* Altura del contenedor */
  }
      
  .marquee-inverso-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-inverso 40s linear infinite;
  }
  
  .marquee-inverso-content img {
    width: 100px; /* Altura máxima de 100px */
    margin-right: 50px; /* Espacio entre imágenes */
    margin-top: -100px;
    height: 50%;
    padding-bottom: 50px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
  }

  .marquee-inverso-content img:hover {
    filter: grayscale(0%);
   
  }

  @keyframes marquee-inverso {
    0% { 
      transform: translateX(-100%); 
    }
    
    100% { 
      transform: translateX(0); 
    }
  }

  .titulo-clientes{
    margin-top: -100px;
    text-align: center;
    padding-bottom: 150px;
    padding-top: 50px;
  }

  /******* Fin Clientes*/

  .clientes-fondo{
    background-color: #ffffff;
  }

  .texto-blanco{
    color: #ffffff;
  }

  .texto-negro{
    color: #000000;
  }

  .texto-dorado{
    color: #c6a142 !important;
  }

  .texto-bold{
    font-weight: bold;
    font-size: 3.5rem;
  }

  .margen-top{
    margin-top: 30px;
  }

  .texto-justificado{
    text-align: justify;
  }

  .texto-centrado{
    text-align: center;
  }

  .texto-derecha{
    text-align: right;
  }

  .texto-izquierda{
    text-align: left;
  }

  .fondo-contacto{
    background-color: #05386b !important;
  }

  .fondo-azul{
    background-color: #05386b !important;
  }

  .fondo-item{
    background-color: #fafafa;
  }
  
  .fondo-golden {
    position: relative;
    /*display: inline-block;*/
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #8B7300, #B8860B, #D4AF37, #8B7300) !important; /* Degradado dorado más oscuro */
    background-size: 200% 200%;
    border: none;
    /*border-radius: 5px;*/
    /*text-transform: uppercase;*/
    /*font-weight: bold;*/
    letter-spacing: 1px;
    overflow: hidden;
    /*cursor: pointer;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.8); /* Sombra dorada */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .titulo-pago{
    padding: 10px;
    top: 0px;
  }

  .fondo-dorado{
    background-color: #dcbe84 !important;
  }

  .fondo-item:hover{
    animation: gradient-shift 3s infinite;
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 1); /* Sombra más brillante */
    color: #000;
    background-color: rgba(255, 215, 0, 1);
    cursor: pointer;
  }

  .texto-small{
    font-size: 12px;
  }

  .texto-azul{
    color: #05386b !important;
  }

  #container-caption .carousel-caption {
    position: absolute;
    right: 10%; /* Ajusta este valor para mover horizontalmente */
    left: auto; /* Anula cualquier posición izquierda */
    top: 50%; /* Centra verticalmente */
    transform: translateY(-50%); /* Ajuste fino para centrado vertical */
    text-align: right; /* Alinea el texto a la derecha */
    bottom: auto; /* Anula posición inferior por defecto */
  }

  #container-caption .carousel-caption-2 {
    position: absolute;
    /*right: 10%; /* Ajusta este valor para mover horizontalmente */
    /*left: auto; /* Anula cualquier posición izquierda */
    top: 50%; /* Centra verticalmente */
    transform: translateY(-50%); /* Ajuste fino para centrado vertical */
    text-align: right; /* Alinea el texto a la derecha */
    bottom: auto; /* Anula posición inferior por defecto */
  }

  .margin-bienvenido{
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .bienvenido{
    margin-top: -600px;
  }


  /**************Galeria de fotos*/
  .imagen-sobre-mi {
    width: 80%; /* Hacemos las imágenes más pequeñas */
    height: auto;
    border: 1px solid #ff5b29; /* Borde naranja */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 auto; /* Centrar horizontalmente */
    display: block; /* Asegurarse de que esté centrado */
  }
  .imagen-sobre-mi:hover {
      transform: scale(1.05);
  }
  /**************Fin Galeria de fotos*/

  /**************Galeria de fotos*/
  .galeria img {
    width: 80%; /* Hacemos las imágenes más pequeñas */
    height: auto;
    border: 1px solid #ff5b29; /* Borde naranja */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 auto; /* Centrar horizontalmente */
    display: block; /* Asegurarse de que esté centrado */
  }
  .galeria img:hover {
      transform: scale(1.05);
  }
  /**************Fin Galeria de fotos*/

/*************Formulario de compra*/
.container-formulario {
    max-width: 600px;
    margin: 50px auto;
}
.plan-info {
    background-color: #81bbf4;
    /*padding: 20px;*/
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}
.plan-info h2 {
    color: #000000;
    text-shadow: 1px 1px 3px #000;
}
.paypal-button {
    display: flex;
    margin-top: 15px;
    justify-content: center;
}
/*************Fin Formulario de compra*/

.carousel-item-2 img {
  height: 300px;
  object-fit: cover;
}

.table-bordered-2{
  border-radius: 10px !important;
  border-color: transparent !important;
}

.card-libros{
  margin-top: 25px;
  margin-left: 15px;
}

.display-8{
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.accordion-button:not(.collapse){
  color: #c6a142 !important;
}

.imagen-testimonio{
  max-width: 90%;
  height: auto;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  
}

.imagen-testimonios{
  max-width: 80%;
  height: auto;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-imagen-planes {
    /*margin-top: 20px; /* Espacio entre el botón y la imagen */
    text-align: center; /* Centra la imagen horizontalmente */
}

.quien-es{
  padding: 20px;
}

.titulo-grande{
  display: block;
}

.icono-pago{
  width: 48px;
}

.texto-resaltado {
  /*background-color: #f7dc6f; /* Amarillo claro */
        color: #000000 !important; /* Azul oscuro */
        font-weight: bold;
        padding: 2px 5px;
        border-radius: 4px;
        text-underline-offset: 4px;
        text-shadow: 1px 1px 1px black;
        font-size: 25px;
        animation: resaltar 3s infinite;
}

@keyframes resaltar {
  0% {
      background-color: transparent !important;
  }
  100% {
      background-color: #ff5b29 !important;
  }
}

.texto-animado {
  position: relative;
  display: inline-block; /* Para que el texto se comporte como un bloque en línea */
  font-size: 2rem; /* Tamaño del texto (ajusta según necesites) */
  font-weight: bold; /* Negrita */
  letter-spacing: 1px; /* Espaciado entre letras */
  text-transform: uppercase; /* Texto en mayúsculas */
  color: #000; /* Color inicial del texto (negro) */
  transition: transform 0.2s ease; /* Efecto suave al interactuar */
  animation: color-change 6s infinite, shine-effect 2s infinite; /* Animación de cambio de color + brillo */
  overflow: hidden; /* Necesario para contener el efecto de brillo */
}

.texto-animado:hover {
  /*transform: scale(1.05); /* Aumenta ligeramente el tamaño al pasar el ratón */
}

/* Animación de cambio de color */
@keyframes color-change {
  0% {
    color: #05386b; /* Negro */
    transform: scale(1.0);
  }
  25% {
    color: #000; /* Blanco */
    transform: scale(1.02);
  }
  50% {
    color: #05386b;;/*#D4AF37; /* Dorado */
    transform: scale(1.0);
  }
  75% {
    color: #000; /* Vuelve al negro */
    transform: scale(1.02);
  }
  100% {
    color: #05386b; /* Vuelve al negro */
    transform: scale(1.0);
  }
}

/* Animación de brillo */
@keyframes shine-effect {
  0% {
    background-position: -200% 50%; /* El brillo comienza fuera del texto */
  }
  100% {
    background-position: 200% 50%; /* El brillo termina fuera del texto */
  }
}

 /* Efecto de destellos brillantes */
 .texto-animado::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent); /* Brillo circular */
  transform: skewX(-20deg);/*rotate(45deg);*/
  animation: sparkle 3s infinite;
}

/* Agregar un pseudo-elemento para el efecto de brillo */
.texto-animado::after {
  content: ""; /* Genera un pseudo-elemento */
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%, /* Brillo intenso en el centro */
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg); /* Da un efecto inclinado al brillo */
  animation: shine-effect 3s infinite;
  pointer-events: none; /* Evita que el pseudo-elemento interfiera con el clic */
}

/*.fondo-azul {
  background-color: #0d6efd;
  color: white !important;
}*/

.texto-blanco {
  color: white !important;
}

.rounded-circle {
  object-fit: cover;
}

.accordion-button {
  transition: all 0.3s ease-in-out;
}

.accordion-button:hover {
  background-color: #eef2ff;
}

/* Animación suave al abrir */
.collapse.show {
  animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.accordion-button {
  padding: 1rem;
}

.testimonios-swiper {
  padding-bottom: 2rem;
}

.card-img-top {
  object-fit: cover;
}

.card-title {
  font-size: 1rem;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
}

.swiper {
  width: 100%;
  padding-bottom: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}
.texto-justificado{
  text-align: justify;
}

.card-body-gold{
  background-color: gold !important;
}


  /* Opcional: para mejor responsividad en móviles */
  @media (max-width: 768px) {
    #container-caption .carousel-caption {
      right: 5%;
      left: 5%;
      top: 50%;
      text-align: center;
    }
    #container-caption .carousel-caption h5 {
      font-size: 1.2rem;
    }
    #container-caption .carousel-caption p {
      font-size: 0.9rem;
    }

    .bienvenido{
      margin-top: 0px;
    }

    .titulo-grande{
      display: none;
    }

    .carousel-item img {
      object-fit: cover; /* Ajusta la imagen al contenedor */
      height: 300px; /* Altura fija para pantallas pequeñas */
      width: 100%; /* Ancho completo */
    }

    .carousel-caption {
      background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente para mejor legibilidad */
      padding: 20px; /* Espaciado interno */
      border-radius: 10px; /* Bordes redondeados */
    }

    .carousel-caption h5 {
      font-size: 1.2rem; /* Tamaño de fuente reducido */
    }

    .carousel-caption p {
      font-size: 0.9rem; /* Tamaño de fuente reducido */
    }

    .btn-golden, .btn-orange {
      font-size: 0.7rem; /* Tamaño de fuente reducido */
      padding: 0.30rem 0.5rem; /* Padding reducido */
    }

    .accordion-button img {
          margin-top: 0.5rem;
    }

    .accordion-button {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .accordion-button .text-start {
        text-align: center;
    }

    .texto-justificado{
      text-align: justify;
    }
  }
  /* Ocultar el botón de impresión durante la impresión */
  @media print {
    .no-print {
        display: none;
    }
  }

  


