@charset "UTF-8";
.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;
}

@media (max-width: 768px) {
  .text-container-big {
    padding: 0 5vw 0 5vw !important;
  }
  .text-container-big h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .text-container-big .p3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}
.text-image-right {
  background-color: #1f2937;
  height: 60vh;
  max-height: 60vh;
  margin-bottom: 1.5rem;
  /* ==== Móvil: imagen arriba, texto abajo ==== */
}
.text-image-right .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  min-width: 100%;
  gap: 2rem;
}
.text-image-right .container .text-content {
  width: 40%;
  padding: 0 0 0 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}
.text-image-right .container .text-content h2, .text-image-right .container .text-content p {
  color: white;
}
.text-image-right .container .image-content {
  padding: 0;
  width: 60%;
  order: 2;
  display: flex;
  align-items: stretch;
}
.text-image-right .container .image-content img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  .text-image-right .container .image-content img:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .text-image-right {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    box-sizing: border-box;
  }
  .text-image-right .container {
    width: 100%;
    max-width: 100%;
    flex-direction: column-reverse;
    height: auto;
    gap: 1rem;
  }
  .text-image-right .container .image-content {
    width: 100%;
    padding: 0;
  }
  .text-image-right .container .image-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1.7777778;
    object-fit: cover;
  }
  .text-image-right .container .text-content {
    width: 100%;
    min-width: 0;
    max-width: 90%;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 5%;
  }
  .text-image-right .container .text-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .text-image-right .container .text-content .p2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}

.text-container-medium {
  box-sizing: border-box;
  width: 100%;
  max-width: 72rem;
  margin: 2rem auto 4rem;
  padding-inline: clamp(24px, 6vw, 80px);
  text-align: left;
  /* ==== Móvil: imagen arriba, texto abajo ==== */
}
@media (max-width: 768px) {
  .text-container-medium {
    padding-inline: clamp(16px, 5vw, 40px);
    padding-left: max(clamp(16px, 5vw, 40px), env(safe-area-inset-left));
    padding-right: max(clamp(16px, 5vw, 40px), env(safe-area-inset-right));
  }
  .text-container-medium h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .text-container-medium .p2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}

.industries-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 columnas iguales */
  gap: 2rem;
  padding: 3rem 6vw;
  background-color: white;
  align-items: stretch;
  box-sizing: border-box;
  /* Responsivo */
}
.industries-section .column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  text-align: left;
  align-items: center;
  /* Caja de imagen con ratio fijo */
}
.industries-section .column .media {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 1.33333333;
}
.industries-section .column .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .industries-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .industries-section {
    grid-template-columns: 1fr;
  }
  .industries-section .column {
    align-items: center;
    text-align: center;
  }
}
.industries-section .column h4:hover {
  cursor: pointer;
  color: #3b82f6;
}

hr {
  height: 0.15rem;
  background-color: #e5e7eb;
  border: none;
  margin: 4rem;
  border-radius: 0;
}

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

.group-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 6vw;
  background-color: #fafaf9;
  box-sizing: border-box;
}
.group-section .column {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.group-section .column:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.group-section .column img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .group-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .group-section {
    grid-template-columns: 1fr;
  }
  .group-section .column {
    align-items: center;
    text-align: center;
  }
  .group-section .column img {
    /* En móvil controlamos tamaño con max-width/height */
    width: auto;
    max-width: clamp(140px, 70vw, 280px);
    max-height: 140px;
    object-fit: contain;
    align-self: center;
  }
}/*# sourceMappingURL=index.css.map */