h4.text-subtitle{
    font-family: 'Poppins', sans-serif !important;
}
.card-form {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 460px;
  width: 100%;
  border-top: 6px solid #e91e63; /* Fucsia destacado */
}

.card-form h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 10px;
  text-align: center;
}

.card-form p {
  color: #555;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 30px;
}

.form-label {
  color: #022a50;
  font-weight: 500;
}

.form-control:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.btn-submit {
  background-color: #e91e63;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  transition: background-color 0.3s ease;
}
/*
.btn-submit::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #00bcd4;
  border-radius: 50%;
}*/

.btn-submit:hover {
  background-color: #d81b60;
}

@media (max-width: 480px) {
  .card-form {
    padding: 30px 20px;
  }

  .card-form h2 {
    font-size: 1.5px;
  }
}

.contact_main_arae {
    font-family: 'Poppins', sans-serif !important;
}

.left-img {
    background: url("/static/img/portada-12.png") center center no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    color: white;
}

.left-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.left-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.price {
    font-size: 1.2rem;
    margin-top: 10px;
}

.right-content {
    padding: 0rem 2rem;
    background-color: white;
    height: 100vh;
    overflow-y: auto;
}

.card-destino {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-destino:hover {
    transform: scale(1.02);
}


.card-destino > a:hover {
    color: #5dc1b9;
    font-weight: bold;
}

@media (max-width: 768px) {
    .left-img {
        height: 300px;
    }

    .right-content {
        height: auto;
    }
}


@media (max-width: 768px) {
  .container-flex {
    flex-direction: column;
  }

  .left-img {
    height: 300px;
    width: 100%;
  }

  .right-content {
    top: 180px;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
  }

  .left-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  .left-overlay h1 {
    font-size: 1.8rem;
  }
}