@charset "UTF-8";
/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  overflow-x: hidden;
}

.btn {
  background-color: #FF0532;
  color: #ffffff;
  padding: 0.4rem 1.5rem;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 400;
  border: 2px solid #FF0532;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
}
.btn:hover, .btn:focus {
  box-shadow: 0 2px 12px rgb(255, 255, 255);
  text-decoration: none;
  color: white;
}

.bk {
  background-size: cover;
  background-position: center top 0px;
  position: relative;
  padding: 2rem 0;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.navbar {
  background-color: #123184;
}
.navbar .img-logo {
  max-width: 225px !important;
}
@media (max-width: 767.98px) {
  .navbar .borde-responsive {
    border: none !important;
  }
}
.navbar .navbar-toggler {
  border: none !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 4px;
  transform: scale(1.2);
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-collapse {
  background-color: transparent !important;
  padding-top: 1.2rem;
}
.navbar .navbar-nav {
  text-align: center;
}
.navbar .nav-link {
  color: white;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 1rem 0;
  text-transform: none;
}
.navbar .nav-link:hover {
  color: #dfcca3;
}
.navbar .lang-switcher-container {
  padding: 0 0 2rem;
  margin-top: 0.5rem;
}
.navbar .lang-switcher-container .lang-switcher-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
}
.navbar .lang-switcher-container .lang-switcher-nav .lang-item {
  margin: 0;
}
.navbar .lang-switcher-container .lang-switcher-nav .lang-item .lang-link {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.navbar .lang-switcher-container .lang-switcher-nav .lang-item .lang-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
.navbar .lang-switcher-container .lang-switcher-nav .lang-item .lang-link.active-lang {
  background-color: white;
  color: #333;
  font-weight: 600;
  border-color: rgb(229.5, 229.5, 229.5);
  cursor: default;
}
.navbar .lang-switcher-container .lang-switcher-nav .lang-item .lang-link.active-lang:hover {
  background-color: rgba(255, 255, 255, 0.9058823529);
  border-color: rgb(138.5, 138.5, 138.5);
  color: #333;
}
@media (min-width: 992px) {
  .navbar {
    background-color: transparent;
  }
  .navbar .navbar-collapse {
    padding-top: 0;
  }
  .navbar .separator {
    align-content: center;
    color: #dfcca3;
    font-size: 1.2rem;
    margin: 0 0.8rem;
    user-select: none;
  }
  .navbar .lang-switcher-container {
    margin-top: 0;
    padding: 0;
    align-content: center;
  }
  .navbar .lang-switcher-container .lang-switcher-nav {
    gap: 0.5rem;
  }
  .navbar .lang-switcher-container .lang-switcher-nav .lang-item .lang-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }
}

/* Contenedor verde superior */
.footer-main {
  background-color: #123184;
  color: white;
  padding: 1.5rem 1rem;
}

.img-logo {
  max-width: 300px !important;
}

/* Contenedor negro inferior */
.footer-bottom {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
}

.footer-logo {
  flex: 0 1 auto;
  text-align: center;
}

.footer-socials {
  flex: 1 1 30%;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}

.footer-socials svg {
  width: 50px;
  height: 50px;
  fill: white;
  cursor: pointer;
  transition: fill 0.3s ease;
}

.footer-socials svg:hover {
  fill: #d1d5db;
}

.nav-bar-footer {
  align-items: center;
  justify-content: center;
  list-style: none;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: column;
    display: flex;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }
  .footer-logo {
    margin-bottom: 1rem;
  }
  .footer-socials {
    justify-content: center;
    flex: 1 1 100%;
  }
  .nav-bar-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
  }
}
.bk-01-fondo {
  background-size: cover;
  background-repeat: no-repeat;
}

.bk-01 {
  background-position: center top 0px;
  overflow: hidden;
  margin-top: 0;
  padding: 3rem;
}
.bk-01 .titulo {
  font-family: "Work Sans";
  font-weight: 700;
  line-height: 1.2;
  color: white;
  font-size: 35px;
}
.bk-01 .subtitulo {
  font-family: "Work Sans SemiBold";
  color: white;
  font-size: 28px;
}
@media (min-width: 992px) {
  .bk-01 .texto-banner {
    max-width: 100%;
    margin-top: 0;
    width: 100%;
  }
  .bk-01 .titulo {
    font-weight: 600;
    font-size: clamp(0.5rem, 3.3vw, 4rem);
    line-height: 1;
    margin-top: 1rem;
    max-width: 60%;
  }
  .bk-01 .subtitulo {
    font-size: 44px;
    font-family: "Work Sans";
    margin-bottom: 3rem;
    white-space: normal;
    max-width: 60%;
  }
  .bk-01 .btn {
    padding: 0rem 1rem;
    font-size: 20px;
    font-family: "Work Sans", sans-serif;
    min-width: 200px;
  }
}

.bk-02 {
  color: white;
  background-color: white;
  font-family: "Work Sans";
  background-position: top;
  background-size: cover;
}
.bk-02 h2 {
  font-size: calc(2.6rem + 0.2vw);
  text-align: center;
  color: black;
  margin: auto;
  padding-top: 2rem;
}
.bk-02 .p-3 {
  min-height: 310px;
  min-width: 310px;
}
.bk-02 p {
  font-size: calc(2.4rem + 0.2vw);
  color: black;
  margin: auto;
  text-align: center;
}
.bk-02 .img-tam {
  max-width: auto;
}
.bk-02 .icono-tam {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.bk-02 .contenedor-rectangulos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.bk-02 .contenedor-rectangulos .rectangulo {
  padding: 1.2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.bk-02 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
  color: black;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}
.bk-02 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
  font-weight: 300;
  font-size: 2.7rem;
  color: black;
}
@media (min-width: 768px) {
  .bk-02 h2 {
    font-size: calc(2.4rem + 0.2vw);
    text-align: center;
    width: 90%;
    margin: auto;
  }
  .bk-02 p {
    font-size: calc(2rem + 0.2vw);
    width: 90%;
    text-align: center;
    margin: auto;
  }
  .bk-02 .icono-tam {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
  }
  .bk-02 .contenedor-rectangulos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }
  .bk-02 .contenedor-rectangulos .rectangulo {
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .bk-02 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  .bk-02 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
    font-weight: 300;
    font-size: 1.7rem;
    color: black;
  }
}

.bk-03 {
  position: relative;
  padding: 2rem 0;
  overflow: visible;
  font-family: "Work Sans";
  color: black;
}
.bk-03 .icono-tam {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.bk-03 .img-tam {
  max-width: 318px;
}
.bk-03 .titulo-seccion {
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: black;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.bk-03 .subtitulo-seccion {
  font-weight: 300;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: black;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.bk-03 .contenedor-rectangulos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.bk-03 .contenedor-rectangulos .rectangulo {
  background-color: white;
  padding: 1rem 1rem;
  border-radius: 12px;
  text-align: center;
  max-width: 350px;
  min-height: 566px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  box-shadow: -14px 14px 50px -1px rgba(157, 156, 156, 0.6);
  -webkit-box-shadow: -14px 14px 50px -1px rgb(158, 157, 157);
  -moz-box-shadow: -14px 14px 50px -1px rgb(180, 180, 180);
}
.bk-03 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
  font-weight: 700;
  font-size: 2rem;
  color: black;
  margin-bottom: 0.5rem;
}
.bk-03 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
  font-weight: 300;
  font-size: 1.5rem;
  color: black;
}
@media (min-width: 768px) {
  .bk-03 .titulo-seccion,
  .bk-03 .subtitulo-seccion,
  .bk-03 .btn-container {
    text-align: center;
  }
  .bk-03 .btn-container {
    margin-bottom: 5rem;
  }
  .bk-03 .subtitulo-seccion {
    font-size: clamp(1.4rem, 3vw, 2rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .bk-03 .contenedor-rectangulos {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 2rem;
    gap: 0rem;
  }
  .bk-03 .contenedor-rectangulos .rectangulo {
    min-width: 350px;
  }
  .bk-03 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.bk-04 {
  color: black;
  padding: 3rem 0;
  background-position: right top 0px;
  font-family: "Work Sans";
  background-color: #123184;
}
.bk-04 h2 {
  font-size: 3.5rem;
  text-align: left;
  color: white;
}
.bk-04 p {
  font-size: calc(2.4rem + 0.2vw);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.bk-04 .img-tam {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .bk-04 {
    background-position: center top 0px;
    padding: 0rem;
  }
  .bk-04 h2 {
    font-size: 57px;
    text-align: left;
    max-width: 41%;
    padding-top: 5rem;
  }
  .bk-04 p {
    font-size: calc(1.8rem + 0.2vw);
    margin-bottom: 1.6rem;
    margin-left: 4rem;
  }
}

.bk-05 {
  color: black;
  padding: 3rem 0;
  background-position: left top 0px;
}
.bk-05 h2 {
  font-size: calc(2rem + 0.2vw);
  margin-bottom: 3rem;
  font-family: "Work Sans";
  font-weight: 500px;
}
.bk-05 h3 {
  font-size: calc(2rem + 0.2vw);
  margin-bottom: 3rem;
  font-family: "work sans";
  font-weight: 500;
  width: 80%;
}
.bk-05 p {
  font-size: 2rem;
  width: 80%;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .bk-05 {
    background-position: center top 0px;
  }
}

.bk-06 {
  color: white;
  background-color: white;
  font-family: "Work Sans";
  background-position: top;
  background-size: cover;
}
.bk-06 .start-50 {
  left: 67% !important;
}
.bk-06 .top-50 {
  top: 19% !important;
}
.bk-06 .text-start {
  margin-top: -16rem;
}
.bk-06 h2 {
  font-size: calc(2.6rem + 0.2vw);
  text-align: center;
  color: black;
  margin: auto;
}
.bk-06 p {
  font-size: calc(2.4rem + 0.2vw);
  color: black;
  margin: auto;
  text-align: center;
}
.bk-06 .img-tam {
  width: 72%;
}
.bk-06 .icono-tam {
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}
.bk-06 .contenedor-rectangulos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.bk-06 .contenedor-rectangulos .rectangulo {
  padding-bottom: 14rem;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  min-height: 468px;
}
.bk-06 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
  color: black;
  margin-bottom: 0.5rem;
  font-size: 40px;
  text-align: justify;
  margin-left: 1rem;
}
.bk-06 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
  font-size: 30px;
  color: black;
  text-align: left;
  width: 79%;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .bk-06 {
    background-position: center left 0px;
    background-size: contain;
  }
  .bk-06 .top-50 {
    top: 26% !important;
  }
  .bk-06 .start-50 {
    left: 64% !important;
  }
  .bk-06 h2 {
    font-size: calc(2.4rem + 0.2vw);
    text-align: center;
    width: 90%;
    margin: auto;
  }
  .bk-06 .text-start {
    margin-top: -13rem;
  }
  .bk-06 p {
    font-size: calc(2rem + 0.2vw);
    width: 90%;
    text-align: center;
    margin: auto;
  }
  .bk-06 .icono-tam {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
  }
  .bk-06 .img-tam {
    width: 90%;
  }
  .bk-06 .contenedor-rectangulos {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }
  .bk-06 .contenedor-rectangulos .rectangulo {
    padding-bottom: 14rem;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .bk-06 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 36px;
  }
  .bk-06 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
    font-weight: 300;
    font-size: 26px;
    color: black;
    width: 79%;
  }
}

.bk-07 {
  color: white;
  background-position: left top 0px;
  background-size: cover;
  background-size: cover;
}
.bk-07 h2 {
  font-size: 4.4rem;
  margin-bottom: 3rem;
  color: #1f2b68;
  font-family: "Work Sans";
}
.bk-07 .img-tam {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .bk-07 {
    min-height: 572px;
  }
  .bk-07 h2 {
    font-size: 4.5rem;
    margin-bottom: 3rem;
    color: #1f2b68;
    font-family: "Work Sans";
    width: 50%;
  }
}

.bk-08 {
  position: relative;
  background-size: cover;
  padding: 2rem 0;
  background-color: white;
  overflow: visible;
  font-family: "Roboto", SemiCondensed;
  color: black;
}
.bk-08 .fondo-seccion-rec {
  background-color: white;
  border-radius: 12px;
}
.bk-08 .icono-tam {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
  background-color: #123184;
}
.bk-08 .titulo-seccion {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: black;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.bk-08 .subtitulo-seccion {
  font-weight: 300;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: black;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.bk-08 .contenedor-rectangulos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.bk-08 .contenedor-rectangulos .rectangulo {
  background-color: transparent !important;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  box-shadow: -14px 14px 50px -1px rgba(157, 156, 156, 0.6);
  -webkit-box-shadow: -14px 14px 50px -1px rgb(158, 157, 157);
  -moz-box-shadow: -14px 14px 50px -1px rgb(180, 180, 180);
}
.bk-08 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
  font-weight: 700;
  font-size: 2rem;
  color: black;
  margin-bottom: 0.5rem;
}
.bk-08 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
  font-weight: 300;
  font-size: 1.7rem;
  color: black;
}
@media (min-width: 768px) {
  .bk-08 .titulo-seccion,
  .bk-08 .subtitulo-seccion,
  .bk-08 .btn-container {
    text-align: center;
  }
  .bk-08 .btn-container {
    margin-bottom: 5rem;
  }
  .bk-08 .subtitulo-seccion {
    font-size: clamp(1.4rem, 3vw, 2rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .bk-08 .contenedor-rectangulos {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 2rem;
    gap: 0rem;
  }
  .bk-08 .contenedor-rectangulos .rectangulo {
    max-width: 300px;
    padding: 1.2rem 3rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .bk-08 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .bk-08 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
    font-size: 1.3rem;
  }
}

.bk-09 {
  color: white;
  padding: 3rem 0;
  background-position: right top 0px;
}
.bk-09 h2 {
  font-size: 3rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-family: "Work Sans";
}
.bk-09 .img-tam {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .bk-09 {
    background-position: center top 0px;
    padding: 3rem 0;
    background-size: cover;
    min-height: 727px;
  }
  .bk-09 h2 {
    font-size: 54px;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
    font-family: "Work Sans";
    width: 60%;
  }
}

.bk-10 {
  position: relative;
  overflow: visible;
  color: black;
  background-size: cover;
}
.bk-10 .fondo-seccion-rec {
  background-color: white;
  border-radius: 12px;
}
.bk-10 .icono-tam {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.bk-10 .titulo-seccion {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: black;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.bk-10 .subtitulo-seccion {
  font-weight: 300;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: black;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.bk-10 .contenedor-rectangulos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.bk-10 .contenedor-rectangulos .rectangulo {
  background-color: #C4C5CE;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  max-width: 346px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  box-shadow: -14px 14px 50px -1px rgba(157, 156, 156, 0.6);
  -webkit-box-shadow: -14px 14px 50px -1px rgb(158, 157, 157);
  -moz-box-shadow: -14px 14px 50px -1px rgb(180, 180, 180);
}
.bk-10 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
  font-weight: 700;
  font-size: 2rem;
  color: black;
  margin-bottom: 0.5rem;
}
.bk-10 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
  font-weight: 300;
  font-size: 1.7rem;
  color: black;
}
@media (min-width: 768px) {
  .bk-10 .titulo-seccion,
  .bk-10 .subtitulo-seccion,
  .bk-10 .btn-container {
    text-align: center;
  }
  .bk-10 .btn-container {
    margin-bottom: 5rem;
  }
  .bk-10 .subtitulo-seccion {
    font-size: clamp(1.4rem, 3vw, 2rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .bk-10 .contenedor-rectangulos {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 2rem;
    gap: 0rem;
  }
  .bk-10 .contenedor-rectangulos .rectangulo {
    max-width: 600px;
  }
  .bk-10 .contenedor-rectangulos .rectangulo .titulo-rectangulo {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .bk-10 .contenedor-rectangulos .rectangulo .subtitulo-rectangulo {
    font-size: 1.4rem;
  }
}

.bk-11 {
  color: white;
  background-position: left top 0px;
  background-size: cover;
  min-height: 698px;
  /* Contenedor para limitar el ancho del formulario */
  /* Contenedor general del formulario */
  /* Estilo base para inputs, selects y textareas */
  /* Campos más pequeños y con estilo consistente */
  /* Organiza las columnas para que nombre y apellido ocupen 50% cada uno */
}
.bk-11 .img-tam {
  max-width: 364px;
  padding-top: 3rem;
}
.bk-11 .btn-form {
  background-color: #FF0532;
  color: #ffffff;
  padding: 0.4rem 1.5rem;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 400;
  border: 2px solid #FF0532;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
}
.bk-11 .btn-form:hover, .bk-11 .btn-form:focus {
  box-shadow: 0 2px 12px rgb(255, 255, 255);
  text-decoration: none;
  color: white;
}
.bk-11 .contact-form-wrapper {
  margin: 0 auto;
}
.bk-11 .wpcf7-form textarea.form-control {
  height: 120px !important; /* Puedes cambiar 120px por el alto que prefieras */
}
.bk-11 .wpcf7-response-output {
  color: red;
}
.bk-11 .contact-form-wrapper input,
.bk-11 .contact-form-wrapper select,
.bk-11 .contact-form-wrapper textarea {
  box-sizing: border-box;
  border: 2px solid red;
  border-radius: 4px;
}
.bk-11 .input-sm {
  padding: 3px 50px !important;
  font-size: 0.85rem !important;
}
.bk-11 .contact-form-wrapper .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 5px;
  padding-right: 5px;
}
.bk-11 .fondo-modal {
  background-color: #bfcef5;
  border-radius: 12px;
  padding: 1rem;
}
.bk-11 .titulo-seccion {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: black;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.bk-11 .titulo-modal {
  font-weight: 600;
  font-size: 1.5rem;
  color: #2b3878;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
.bk-11 .subtitulo-seccion {
  font-weight: 300;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: black;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.bk-11 .subtitulo-modal {
  font-weight: 300;
  font-size: 1.3rem;
  color: #123184;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
}
.bk-11 .row {
  height: 100%;
}
.bk-11 .row .col-md-6 {
  height: auto;
}
.bk-11 .row .col-md-6 .form-container {
  text-align: center;
}
.bk-11 .row .col-md-6 .form-container .form-control {
  font-size: calc(1.5rem + 0.2vw);
  border-radius: 0;
  padding: 1rem;
  background-color: white;
}
@media (min-width: 768px) {
  .bk-11 {
    background-position: right;
  }
  .bk-11 .text-md-black {
    color: black;
  }
  .bk-11 .img-tam {
    max-width: 650px;
    padding-top: 3rem;
  }
}

/*# sourceMappingURL=main.css.map */
