/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*************************************************************************************************************/
@charset "UTF-8";
:root {
  --primary-color: red;
  --primary-font-color: #000;
  --font-color-light: #f2f2f2;
  --font-family-primary: "Gotham";
  --font-family-secondary: "Bebas Neue", sans-serif;
  --font-family-terciary: "Monserrat", sans-serif;
  --font-size-xs: 0.75rem; /* Muy pequeño */
  --font-size-sm: 0.875rem; /* Pequeño */
  --font-size-md: 1rem; /* Base */
  --font-size-lg: 1.25rem; /* Grande */
  --font-size-xl: 1.5rem; /* Muy grande */
  --font-size-xxl: 2rem; /* Extra grande */
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-primary);
  font-optical-sizing: auto;
}

body {
  position: relative;
}

/* BANNER MEDIO */
.banner_medio {
  position: relative;
  height: 50vh;
  width: 100vw;
  overflow: hidden; /* Oculta cualquier contenido fuera de los límites del contenedor */
  background: url(454db594974f1f85257c.jpg);
  background-size: cover;
  /* Título */
  /* Botón */
  /* Estilos Responsive */
}
@media (min-width: 992px) {
  .banner_medio {
    background-attachment: fixed;
  }
}
.banner_medio .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%; /* Asegura que la imagen siempre cubra toda la altura */
  object-fit: cover;
  transform: translateY(0); /* Movimiento inicial para el parallax */
  z-index: -1;
}
.banner_medio .img_bg_opac {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.banner_medio .banner_medio_content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner_medio .banner_medio_content h2 {
  color: #fff;
  font-size: 3rem;
  width: 75%;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-family-secondary);
  font-weight: 500;
}
.banner_medio .banner_medio_content button {
  margin-top: 2rem;
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.banner_medio .banner_medio_content button .btn-red {
  width: 8px;
  height: 8px;
  border-radius: 600px;
  background-color: red;
}
.banner_medio .banner_medio_content a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  .banner_medio .banner_medio_content {
    padding: 20px;
  }
  .banner_medio .banner_medio_content h2 {
    font-size: 2.253rem;
    max-width: 95%;
  }
  .banner_medio .banner_medio_content button {
    width: 120px;
    height: 45px;
  }
}

/* CAROUSEL */
.carousel {
  width: 100vw;
  height: 90vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 150ms opacity ease-in-out;
  transition-delay: 150ms;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}
.slide[data-active] .bg-opac {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.slide > img.img-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 500rem;
  background-color: rgba(255, 255, 255, 0.705);
  color: #707070;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
  opacity: 0;
}

.carousel-btn:hover,
.carousel-btn:focus {
  background-color: rgba(255, 255, 255, 0.85);
}

.carousel-btn:focus {
  outline: 1px solid black;
}

.slide .text-content {
  position: absolute;
  top: 50%;
  z-index: 9999;
  padding: 0 1rem;
  max-width: 750px;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.8s ease-in;
  transition-delay: 150ms;
}
@media (min-width: 1250px) {
  .slide .text-content {
    width: 850px;
  }
}
.slide .text-content h2 {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
}
@media (min-width: 1250px) {
  .slide .text-content h2 {
    font-size: 3.5rem;
    font-weight: 500;
  }
}
@media (min-width: 968px) {
  .slide .text-content {
    transform: translate(-51%, -51%);
    left: 50%;
  }
}
@media (min-width: 1250px) {
  .slide .text-content {
    max-width: 1750px;
  }
}

.slide[data-active] .text-content {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (min-width: 968px) {
  .slide[data-active] .text-content {
    transform: translate(-50%, -50%);
  }
}

.slide .text-content :is(h2, p) {
  color: var(--font-color-light);
}

.slide .text-content p {
  font-family: var(--font-family-primary);
  text-align: center;
  font-weight: 300;
  font-size: 1.5rem;
}
@media (min-width: 1250px) {
  .slide .text-content p {
    font-size: 1.25rem;
  }
}

.slide .nextImage {
  position: absolute;
  bottom: 0.25rem;
  right: 0.5rem;
  opacity: 0;
  transition: all 0.5s ease-in;
  transition-delay: 0.65s;
  transform: translateY(1rem);
}

.slide .nextImage img {
  border-radius: 4px;
}

.slide[data-active] .nextImage {
  opacity: 1;
  transform: translateY(0);
}

.slide[data-active] .carousel-btn {
  z-index: 99999;
  opacity: 1;
}

@media (min-width: 1250px) {
  .slide .text-content {
    padding-left: 3rem;
    font-size: 3rem;
  }
  .slide .nextImage img {
    height: 150px;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

nav {
  padding-right: 2rem;
  padding-bottom: 0.7rem;
}

ul {
  list-style: none;
}

nav ul {
  position: absolute;
  z-index: 100;
  top: 70px;
  left: 0;
  height: 0vh;
  display: flex;
  flex-direction: column;
  width: 100vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  nav ul {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }
}

nav ul.show {
  height: 100vh;
}

nav ul li {
  background-color: rgba(255, 255, 255, 0.5803921569);
  height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1490196078);
  width: 100%;
  transform: translateY(-500px);
  transition: transform 0.4s ease-in-out;
}
@media (min-width: 768px) {
  nav ul li {
    transform: translateY(0);
    background-color: transparent;
    border-bottom: none;
  }
}

nav ul.show > li {
  transform: translateY(0);
}

nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.15rem;
  text-transform: capitalize;
  text-decoration: none;
  color: var(--primary-font-color);
}
@media (min-width: 768px) {
  nav ul li a {
    color: #f2f2f2;
  }
}

.menu_bar {
  width: 40px;
  height: 30px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  transition: all 0.1s ease-in-out;
}

.menu_bar:active {
  transform: scale(0.9);
}

.menu_bar div {
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 500px;
}

/* NOSOTROS */
.nosotros {
  padding: 0 2rem 4rem;
}

.nosotros .title {
  text-transform: uppercase;
  text-align: center;
  margin: 2rem 0;
  text-align: center;
  font-size: 0.3rem;
  letter-spacing: 3px;
}
@media (min-width: 400px) {
  .nosotros .title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1110px) {
  .nosotros .title {
    font-size: 2rem;
  }
}

.nosotros .title h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: var(--font-family-terciary);
  font-weight: 900;
}

.nosotros .img_container {
  height: 50vh;
}

.nosotros .img_container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.text_container {
  margin: 2rem 0;
}

.text-container .text-simple {
  color: var(--primary-font-color);
  font-size: 16px;
  line-height: 1.9px;
  font-weight: 700;
}

.text_simple {
  font-family: var(--font-family-terciary);
  font-size: 0.9rem;
}

.text_container .text_important {
  display: block;
  font-weight: 900;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-family: var(--font-family-terciary);
}
@media (min-width: 400px) {
  .text_container .text_important {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

@media (min-width: 768px) {
  .nosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nosotros_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    align-items: center;
    padding: 1rem;
    max-width: 1100px;
  }
  .nosotros_content .text_container {
    margin: 0;
  }
  .order-1 {
    order: 1;
  }
}
.footer {
  background-color: #1a1a1a;
  color: #f2f2f2;
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Centra el texto */
}

.footer_logo {
  display: flex;
  justify-content: center; /* Centra la imagen */
  margin-bottom: 1rem;
}

.footer_logo img {
  max-width: 150px;
  transform: translateX(0);
}

.footer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Asegura que el texto también quede centrado */
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 592px) {
  .footer_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2rem 2rem;
    column-gap: 0;
    align-items: center;
    justify-content: center;
  }
}

.footer_column {
  min-width: 200px;
}

.footer_column h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer_column a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.5rem;
}

.footer_column a:hover {
  text-decoration: underline;
}

.byNammu {
  padding: 1rem 0;
  margin-top: 3rem;
  background-color: #333333;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 300;
}

.byNammu a {
  color: violet;
  text-decoration: none;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
}
@font-face {
  font-family: "Gotham";
  src: url(fonts/Gotham-Black.otf) format("opentype");
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url(fonts/Gotham-Bold.otf) format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url(fonts/Gotham-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url(fonts/Gotham-Light.otf) format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url(fonts/Gotham-Extra-Light.otf) format("opentype");
  font-weight: 100;
  font-style: normal;
}
/* Contenedor General */
.nosotros02 {
  padding: 20px;
  font-family: var(--font-family-terciary);
  color: var(--primary-font-color);
  /* Títulos */
  /* Contenedor Grid para texto e imagen */
  /* Responsivo para móviles */
}
.nosotros02 .title02 h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: var(--font-family-terciary);
  font-weight: 900;
}
.nosotros02 p {
  font-size: 16px;
  line-height: 1.5; /* Espaciado entre líneas */
  font-weight: 400;
  color: var(--primary-font-color); /* Color oscuro */
  max-width: 600px; /* Limita el ancho del párrafo */
  text-align: left; /* Alineación a la izquierda */
  margin-top: 10px; /* Espaciado entre el título y el párrafo */
  font-family: var(--font-family-terciary);
}
.nosotros02 .grid_container02 {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 20px; /* Espacio entre columnas */
  align-items: center; /* Centrar verticalmente */
  max-width: 1200px; /* Limitar el ancho del contenedor */
  margin: 0 auto; /* Centrar horizontalmente el contenedor en la página */
  margin-bottom: 30px;
  /* Bloque de texto */
  /* Bloque de imagen */
}
.nosotros02 .grid_container02 .text_container02 {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrar verticalmente el texto */
  max-width: 90%; /* Limitar el ancho del texto */
  text-align: left;
}
.nosotros02 .grid_container02 .text_container02 .text_important02 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}
.nosotros02 .grid_container02 .text_container02 .red-line {
  display: block;
  width: 20px;
  height: 3px;
  background-color: red;
  margin: 10px 0;
}
.nosotros02 .grid_container02 .text_container02 .text_secondary02 {
  font-size: 14px;
  color: #666;
  font-style: italic;
}
.nosotros02 .grid_container02 .text_container02 .text_secondary02 a {
  color: var(--primary-font-color);
  font-weight: 300;
  text-decoration: none;
}
.nosotros02 .grid_container02 .text_container02 .text_secondary02 a:hover {
  text-decoration: underline;
}
.nosotros02 .grid_container02 .img_container02 {
  display: flex;
  justify-content: center; /* Centrar horizontalmente la imagen */
  align-items: center; /* Centrar verticalmente la imagen */
  height: 100%;
}
.nosotros02 .grid_container02 .img_container02 img {
  max-width: 100%; /* Imagen no se pasa del contenedor */
  max-height: 100%; /* Limita el tamaño máximo para evitar distorsiones */
  border-radius: 8px; /* Bordes redondeados */
  object-fit: cover; /* Ajusta la imagen sin distorsionarla */
  margin-bottom: 10px;
}
.nosotros02 .grid_container02.reverse {
  grid-template-columns: 1fr 1fr; /* Imagen a la izquierda, texto a la derecha */
  grid-template-areas: "image text";
}
.nosotros02 .grid_container02.normal {
  grid-template-columns: 1fr 1fr; /* Imagen a la derecha, texto a la izquierda */
  grid-template-areas: "text image";
}
@media (max-width: 768px) {
  .nosotros02 .grid_container02 {
    grid-template-columns: 1fr; /* Una sola columna */
    text-align: center;
    margin-bottom: 20px;
  }
  .nosotros02 .grid_container02 .img_container02 {
    margin-top: 20px; /* Espaciado adicional para la imagen */
  }
  .nosotros02 .text_container02 {
    max-width: 100%;
  }
}

/*# sourceMappingURL=index.css.map*/