/* ============================================
   BVIP Contact Page - Diseño Original
   ============================================ */

:root {
  --primary-blue: #5865F2;
  --dark-bg: #000000;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --input-bg: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Exo 2' !important;
}

body {
  font-family: 'Exo 2' !important;
  color: var(--text-white);
  line-height: 1.6;
  background-image: url("../../images/contact/main-contact-bg.jpg") !important;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
}

/* ==================== NAVBAR ==================== */

.navbar {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.navbar .nav-link {
  font-size: 16px;
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-weight: 400 !important;
}

li.nav-item{
  display: flex;
}

.navbar-nav a {
    font-size: 20px;
}

/* ==================== TYPOGRAPHY ==================== */

.main-title {
    font-size: 45px;
    font-weight: 500;
    /* margin-bottom: 100px; */
}

h2.main-title{
  font-size: 35px;
}

.special-text {
  font-family: 'Libre Baskerville', serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}


.main-title{
    /* font-family: "Benzin", sans-serif; */

}

.main-selector-container ul{
  border-radius: 20px;
  /* background-color: rgb(30 34 59); */
  list-style: none;
  padding: 0px;
  width: 200px;
  overflow: hidden;
}

.main-selector-container ul a{
  text-decoration: none;
  display: block;
  padding: 10px;
}

.main-selector-container ul li{
  padding: 0px;
}

.main-selector-container ul li a.active{
  background-color: rgb(45 59 208);
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-radius: 20px;
}

.main-section{
  height: 90vh;
}

.main-section .container{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.banner-description{
  width: 65%;
  margin: auto;
}

.btn-primary{
  background-color: #3848ff;
  padding: 10px 40px;
  border-radius: 80px;
}

.contact-form-section .big-btn{
  padding: 20px 30px;
  font-size: 20px;
}

/* ==================== FORMULARIO CON BORDES DE GRADIENTE EN ESQUINAS ==================== */

/* .gradient-corner-form {
  position: relative;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
} */

/* Esquina superior izquierda */
/* .gradient-corner-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: 
    linear-gradient(to right, white 0%, transparent 100%),
    linear-gradient(to bottom, white 0%, transparent 100%);
  background-size: 100% 2px, 2px 100%;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  opacity: 0.8;
}

.gradient-corner-form::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: 
    linear-gradient(to left, white 0%, transparent 100%),
    linear-gradient(to bottom, white 0%, transparent 100%);
  background-size: 100% 2px, 2px 100%;
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  border-top-right-radius: 20px;
  opacity: 0.8;
} */

.contact-form {
  position: relative;
  z-index: 1;
}

/* Esquina inferior izquierda */
/* .contact-form::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: 
    linear-gradient(to right, white 0%, transparent 100%),
    linear-gradient(to top, white 0%, transparent 100%);
  background-size: 100% 2px, 2px 100%;
  background-position: 0 100%, 0 100%;
  background-repeat: no-repeat;
  border-bottom-left-radius: 20px;
  opacity: 0.8;
} */

/* Esquina inferior derecha */
/* .contact-form::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: 
    linear-gradient(to left, white 0%, transparent 100%),
    linear-gradient(to top, white 0%, transparent 100%);
  background-size: 100% 2px, 2px 100%;
  background-position: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  border-bottom-right-radius: 20px;
  opacity: 0.8;
} */

.contact-form .form-label {
  color: var(--text-white);
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-form .form-control {
  background: rgba(30, 30, 30, 0.9);
  border: 0px;
  color: var(--text-white);
  padding: 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-form textarea.form-control {
  border-radius: 25px;
  resize: vertical;
  min-height: 150px;
}

.contact-form .form-control:focus {
  background: rgba(30, 30, 30, 1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form-section {
  padding: 60px 0;
}

.gradient-corner-form{
  position: relative;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    52deg in oklch,
    oklch(100% 0.00 353),
    oklch(0% 0 134)      11%,
    oklch(0% 0 151)      51%,
    oklch(0% 0.00 76)    89%,
    oklch(100% 0.00 70)
  );
}

.gradient-corner-form form{
  position: relative;
  border-radius: 20px;
  padding: 50px;
  background-color: rgba(0, 0, 0);
  z-index: 1;
}

.text-muted{
  color: #a7a7a7 !important;
}

.faqs-section .faq-description{
  width: 90%;
  /* margin: auto; */
}

.search-input{
  display: block;
  outline: none;
  border: 0px;
  background-color: transparent;
  display: block;
  width: 100%;
}

.search-input-container{
  display: flex;
  border-radius: 15px;
  width: 400px;
  padding: 10px;
  margin-top: 20px;
  background-color: #fff;
  padding-left: 30px;
}

.faq-card{
  background: #121212;
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 30px;
  margin-bottom: 20px;
  border: 0px;
}

.faq-question{
  color: var(--text-white);
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 20px;
}

.faq-question .fst-italic{
  font-family: 'Lunar Type', serif;
  font-style: italic;
}

.faq-card .text-muted{
  color: #8a8a8a !important;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 14px;
}

.faqs-section{
  padding: 100px 0;
}

.faq-question{
  margin-bottom: 50px;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Desktop - Mantener grilla original */
@media (min-width: 992px) {
  .navbar .row {
    margin: 0;
  }

  .navbar .row > div {
    padding: 0 15px;
  }
}

/* Tablet */
@media only screen and (max-width: 1200px) {
  .navbar .nav-link {
    font-size: 12px;
  }
}


@media only screen and (max-width: 1024px) {
  .contact-form-section .big-btn{
    font-size: 16px;
    padding: 10px 20px;
  }
  .contact-form-section h4{
    font-size: 20px;
  }
  .search-input-container{
    width: 100%;
  }
}


/* Mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px 0;
    margin-top: 15px;
  }

  .navbar .row {
    margin: 0;
  }

  .navbar .row > div {
    padding: 10px 0;
  }

  .navbar .nav-link {
    font-size: 16px;
    padding: 10px 0;
    text-align: center;
    width: 100%;
  }

  /* En móvil, las columnas se apilan verticalmente */
  .navbar .col-12 {
    margin-bottom: 10px;
  }

  .navbar-brand img {
    max-width: 70px !important;
  }

  .main-section {
    height: auto;
    min-height: 100vh;
  }

  .banner-description {
    width: 90%;
  }

  .main-selector-container h4 {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .main-section {
    margin-top: 80px;
  }
  h1{
    margin-bottom: 80px;
  }
  .main-selector-container{
    margin-bottom: 80px;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .navbar .container-fluid {
    max-width: 95% !important;
  }

  .search-input-container {
    width: 100%;
  }

  .contact-form-section .big-btn {
    font-size: 16px;
    padding: 15px 25px;
  }

  .gradient-corner-form form {
    padding: 30px 20px;
  }
}



.role-selector button:not(.role-option){
  outline: none;
  border: 0px;
  /* border-radius: 100px !important; */
  box-shadow: none !important;
  background-color: rgba(63, 74, 253, 0.8) !important;
  color: #fff !important;
  padding: 20px;
}
.accordion-item{
  background:none !important;
}

.role-selector ul{
  width: 100%;
  border-radius: 0px;
}

.role-selector button{
  text-decoration: none !important;
  text-align:start;
  font-size: 20px;
  padding: 10px 20px;
}

.role-selector .role-option{
  width: 100%;
}

.list-group-item{
  background-color: transparent !important;
}
.accordion.role-selector{
  background-color: rgba(43, 47, 73, 0.8);
  border-radius: 25px 25px 20px 20px;
  overflow: hidden;
}

.role-selector .role-option:hover{
  background-color: rgba(47, 59, 144, 0.3) !important;
  border-radius: 0px !important;
}