/* 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;
}

/* 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;
}

/* Estilo base del botón */
/* Botón azul oscuro con destellos brillantes */
.btn-blue {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #003366, #0074D9, #7FC8FF, #003366); /* 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-blue: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-blue::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;
}

/* Estilo base del botón */
/* Botón verde oscuro con destellos brillantes */
.btn-green {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #004D40, #2E7D32, #66BB6A, #004D40); /* 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-green: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-green::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%); 
    }
  }

  .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 !important;
  }

  .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;
  
}

.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;
}


/* Estilo para el header con degradado */
.header-blog {
  background: linear-gradient(90deg, black, #8B4513, black); /* Negro -> Dorado Oscuro (#8B4513) -> Negro */
  background-size: 200% auto; /* Ajusta el tamaño del degradado */
  animation: gradient-animation 5s infinite alternate; /* Animación suave */
}

/* Animación para el degradado */
@keyframes gradient-animation {
  0% {
      background-position: 0% 50%; /* Comienza en el lado izquierdo */
  }
  100% {
      background-position: 100% 50%; /* Termina en el lado derecho */
  }
}

.articulo-content {
  background-color: #FFF3E0; /* Naranja muy clarito */
  
  border-radius: 8px; /* Bordes redondeados para un diseño más moderno */
}


  /* 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 */
    }
  }
  /* Ocultar el botón de impresión durante la impresión */
  @media print {
    .no-print {
        display: none;
    }
  }

  


