/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  padding-top: 3rem;
  
  color: rgb(var(--bs-tertiary-color-rgb));

}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
  
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
.progress-container {
  width: 100%;
  height: 12px;
  background: #ccc;
  position: fixed;
  top: 0;
  z-index: 9999;
  display: none;  /* Oculta la barra de progreso inicialmente */
}

.progress-bar {
  height: 12px;
  background: #007bff;
  width: 0%;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
  --bd-violet-bg: #712cf9;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}
.bd-mode-toggle {
  z-index: 1500;
}

.form-icon {
  width: 24px;
  height: 24px;
}

.form-label {
  color: #007bff;  /* Azul */
}

.form-control {
  border: 1px solid #ccc;  /* Gris */
}

.btn-primary {
  background-color: #007bff;  /* Azul */
  border: none;
}

.formuCont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;  /* Asegura que el contenedor ocupa toda la altura de la ventana */
  background-color: #fff;  /* Blanco */
  margin-bottom: 60px;
}

.formu {
  width: 75%;
  height: 75%;
  padding: 2%;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.7);  /* Sombra para darle un poco de elevación al formulario */
  background-color: #007bff;  /* Azul */
  margin: auto;  /* Centra horizontalmente */
  text-align: center;  /* Centra el contenido del formulario */
  
}

.newsletter-section {
  background-color: #2c3e50;  /* Negro */
  color: #fff;  /* Blanco */
  text-align: center;
  padding: 2em;
}

.item1 {
  background-image: url('media/imagen1.webp');
  background-size: cover;
  background-position: center;
}

.item2 {
  background-image: url('media/imagen2.webp');
  background-size: cover;
  background-position: center;
}

.item3 {
  background-image: url('media/imagen3.webp');
  background-size: cover;
  background-position: center;
}

.imagen1, .imagen2, .imagen3,.imagen4, .imagen5, .imagen6  {
  position: relative;  /* Importante para posicionar el pseudo-elemento correctamente */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.imagen1::before, .imagen2::before, .imagen3::before {
  content: "";  /* Necesario para que el pseudo-elemento se genere */
  position: absolute;  /* Posicionado en relación al elemento padre */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);  /* Color negro con 50% de transparencia */
  
  z-index: 1;  /* Para asegurarse de que la capa esté por encima de la imagen de fondo */
}

/* Asegúrate de que el texto esté por encima de la capa oscura */
.imagen1 h2, .imagen1 p, .imagen2 h2, .imagen2 p, .imagen3 h2, .imagen3 p {
  position: relative;
  z-index: 2;
  padding: 6%;
}

.imagen1 {
  background-image: url('media/imagen4.webp');
}

.imagen2 {
  background-image: url('media/imagen5.webp');
}

.imagen3 {
  background-image: url('media/imagen6.webp');
}

.imagen4 {
  background-image: url('media/imagen7.webp');
}
.imagen5 {
  background-image: url('media/imagen8.webp');
}
.imagen6 {
  background-image: url('media/imagen9.webp');
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    
    color: #FFF;
    /*border-radius: 50px;
	background-color: #25d366;
    box-shadow: 2px 2px 3px #999;*/
	text-align: center;
    font-size: 30px;
    
    z-index: 100;
}
.whatsapp-float img {
    width: 100%;
    height: 100%;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #555;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #222;
}

.cv-section {
  background-color: #fff; /* Fondo blanco */
  color: #2c3e50; /* Texto en negro */
  padding: 40px 0;
}

.section-title {
  text-align: center;
  color: #007bff; /* Título en azul */
  margin-bottom: 30px;
}

.cv-block {
  margin-bottom: 20px;
}

.cv-block h3 {
  color: #007bff; /* Subtítulo en azul */
  margin-bottom: 10px;
}

.cv-block p {
  margin-bottom: 10px;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333; /* Más claro que el header */
	color: white; /* Cambia el color del texto a blanco */
}
.footer-container a {
    color: white; /* Asegúrate de que los enlaces también sean blancos */
    text-decoration: none;
}
.footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: center;
}

.footer-right a img {
    width: 30px; /* O el tamaño que prefieras */
    height: 30px;
    margin: 0 5px;
}

.footer-left img {
    width: 60px; /* Ajusta según tu imagen */
    height: auto;
}