@media screen and (min-width: 0px) {
    body{
        background-color: #133F62;
        color: white;
    }
    .border-left {
        border-left: 1px solid white;
    }

    #carouselExampleFade .carousel-item{
        background-repeat: no-repeat;
        background-size: cover;
        height: 35vh;
    }
    #carouselExampleFade .carousel-item:nth-child(1){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner.jpg);
        background-position: 50% 50%;
    }
    #carouselExampleFade .carousel-item:nth-child(2){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner3.jpg);
         background-position: 50% 50%;
    }
    #carouselExampleFade .carousel-item:nth-child(3){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner1.png);
         background-position: 50% 50%;
    }
    .costo{
        font-size: 4rem;
    }
    .texto-1{
        text-align: justify;
    }
    .video{
        max-height: 400px;
    }
    .logo-gracias{
        height: 400px;
        padding: 3rem;
    }
    
    .btn-anim{
    position: relative;
    display: inline-block;
    padding: 18px 40px;
    margin: 40px 0;
    background: #0b3c66;      /* Fondo azul */
    color: #ffffff;           /* Texto blanco */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    border: 2px solid #ffffff;   /* borde estático blanco */
}
.btn-wsp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  z-index: 999;
}
/* ======================
   ANIMACIONES DE BORDES
   ====================== */

.btn-anim span{
    position: absolute;
    display: block;
}

/* Arriba */
.btn-anim span:nth-child(1){
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    animation: border1 1.5s linear infinite;
}
@keyframes border1{
    0%{ left: -100%; }
    100%{ left: 100%; }
}

/* Derecha */
.btn-anim span:nth-child(2){
    right: 0;
    top: -100%;
    width: 2px;
    height: 100%;
    background: #ffffff;
    animation: border2 1.5s linear infinite;
    animation-delay: .375s;
}
@keyframes border2{
    0%{ top: -100%; }
    100%{ top: 100%; }
}

/* Abajo */
.btn-anim span:nth-child(3){
    bottom: 0;
    right: -100%;
    height: 2px;
    width: 100%;
    background: #ffffff;
    animation: border3 1.5s linear infinite;
    animation-delay: .75s;
}
@keyframes border3{
    0%{ right: -100%; }
    100%{ right: 100%; }
}

/* Izquierda */
.btn-anim span:nth-child(4){
    left: 0;
    bottom: -100%;
    width: 2px;
    height: 100%;
    background: #ffffff;
    animation: border4 1.5s linear infinite;
    animation-delay: 1.125s;
}
@keyframes border4{
    0%{ bottom: -100%; }
    100%{ bottom: 100%; }
}
.btn-wsp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  text-decoration: none;
}

.wsp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.wsp-icon:hover {
  transform: scale(1.1);
}

/* Fondo general del formulario */
form {
  background: #0b3c66;
  border-radius: 8px;
}

/* Títulos */
form h4,
form label.form-label {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

/* Inputs y selects */
.form-control,
.form-select {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 6px;
}

/* Color texto dentro del input */
.form-control::placeholder {
  color: #cfd8dc;
}

/* Labels flotantes */
.form-floating label {
  color: #ffffff;
  opacity: .8;
}

/* Cuando el input está enfocado */
.form-control:focus,
.form-select:focus {
  border-color: #e6a334;
  box-shadow: 0 0 3px #e6a334;
  background: transparent;
  color: #ffffff;
}

/* Archivo */
input[type="file"] {
  background: transparent;
  border: 1px dashed #ffffff;
  color: #ffffff;
}

/* Botón INSCRIBIRME AHORA */
.btn-primary {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #ffffff;
  color: #0b3c66;
}

/* Fix colores en select */
.form-select option {
  background: #0b3c66;
  color: #ffffff;
}
/* Botón sin fondo ni borde */
.pay-option {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tamaño grande por defecto */
.pay-option img {
 width: 350px; 
  height: 85px;
  object-fit: contain;
  transition: transform .25s ease;
}

/* Hover */
.pay-option:hover img {
  transform: scale(1.12);
}

/* Responsive móvil */
@media (max-width: 576px) {
  .pay-option img {
    width: 110px;  /* más grande también en móvil */
  }
}

@media screen and (min-width: 600px) {
    #carouselExampleFade .carousel-item{
        background-repeat: no-repeat;
        background-size: cover;
        height: 45vh;
    }
    #carouselExampleFade .carousel-item:nth-child(1){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner.jpg);
        background-position: 50% 50%;
    }
    #carouselExampleFade .carousel-item:nth-child(2){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner3.jpg);
         background-position: 50% 50%;
    }
    #carouselExampleFade .carousel-item:nth-child(3){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner1.png);
         background-position: 50% 50%;
    }
    .texto-info-agentes{
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 1200px) {
    #carouselExampleFade .carousel-item{
        background-repeat: no-repeat;
        background-size: cover;
        height: 90vh;
    }
    #carouselExampleFade .carousel-item:nth-child(1){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner.jpg);
        background-position: 50% 50%;
    }
    #carouselExampleFade .carousel-item:nth-child(2){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner3.jpg);
         background-position: 100% 25%;
    }
    #carouselExampleFade .carousel-item:nth-child(3){
        background-image:linear-gradient(10deg,#0000007e), url(/img/banner1.png);
         background-position: 50% 50%;
    }
    .texto-1{
        font-size: 1.7rem;
        text-align: justify;
    }
    .texto-info-agentes{
        font-size: 1.7rem;
    }
}
@media screen and (min-width: 1400px) {
   
}