@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --color-fondo: #1b1d21;
  --color-secundario: #2b2e33;
  --color-beige: #dcc7a1;
  --color-beige-claro: #eadbc8;
  --color-texto: #f5f5f5;
  --color-gris: #9ca3af;

  --radio: 12px;

  --sombra: 0 10px 25px rgba(0, 0, 0, 0.35);

  --transicion: 0.3s;
}

/*======================================
            RESET
=======================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.contenedor {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  color: var(--color-gris);
}

/*= Navegacion*/

header {
  width: 100%;
  background: var(--color-fondo);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.barra-navegacion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

.header-contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

.logo img {
  width: 250px;
}

.menu {
  display: flex;
  gap: 35px;
}

.menu a {
  color: var(--color-texto);
  font-weight: 500;
  transition: var(--transicion);
}

.menu a {
  color: var(--color-texto);
  font-weight: 500;
  transition: var(--transicion);
}

.menu a.activo {
  background: var(--color-beige);
  color: #1b1d21;
  padding: 10px 16px;
  border-radius: 8px;
}

.menu a:hover {
  color: var(--color-beige);
}

.menu a:hover {
  color: var(--color-beige);
}

.btn-principal {
  background: var(--color-beige);
  color: #1b1d21;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transicion);
}

.btn-principal:hover {
  background: var(--color-beige-claro);
  transform: translateY(-2px);
}

/*Herooo*/

.hero {
  position: relative;
  height: calc(100vh - 95px);
  background-image: url("../imagenes/banner.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(27, 29, 33, 0.92) 10%,
    rgba(27, 29, 33, 0.65) 45%,
    rgba(27, 29, 33, 0.25) 100%
  );
}

.hero-contenido {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #e5e5e5;
}

.hero-botones {
  display: flex;
  gap: 20px;
}

.btn-secundario {
  border: 2px solid var(--color-beige);
  color: var(--color-texto);
  padding: 12px 24px;
  border-radius: 8px;
  transition: var(--transicion);
}

.btn-secundario:hover {
  background: var(--color-beige);
  color: #1b1d21;
}

.nosotros {
  padding: 140px 0;
  background: #1b1d21;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.subtitulo-seccion {
  color: var(--color-beige);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nosotros-texto h2 {
  margin: 15px 0 25px;
  font-size: 2.5rem;
}

.nosotros-texto p {
  margin-bottom: 35px;
}

.lista-nosotros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lista-nosotros div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lista-nosotros img {
  width: 45px;
}

.lista-nosotros span {
  font-weight: 500;
}

.nosotros-imagen img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--sombra);
  transition: 0.4s;
}

.nosotros-imagen img:hover {
  transform: scale(1.03);
}

.tiendas {
  padding: 110px 0;
  background: #23262b;
}

.tiendas h2 {
  text-align: center;
  margin: 15px 0;
}

.texto-tiendas {
  max-width: 650px;
  margin: auto;
  text-align: center;
  margin-bottom: 60px;
}

.logos-tiendas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.logo-tienda {
  background: white;
  border-radius: 18px;
  padding: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  transition: 0.35s;
  cursor: pointer;
}

.logo-tienda {
  background: white;
  border-radius: 18px;
  padding: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  transition: 0.35s;
  cursor: pointer;
}

.logo-tienda:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.logo-tienda img {
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
  transition: 0.35s;
}

.logo-tienda:hover img {
  transform: scale(1.08);
}

/*======================================
                 FOOTER
=======================================*/

.footer {
  background: #15171a;
  padding-top: 60px;
}

.footer-contenido {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 15px;
}

.footer-logo p {
  max-width: 300px;
}

.footer h3 {
  color: var(--color-beige);
  margin-bottom: 20px;
}

.footer-enlaces {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-enlaces a {
  color: #bdbdbd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-enlaces a:hover {
  color: var(--color-beige);
}

.footer-contacto p {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

/* ================================
   PAGINA NOSOTROS
================================ */

.nosotros-principal {
  padding: 90px 0 70px;
  text-align: center;
}

.nosotros-principal .contenedor {
  max-width: 850px;
  margin: auto;
}

.nosotros-principal h1 {
  font-size: 48px;
  margin: 20px 0;
  color: #ffffff;
}

.nosotros-principal p {
  max-width: 750px;
  margin: 15px auto;
  color: #b8bdc7;
  line-height: 1.7;
  font-size: 17px;
}

/* MISION Y VISION */

.mision-vision {
  padding: 60px 0;
  background-color: #22252a;
}

.mision-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-box {
  background-color: #2c3036;
  padding: 35px;
  border-radius: 12px;
}

.info-box h2 {
  color: #e6cfa3;
  margin-bottom: 15px;
}

.info-box p {
  color: #b8bdc7;
  line-height: 1.7;
}

/* COMO TRABAJAMOS */

.como-trabajamos {
  padding: 80px 0;
  text-align: center;
}

.como-trabajamos h2 {
  color: #ffffff;
  font-size: 34px;
  margin: 15px 0 45px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.proceso-card {
  background-color: #2c3036;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: left;
}

.numero {
  color: #e6cfa3;
  font-size: 28px;
  font-weight: bold;
}

.proceso-card h3 {
  color: #ffffff;
  margin: 15px 0;
}

.proceso-card p {
  color: #b8bdc7;
  line-height: 1.6;
}

/* FOOTER */

footer {
  background-color: #15171a;
  border-top: 1px solid #30343a;
  text-align: center;
  padding: 25px 0;
}

footer p {
  color: #9298a3;
  margin: 0;
  font-size: 14px;
}

/* ================================
   GALERIA
================================ */

.galeria {
  padding: 100px 0;
  background: var(--color-fondo);
}

.galeria h1 {
  text-align: center;
  margin: 15px 0;
  color: var(--color-texto);
}

.galeria-descripcion {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--color-gris);
}

/* DISTRIBUCION DE IMAGENES */

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* TARJETAS */

.galeria-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--sombra);
  background: var(--color-secundario);
}

.galeria-principal {
  grid-column: span 2;
  height: 420px;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* TEXTO SOBRE LAS IMAGENES */

.galeria-texto {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 25px 20px;
  background: linear-gradient(transparent, rgba(27, 29, 33, 0.95));
}

.galeria-texto h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.galeria-texto p {
  color: #d1d5db;
  margin: 0;
}

/* EFECTO AL PASAR EL MOUSE */

.galeria-item:hover img {
  transform: scale(1.05);
}

/* ================================
   CONTACTO
================================ */

.contacto {
  padding: 100px 0;
  background: var(--color-fondo);
}

.contacto h1 {
  text-align: center;
  margin: 15px 0;
}

.contacto-introduccion {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

/* CONTENEDOR PRINCIPAL */

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* INFORMACION */

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 20px;
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--color-secundario);
  border-radius: var(--radio);
}

.contacto-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contacto-item h3 {
  margin: 0 0 5px;
  color: var(--color-texto);
}

.contacto-item p {
  margin: 0;
}

/* FORMULARIO */

.contacto-formulario {
  background: var(--color-secundario);
  padding: 35px;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}

.contacto-formulario h2 {
  color: var(--color-texto);
  margin-bottom: 25px;
}

.campo {
  margin-bottom: 20px;
}

.campo label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-texto);
  font-weight: 500;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #454950;
  border-radius: 8px;
  background: #1b1d21;
  color: var(--color-texto);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
}

.campo input:focus,
.campo textarea:focus {
  border-color: var(--color-beige);
}

.campo textarea {
  resize: vertical;
}

.contacto-formulario .btn-principal {
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

/* ================================
   MENU CON ICONOS
================================ */

.menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu li {
  display: flex;
  align-items: center;
}

.menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-texto);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transicion);
}

.menu a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.menu a:hover {
  color: var(--color-beige);
}

.menu a.activo {
  background: #b8a27c;
  color: #1b1d21;
  padding: 10px 16px;
  border-radius: 8px;
}

/* ================================
   PAGINA DE PRESENTACION
================================ */

.presentacion {
  min-height: calc(100vh - 95px);
  padding: 70px 0 80px;
  text-align: center;
  background: var(--color-fondo);
}

.presentacion .contenedor {
  max-width: 1000px;
  margin: auto;
}

.presentacion h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 18px 0 20px;
  color: #ffffff;
}

.presentacion > .contenedor > p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 17px;
  line-height: 1.7;
}

/* VIDEO */

.video-contenedor {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 40px;
  padding: 8px;
  background: #15171a;
  border: 1px solid var(--color-beige);
  border-radius: 12px;
  box-shadow: var(--sombra);
}

.video-contenedor iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: none;
  border-radius: 8px;
}

/* INFORMACION */

.presentacion-info {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 30px 10px;
}

.presentacion-info h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
}

.presentacion-info p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

/* BOTON */

.presentacion-info .btn-principal {
  display: inline-block;
}

/* ================================
   ADAPTACION PARA PANTALLAS
================================ */

@media (max-width: 900px) {
  .header-contenido {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 15px 0;
  }

  .logo img {
    width: 190px;
  }

  .menu {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
  }

  .logos-tiendas {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contenido {
    grid-template-columns: 1fr 1fr;
  }

  .video-contenedor iframe {
    height: 400px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .menu {
    gap: 8px;
  }

  .menu a {
    font-size: 12px;
  }

  .menu a img {
    width: 20px;
    height: 20px;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - 95px);
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-botones {
    flex-direction: column;
    align-items: flex-start;
  }

  .lista-nosotros {
    grid-template-columns: 1fr;
  }

  .logos-tiendas {
    grid-template-columns: 1fr;
  }

  .mision-vision-grid {
    grid-template-columns: 1fr;
  }

  .proceso-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .galeria-principal {
    grid-column: span 1;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .footer-contenido {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo p {
    margin: auto;
  }

  .presentacion {
    padding: 50px 0 60px;
  }

  .presentacion h1 {
    font-size: 30px;
  }

  .presentacion > .contenedor > p {
    font-size: 15px;
  }

  .video-contenedor {
    padding: 5px;
  }

  .video-contenedor iframe {
    height: 230px;
  }

  .presentacion-info {
    padding: 10px;
  }

  .presentacion-info h2 {
    font-size: 24px;
  }
}
