/* Variables */
:root {
    --primary-color: #0038FF;
    --secondary-color: #1D3557;
    --accent-color: #F1FAEE;
    --text-color: #2764AE;
    --light-gray: #F8F9FA;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #009FE3;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0088c2;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #009FE3 #f1f1f1;
}

/* General Styles */
body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
.header {
    background-color: white;
    box-shadow: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.muni-logo {
    height: 60px !important;
    width: auto;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 0 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Media queries */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem 0;
        margin-top: 1rem;
    }
    .nav-link {
        font-size: 14px;
    }

    .navbar-nav {
        gap: 1rem;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .navbar-brand img {
        height: 20px;
        width: auto;
    }
    
    .muni-logo {
        height: 30px !important;
        width: auto;
    }
    .header {
        padding: 1rem 0;
        padding-top: 1.8rem;
    }

}

/* Hero Banner */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 20px;
    }
}

/* Circuitos Section */
.circuitos {
    padding: 40px 0;
    background-color: white;
}

.circuitos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.circuitos-content {
    padding-right: 0px;
}

.circuitos-content h2 {
    font-size: 20px;
    line-height: 1.2;
    color: var(--text-color);
    font-weight: 700;
  
    margin-bottom: 30px;
}

.circuitos-content-one h2 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--text-color);
    font-weight: 700;
    max-width: 500px;
    margin-bottom: 30px;
}

.video-wrapper, .image-wrapper, .slideshow-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: 100%;
    aspect-ratio: 16/9;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

.slideshow-image:first-child {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-wrapper img {
    width: 100%;
    display: block;
  
}
.video-contenedor {
    width: 100%;
    max-height: 632px;
    overflow: hidden;
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative; 
}

.video-contenedor video {
    width: 100%;
    height: auto;
    position: relative;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-primary {
    background-color: #009FE3;
    border: none;
    padding: 5px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0088c2;
    transform: translateY(-2px);
}
 .btn-primary-one {
    background-color: #009FE3;
    border: none;
    padding: 5px 135px;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary-one:hover {
    background-color: #0088c2;
    transform: translateY(-2px);
    color: white;
  }

@media (max-width: 991px) {
    .circuitos {
        padding: 20px 0;
        text-align: left;
    }

    .circuitos .container {
        padding: 0 30px;
    }

    .circuitos-content {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .circuitos-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }


    .circuitos-content-one h2 {
        font-size: 18px;
        margin-bottom: 20px !important;
        max-width: 100%;
    }

    .video-wrapper {
        margin: 0 auto;
        max-width: 500px;
    }

    .play-button {
        font-size: 40px;
    }
}


/* Experiencias Section */
.experiencias {
    padding: 40px 0;
    background-color: white;
}

.experiencias .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #2764AE;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.experiencia-card {
    background-color: #2764AE;
    color: white;
    padding: 30px;
    padding-top: 10px;
   height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.experiencia-card-wide {
    max-height: 208px;
    height: 200px;
    
}

.experiencia-card-wide p {
    white-space: nowrap;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 10px;
    margin-top: 10px !important;
}

.experiencia-card h3 {
    font-size: 32px;
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 0;
}




.card-subtitle-home{
    font-size: 20px !important;
    font-weight: 500;
    color: white;
    margin: 0 auto;
    margin-top: 5px !important ;
    text-transform: uppercase;
    text-align: center;
}

.card-subtitle-wide {
    white-space: nowrap;
    width: 100%;
    overflow: visible;
}

.experiencia-card p.with-subtitle {
    font-size: 20px;
    margin: 0;
    font-weight: 500;

    color: #ffffff;
}

.experiencia-card p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
   
    flex-grow: 1;
}

.with-subtitle {
   text-align: center !important;

   margin-bottom: -12px !important;
}

/* Contenedor específico para el título y subtítulo */
.card-header {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contenedor para el texto principal */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    
    
    align-items: center;
    padding: 0 20px;
}

.btn-outline {
    background-color: white;
    border: none;
    color: #2764AE;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 145px;
 
}

.btn-outline:hover {
    background-color: #f0f0f0;
    color: #2764AE;
}

@media (max-width: 991px) {
    .experiencias {
        padding: 20px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .card-content {
        padding:0px;
    
    }

    .experiencia-card {
        margin-bottom: 20px;
        padding: 10px;
        padding-bottom: 20px;
        height: 220px
    }

    .experiencia-card-wide {
        height: 220px;
        max-height: 220px;
    }

    .experiencia-card h3 {
        font-size: 18px;
        margin-top: 10px;
    }

    .card-subtitle-home {
        font-size: 14px;
        font-weight: 500;
        color: white;
        margin: 5px 0 0 0;
        text-align: center;
    }
    .with-subtitle {
       font-size: 14px !important;
       margin-bottom: -40px !important;
    }

    .experiencia-card p {
        font-size: 14px;
        max-width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .card-header {
        min-height: 50px;
    }
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    background-color: white;
}

.faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #2764AE;
    margin-bottom: 0
}

.accordion-button {
    background-color: white;
    border: none;
    border-radius: 0 !important;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    position: relative;
    padding-right: 40px;
    text-align: left;
    width: 100%;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #000000;
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

.accordion-arrow {
    position: absolute;
    right: 20px;
    width: 23px;
    height: 23px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    background-color: white;
    padding: 20px 0 ;
    padding-top: 0px;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq {
        padding: 20px 0;
    }

    .accordion-button {
        font-size: 14px;
        padding: 20px 0;
        padding-right: 30px;
        line-height: 1.3;
    }

    .accordion-body {
        font-size: 12px;
        padding: 10px 0;
    }
    .faq .container {

        padding: 0 10px;
    }
    .accordion-arrow {
        width: 18px;
        height: 18px;
        right: 0;
    }



}

.faq-title-container {
    background-color: #009FE3;
    padding: 15px 0;
    margin-bottom: 40px;
    margin: 0 auto;
    max-width: 1160px;
}

.faq-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 18px;
    }
    
    .faq-title-container {
        margin-bottom: 20px;
        padding: 10px  40px ;
    }
} 


.muyrosario-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}

.banner-desktop {
    display: block;
    max-width: 1160px;
    width: 100%;
    height: auto;
}

.banner-mobile {
    display: none;
    max-width: 350px;
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .banner-desktop {
        display: none;
    }
    .banner-mobile {
        display: block;
    }
}

/* Footer */
.footer {
    background: #2764AE;
    padding: 32px 0;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 42px;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 45px;
}

.footer-logo {
    width: 190px;
    height: auto;
    margin-right: 24px;
}

.footer-links {
    display: flex;
    gap: 45px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F1FAEE;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 42px;
}

.footer-logo-mini {
    height: 40px;
    width: auto;
}

.footer-bottom-logos {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 24px 0 16px 0;
    background: #2764AE;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .footer-right {
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        padding: 0 12px;
        gap: 0;
    }
    .footer-left {
      
        align-items: flex-start;
        gap: 20px;
    }
    .footer-logo {
        width: 150px;
        margin-bottom: 12px;
        margin-right: 0;
    }
    .footer-links {
        flex-direction: column;
        gap: 0;
    }
    .footer-links-col {
        flex-direction: column;
        gap: 12px;
    }
    .footer-right {
        display: none;
    }
    .footer-bottom-logos {
        display: flex;
    }
    .footer-logo-mini {
        height: 25px;
        width: auto;
    }
    .footer-logo-mini-one {
        height: 40px;
        width: auto;
    }
}

/* ---- Circuitos Agencias Section ---- */
.circuitos-agencias-section {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  margin: 40px 0 0 0;
}
.circuitos-agencias-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 12px;
}
.circuitos-agencias-title {
  background: #18aee6;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding: 10px 0 8px 0;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.circuitos-subtitle {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.circuitos-agencias-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  justify-content: center ;
  padding: 0 120px ;
}
.circuitos-agencias-card {
  background: #2764AE;
  color: #fff;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 12px 28px 12px;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.circuitos-agencias-card-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.circuitos-agencias-card-desc {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
  width: 50%;
 
}


.circuitos-agencias-card-desc-one {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 42px;
  margin-top: 50px;

  width: 50%;
 
}




.circuitos-agencias-btn {
  background: #fff;
  color: #2764AE;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 28px;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.circuitos-agencias-btn:hover {
  background: #18aee6;
  color: #fff;
}


.circuitos-agencias-btn-two {
  background: #fff;
  color: #2764AE;
  border: 1px solid #2764AE;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 28px;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.circuitos-agencias-btn-two:hover {
  background: #18aee6;
  color: #fff;
  border: none !important;
}


@media (max-width: 900px) {
    .circuitos-agencias-container{
        padding: 0px 5px;
        padding-bottom: 20px;
    }
  .circuitos-agencias-cards {
    display: flex;
    gap: 12px;
    padding: 0;
    flex-direction: column;


  }
  .circuitos-agencias-card {
    padding: 24px 8px 20px 8px;
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .circuitos-agencias-cards {
    flex-direction: column !important;
    gap: 18px;
    padding: 0 20px;
    align-items: center;
  }
  .circuitos-agencias-card {
    width: 100%;
    max-width: 400px;
  }
  .circuitos-agencias-title {
    font-size: 18px;
    padding: 8px 0 7px 0;
  }
  .circuitos-agencias-card-title {
    font-size: 16px;
  }
  .circuitos-agencias-card-desc {
    font-size: 16px;
    width: 100%;
  }
  .circuitos-agencias-card-desc-one {
    font-size: 16px;
    width: 100%;
  }
  
  
  
  .circuitos-subtitle {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1;
}
.circuitos-agencias-container {
  /* padding-bottom: 0;*/
}
}

/* ---- Agencias Section ---- */
.agencias-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
}
.agencias-container {
  
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  padding-bottom: 20px;
}
.agencias-title {
  color: #2764AE;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.agencias-logos-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.agencia-logo-placeholder {
  width: 170px;
  height: 170px;
  background: transparent;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}

.agencia-logo-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 900px) {
   
  .agencias-container {
    padding: 10px;
    
  }
  .agencias-logos-row {
    gap: 5px;
  }
  .agencia-logo-placeholder {
    width: 110px;
    height: 110px;
    padding: 8px;
  }
}
@media (max-width: 700px) {
  .agencias-logos-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .agencia-logo-placeholder {
    width: 200px;
    height: 140px;
  }

  .agencias-title {
    font-size: 16px;
  }
}

/* ---- Espacios Culturales Section ---- */
.espacios-culturales-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0 0 0;
}
.espacios-culturales-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px 40px 12px;
}
.espacios-culturales-title {
  color: #2764AE;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.espacios-culturales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.espacio-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 210px;
  cursor: pointer;
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.espacio-card-img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.4,1.7,.7,.9);
}
.espacio-card-title-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
  z-index: 2;
  width: 90%;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: opacity 0.3s;
}
.espacio-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.75);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 28px 18px 18px 18px;
  z-index: 3;
  transition: opacity 0.3s;
  pointer-events: none;
}
.espacio-card:hover .espacio-card-overlay,
.espacio-card:focus-within .espacio-card-overlay {
  opacity: 1;
  pointer-events: auto;
}
.espacio-card:hover .espacio-card-title-center,
.espacio-card:focus-within .espacio-card-title-center {
  opacity: 0;
}
.espacio-card-overlay .espacio-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.espacio-card-overlay .espacio-card-desc {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

.espacio-card-overlay .espacio-card-desc-two {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
}



.espacio-card-btn {
  background: #F1F1F2;
  color: #2764AE;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 15px;
  margin-top: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.espacio-card-btn:hover {
  background: #18aee6;
  color: #fff;
}
.espacio-card:hover .espacio-card-img {
  transform: scale(1.07);
}
@media (max-width: 900px) {
  .espacios-culturales-title {
    font-size: 22px;
  }
  .espacios-culturales-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .espacio-card-title-center {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .espacios-culturales-title {
    font-size: 16px;
  }
  .espacios-culturales-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .espacio-card-img {
    min-height: 140px;
  }
  .espacio-card-title-center {
    font-size: 14px;
  }
  .espacio-card-overlay .espacio-card-title {
    font-size: 15px;
  }
  .espacio-card-overlay .espacio-card-desc {
    font-size: 13px;
  }
}

/* =============================
   Día Completo - Circuito Section 
   ============================= */

.dc-circuito-section {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 0;
 
}

.dc-circuito-titulo {
  background: #009FE3;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;

  width: 100%;
  text-align: center;
  padding: 0px;
  margin-bottom: 18px;
  border-radius: 0;
}

.dc-circuito-subtitulo {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2764AE;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 32px;
}
.dc-circuito-subtitulo-two{
  font-size: 1.5rem;
  font-weight: 700;
  color: #2764AE;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 32px;
}

.dc-circuito-subtitulo .text-primary {
  color: #2764AE !important;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.span-dc-circuito-subtitulo-two{
  font-size: 1.5rem;
  font-weight: 400;
  color: #2764AE;
  letter-spacing: 0.5px;
  text-align: center;
}

.dc-circuito-texto {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: left;
  max-width: 100%;
}
.dc-circuito-texto-bold {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0;
  text-align: left;
  max-width: 100%;
}
.dc-circuito-img,
.dc-circuito-img-mobile {
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.dc-circuito-consulta {
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-top: 3rem;
  text-align: center;
}

.dc-circuito-texto-two{
  color: #000;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .dc-circuito-section {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    overflow-x: hidden;
  }
  .dc-circuito-titulo {
    font-size: 1.2rem;
    padding: 8px 0 7px 0;
    border-radius: 0;
  }

  .dc-circuito-subtitulo-two {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: left;
    padding: 0 25px;
  }
  .span-dc-circuito-subtitulo-two {
    font-size: 1.1rem;

    margin-top: 8px;
  }
  .dc-circuito-texto {
    font-size: 0.98rem;
    max-width: 100%;
    padding: 0 15px;
  }
  .dc-circuito-texto-bold {
    padding: 0 15px;
  }
  .dc-circuito-texto-two{
   padding: 0 15px
  }
  .dc-circuito-img,
  .dc-circuito-img-mobile {
    border-radius: 0;
    padding: 0 15px;
    max-width: 100%;
  }
  .dc-circuito-consulta {
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0;
  }

  .dc-circuito-section .container {
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
  }
  .container-mobile {
    margin-bottom: 0 !important;
  }

  .agencias-habilitadas-titulo {
   font-size: 1.3rem !important;
  }
}
.dc-circuito-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.agencias-habilitadas-section {
  margin: 60px 0 40px 0;
}

.agencias-habilitadas-titulo {
  color: #2764AE;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.agencias-habilitadas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
    .agencias-habilitadas-grid {
        display: block;
    }
    .agencia-card {
        margin: 20px;
    }
}
.agencia-card {
  background: #F1F1F2;
  border-radius: 10px;
  padding: 22px 24px 18px 24px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 170px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, transform 0.3s;
}

.agencia-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.agencia-card:hover {
  box-shadow: 0 8px 32px 0 rgba(39,100,174,0.13);
  transform: translateY(-8px) scale(1.025);
  z-index: 2;
}

.agencia-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -5px;
  margin-bottom: 10px;
}

.agencia-logo {
  width: 44px !important;
  height: 44px !important;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

.agencia-nombre {
  color: #2764AE;
  font-size: 1.1rem;
  font-weight: 700;
}

.agencia-card-info {
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.icono {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;

}

.agencias-habilitadas-mobile {
  margin: 32px 0 24px 0;
}

.agencias-habilitadas-mobile .agencias-habilitadas-titulo {
  color: #2764AE;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.agencia-accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 12px;
}

.agencia-accordion-btn {
  background: #F6F7F9;
  border-radius: 10px !important;
  box-shadow: none;
  color: #2764AE;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border: none;
  outline: none;
  width: 100%;
  transition: background 0.2s;
}

.agencia-accordion-btn:not(.collapsed) {
  background: #F1F1F2;
  border-radius: 10px !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.agencia-logo {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
}

.agencia-nombre {
  color: #2764AE;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
}

.icono-flecha {
  width: 22px;
  height: 22px;
  background: url('/web/assets/arrow-down.svg') center center no-repeat;
  background-size: 18px 18px;
  transition: transform 0.3s;
  display: inline-block;
}

.agencia-accordion-btn[aria-expanded="true"] .icono-flecha {
  background-image: url('/web/assets/arrow-down.svg');
  transform: rotate(180deg);
}

.accordion-body.agencia-card-info {
  background: #F1F1F2;
  border-radius: 0 0 12px 12px;
  color: #000000;
  font-size: 0.90rem;
  font-weight: 400;
  padding: 16px 18px 12px 18px;
  margin-top: -2px;
}

.icono-img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}




/* Estilos para el formulario de reserva */
.reservation-form-container {

  padding: 20px;
}

.reservation-form {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
  box-shadow: none;
}

/* Título de información importante */
.form-section h2.info-title {
  color: #0066CC;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.form-section .form-subtitle {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Consultation form styles */
.consultation-form-container {
  padding: 20px;
}

.consultation-form {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
  box-shadow: none;
}

.consultation-info-title {
  color: #0066CC;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.consultation-form-section:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}

.consultation-form-section:first-child .contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

/* Contact form specific styles */
.contact-form-grid {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.contact-half {
  flex: 2;
  width: 50% !important;
}

.contact-quarter {
  flex: 1;
  width: 25% !important;
}

.contact-input::placeholder {
  color: #737373 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
}

.contact-input {
  height: 48px;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #000000;
}

.contact-input:focus {
  outline: none;
  border-color: #0066CC;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

/* Consultation contingente section styles */
.consultation-contingente-section {
  margin-top: 10px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-contingente-section h2 {
  color: #0066CC;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.consultation-inputs-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.consultation-form-group {
  margin-bottom: 30px;
}

.consultation-form-group label {
  display: block;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

.consultation-form-control {
  height: 48px;
  width: 100%;
  padding: 8px 24px;
  padding-left: 5px;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #737373;
}

.consultation-form-control select,
select.consultation-form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../assets/arrow-select.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.consultation-form-control::placeholder {
  color: #737373;
  font-size: 14px;
}

.consultation-mb-4 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-mb-4 textarea.consultation-form-control {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 125px;
  padding: 8px 10px;
  resize: vertical;
}

.consultation-form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.consultation-btn-submit {
  background-color:#009FE3;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.consultation-btn-submit:hover {
  background-color: #0052a3;
}

.consultation-btn-submit:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* Custom select styles */
.consultation-select-experiencia {
  width: 411px !important;
  border-color: #0066CC !important;
  background-image: url('../assets/arrow-select.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  padding-left: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0 auto;
  display: block;
}

.consultation-select-variable {
  width: 600px !important;
  border-color: #0066CC !important;
  background-image: url('../assets/arrow-select.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
   padding-left: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0 auto;
  display: block;
}

.consultation-select-experiencia:focus,
.consultation-select-variable:focus {
  border-color: #0066CC !important;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

/* Custom Dropdown with Checkboxes */
.custom-dropdown {
  position: relative;
  width: 600px;
  margin: 0 auto;
  display: block;
}

.dropdown-header {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #FFFFFF;


  border-radius: 10px;
  padding: 8px 20px;
  font-size: 14px;
  color: #737373;
  position: relative;
}

.dropdown-text {
  flex: 1;
}

.dropdown-arrow {
  display: none;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;

  border-top: none !important;
  border-radius: 0 0 10px 10px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 1000;
}

.custom-dropdown.open .dropdown-content {
  max-height: 400px;
  overflow-y: auto;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  position: relative;
  padding: 12px 20px;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #E5E5E5;
  flex-direction: row;
  justify-content: flex-start;
}

.checkbox-item:hover {
  background-color: #f5f5f5;
}

.checkbox-item:last-child {
  border-bottom: none;
}

.checkbox-item input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark-round {
  width: 16px;
  height: 16px;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  background-color: #FFFFFF;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark-round {
  background-color: #0066CC;
  border-color: #0066CC;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark-round::after {
  content: "●";
  color: white;
  font-size: 10px;
}

.checkbox-item:hover .checkmark-round {
  border-color: #0066CC;
}

/* Mobile styles for custom dropdown */
@media (max-width: 768px) {
  .custom-dropdown {
    width: 100% !important;
    max-width: 100% !important;
  }

  .dropdown-header {
    padding: 12px 16px;
    font-size: 14px;
  }

  .checkbox-item {
    padding: 14px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .checkmark-round {
    width: 18px;
    height: 18px;
    margin-right: 14px;
    flex-shrink: 0;
  }
}


.reservation-form .form-section:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
  margin-bottom: 60px;
}

.reservation-form .form-section:first-child .inputs-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.reservation-form .form-section:first-child .form-group {
  flex: none;
  width: 215px;
}

.reservation-form .form-section:first-child label {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

.reservation-form .form-section:first-child .form-control {
  width: 215px;
  height: 48px;
  padding: 8px 12px;
  font-size: 12px;
  color: #737373;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
}

.reservation-form .form-section:first-child .form-control::placeholder {
  color: #737373;
  font-size: 14px;
}

/* Estilos para los selects */
.select-section {
  margin-bottom: 40px;
}

.select-section h2 {
  color: #0066CC;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.select-section .form-control {
  height: 48px;

  padding: 10px 16px;
  font-size: 14px;
  border: 1px solid #0066CC;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #737373;
  appearance: none;
  background-image: url("./assets/arrow-down-blue.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.select-section .form-control::placeholder {
  color: #737373;
  font-size: 14px;
}

/* Estilo específico para el select de experiencia (primero) */
.select-section.experiencia .form-control {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: block;
}

.select-section.variable .form-control {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

/* Estilos para la sección de datos del contingente */
.contingente-section {
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.contingente-section h2 {
  color: #0066CC;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.contingente-section .contingente-p {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}
.contingente-section .form-group {
  margin-bottom: 0px;
}

.contingente-section label {
  display: block;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

.contingente-section .form-control {
  height: 48px;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #737373;
}

.contingente-section .form-control::placeholder {
  color: #737373;
  font-size: 14px;
}

/* Estilos para los switches de discapacidad */
.disability-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
  margin-top: 50px;
  width: 100%;
}

.disability-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.disability-group label {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.disability-buttons {
  display: flex;
  background: white;
 
  border-radius: 10px;
  padding: 4px;
  width: 190px;
}

.disability-btn {
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 300;
  color: #D9D9D9;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 91px;
}

.disability-btn.active {
  background: #0066CC;
  color: white;
  font-size: 12px;
  font-weight: 400;
  border-radius: 10px;
}

/* Grid layout para los campos */
.contingente-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Grid específico para la sección de alumnos */
.alumnos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.alumnos-grid .form-group {
  margin-bottom: 0;
}

.alumnos-grid .form-control {
  height: 48px;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #737373;
}

.alumnos-grid .form-control::placeholder {
  color: #737373;
  font-size: 14px;
}

.contingente-p {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.reserva-confirmation-check {
  display: flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.reserva-confirmation-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0066CC;
  cursor: pointer;
  margin: 0;
  position: relative;
  top: 2px;
}
.reserva-confirmation-check label {
  font-size: 14px;
  font-weight: 400;
  color: #000000;

}

.btn-reservar {
  background: #009FE3;
  color: white;
  border: none;
  border-radius: 10px;
  padding:8px 12px ;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reservar:hover {
  background: #0052a3;
}

.btn-reservar:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.sugerencia {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin: 20px 0;
}

.contingente-section .form-group.mb-4 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contingente-section .form-group.mb-4 label {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}

.contingente-section .form-group.mb-4 .form-control {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #737373;
}

.contingente-section .form-group.mb-4 textarea.form-control {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 125px;
  padding: 8px 10px;
  font-size: 14px;
}

.responsable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.responsable-grid .form-group:last-child {
  grid-column: 1 / 2;
}

.responsable-grid .form-group {
  margin-bottom: 0;
}

.responsable-grid .form-control {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #737373;
}

.responsable-grid label {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.asterisco-p{
  font-size: 14px;
  color: #737373;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 10px;
}

@media (max-width: 768px) {
    .reservation-form-container {
        padding: 10px;
    }

    .reservation-form {
        padding: 10px;
    }

    .form-section .inputs-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .form-group {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contingente-section {
        padding: 0 5px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* Contact form mobile styles */
    .contact-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-half, .contact-quarter {
        width: 100%;
        flex: none;
    }

    .contact-form-grid {
        padding: 0 10px;
    }

    /* Consultation form mobile styles */
    .consultation-form-container {
        padding: 10px;
    }

    .consultation-form {
        padding: 10px;
    }

    .consultation-inputs-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .consultation-form-group {
        width: 100% !important;
        max-width: 100% !important;
    }

    .consultation-contingente-section {
        padding: 0 5px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* Custom select mobile styles */
    .consultation-select-experiencia,
    .consultation-select-variable {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contingente-grid,
    .alumnos-grid,
    .responsable-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .contingente-grid .form-group,
    .alumnos-grid .form-group,
    .responsable-grid .form-group {
        width: 100% !important;
        max-width: 100% !important;
    }

    .disability-options {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .disability-group {
        align-items: center;
    }
    .disability-buttons {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
        display: flex;
    }

    .form-footer {
        padding: 0 5px;
    }

    .btn-reservar {
        width: 50%;
        max-width: 300px;
    }
    .asterisco-p{
      font-size: 12px;
      color: #737373;
      font-weight: 400;
      margin-bottom: 10px;
      margin-top: 10px;
      padding: 0;
    }
    .reserva-confirmation-check {
      font-size: 12px !important; 
      font-weight: 400;
      color: #000000;
    
    } 
}

@media (max-width: 576px) {
    .reservation-form-container {
        padding: 5px;
    }
    .reservation-form {
        padding: 5px;
    }
    .form-section .inputs-container {
        gap: 10px;
    }
    .form-footer {
        padding: 0 2px;
    }
    .btn-reservar {
        font-size: 16px;
        padding: 10px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .contingente-section .form-group.mb-4 textarea.form-control {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: 100px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .sobre-programa-texto {
      font-size: 14px !important;
      line-height: 1.2 !important;
    }
}

@media (max-width: 576px) {
    .contingente-section .form-group.mb-4 textarea.form-control {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: 80px;
        padding: 6px 6px;
        font-size: 13px;
    }
}
.contacto-section {
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-programa-texto {
  font-size: 18px;
  color: #111;
  line-height: 2;
}

.contacto-section input {
  height: 48px;
}
.contacto-section textarea {
  height: 188px;
}
.contacto-section input.form-control,
.contacto-section textarea.form-control {
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  font-size: 14px;
  color: #111;


}
.contacto-section input.form-control::placeholder,
.contacto-section textarea.form-control::placeholder {
  color: #737373;
  font-size: 14px;
  opacity: 1;
}
.contacto-section .form-check-label {
  color: #111;
  font-size: 14px;
}
.contacto-section .form-check-input {
  width: 1.1em;
  height: 1.1em;
}


.contacto-titulo {
  background: #009FE3;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
 margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  padding: 0px;
  margin-bottom: 18px;
  border-radius: 0;
}
