@charset "UTF-8";
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.5;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1e293b;
  line-height: 1.2;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1e293b;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1e293b;
  line-height: 1.2;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1e293b;
  line-height: 1.2;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.p1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.p2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.p3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.organization-image {
  position: relative;
  width: 100vw;
  height: 80vh;
  max-width: 100%;
  max-height: 100vh;
  /* (opcional) velo para contraste del texto
  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
    pointer-events: none;
  }*/
}
.organization-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.organization-image .overlay-content {
  position: absolute;
  z-index: 1;
  top: 60%;
  left: 5rem;
  transform: translateY(-50%);
  text-align: left;
  max-width: min(720px, 80%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.organization-image .overlay-content h1 {
  color: #fff;
  margin: 0;
}
.organization-image .overlay-content .p3 {
  color: #fff;
  margin: 0;
}
.organization-image .overlay-content .btn.btn-primary {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #1e293b;
  border-color: #1e293b;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.organization-image .overlay-content .btn.btn-primary:hover {
  background-color: rgb(27, 36.9, 53.1);
  border-color: rgb(27, 36.9, 53.1);
}

.text-container-big {
  padding: 0 45vw 0 5rem;
  margin: 1.5rem 0 2rem 0;
}
.text-container-big .container {
  height: 100%;
  width: 100%;
  display: block;
  align-items: center;
}
.text-container-big h1 {
  margin: 0 0 1.5rem 0;
}

.text-video-right {
  height: 100vh;
  max-height: 100vh;
  /* ==== Móvil: video arriba, texto abajo ==== */
}
.text-video-right .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
  padding: 0 0 0 3vw;
}
.text-video-right .container .text-content {
  width: 50%;
  padding: 0 5vw 0 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}
.text-video-right .container .text-content .title-content {
  margin-bottom: 0;
}
.text-video-right .container .video-content {
  width: 50%;
  order: 2;
  display: flex;
  align-items: stretch;
  padding: 0 1rem 0 1rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .text-video-right {
    height: auto;
    max-height: none;
  }
  .text-video-right .container {
    display: flex;
    flex-direction: column;
    padding-inline: 5vw;
    width: 100%;
    box-sizing: border-box;
  }
  .text-video-right .container .video-content {
    order: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    overflow: hidden;
  }
  .text-video-right .container .text-content {
    order: 1;
    width: 100%;
    padding: 0;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .text-video-right .container .text-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .text-video-right .container .text-content .p2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}/*# sourceMappingURL=organization.css.map */