/**
 * Subsitio Experiencia - Nosotros page exclusive styles.
 * Olive green theme for header/footer; about page content.
 */

/* Theme: same header as home (black with opacity); olive green footer */
body.exp-nosotros {
  --exp-header-bg: rgba(0, 0, 0, 0.4);
  --exp-header-text: #e7e0d3;
  --exp-header-cta-bg: #e7e0d3;
  --exp-header-cta-text: #4a4d35;
  --exp-footer-bg: #68603F;
  --exp-footer-text: #e7e0d3;
  --exp-footer-pattern: rgba(255, 255, 255, 0.08);
  --exp-mobile-menu-bg: rgba(224, 216, 188, 0.4);
}

body.exp-nosotros .header-experiencia--scrolled {
  background: rgba(0, 0, 0, 0.5);
}

/* Footer: logo and pattern SVG fill #E0D8BC */
body.exp-nosotros .footer-experiencia__logo svg path,
body.exp-nosotros .footer-experiencia__pattern svg path {
  fill: #e0d8bc;
}

/* Hero: two columns, extends behind fixed header (like home) */
body.exp-nosotros .exp-hero--nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  margin-top: -110px;
}

body.exp-nosotros .exp-hero__col--img {
  background-image: url("../img/nosotros-hero-tienda.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.exp-nosotros .exp-hero__col--content {
  background: #68603F;
  color: #E0D8BC;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 150px 2.5rem 48px;
}

body.exp-nosotros .exp-hero__content-inner {
  max-width: 48ch;
  text-align: center;
}

body.exp-nosotros .exp-hero__logo {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

body.exp-nosotros .exp-hero__logo svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

body.exp-nosotros .exp-hero__logo svg path {
  fill: #E0D8BC;
}

body.exp-nosotros .exp-hero__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  color: #E0D8BC;
  line-height: 1.3;
  font-family: "Fira Sans", sans-serif;
}

body.exp-nosotros .exp-hero__text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #E0D8BC;
  margin: 0 0 1.5rem;
  font-family: "Fira Sans", sans-serif;
}

body.exp-nosotros .exp-hero__btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border: solid 1px rgba(245, 220, 192, 1);
  background:  rgba(245, 220, 192, 0.4);
  color: #F5DCC0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.1em;
  border-radius: 8px;
  font-family: "Fira Sans", sans-serif;
}

body.exp-nosotros .exp-hero__btn:hover {
  opacity: 0.92;
}

body.exp-nosotros .exp-hero__btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

body.exp-nosotros .exp-hero__btn:hover .exp-hero__btn-arrow,
body.exp-nosotros .exp-hero__btn:active .exp-hero__btn-arrow {
  transform: rotate(90deg);
}

/* Sections: page background and text (except --valores) */
.exp-main--nosotros {
  background: #e0d8bc;
  color: #68603f;
}

.exp-main--nosotros .exp-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.exp-main--nosotros .exp-section--origen {
  background: #e0d8bc;
}

.exp-main--nosotros .exp-section--origen .exp-section__col--text {
  text-align: center;
}

.exp-main--nosotros .exp-section--origen .exp-section__col--text .exp-section__title {
  font-size: 45px;
  margin: 0 0 0.35rem;
}

.exp-main--nosotros .exp-section--origen .exp-section__col--text .exp-section__subtitle {
  font-family: "Fira Sans", sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Two-column block below Origen: col1 = first paragraph + image side by side; col2 = second paragraph */
.exp-main--nosotros .exp-origen-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
  margin: 2.5rem 0 0;
  padding: 0;
}

.exp-main--nosotros .exp-origen-block__col--1 {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.exp-main--nosotros .exp-origen-block__col--2 {
  min-width: 0;
}

.exp-main--nosotros .exp-origen-block__img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.exp-main--nosotros .exp-origen-block__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.exp-main--nosotros .exp-origen-block__img video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
}

.exp-main--nosotros .exp-origen-block__text {
  color: #68603f;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.exp-main--nosotros .exp-origen-block__col--2 .exp-origen-block__text:first-of-type {
  margin-bottom: 25px;
}

.exp-main--nosotros .exp-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.exp-main--nosotros .exp-section__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #68603f;
  margin-bottom: 0.25rem;
}

.exp-main--nosotros .exp-section__title {
  font-size: 1.75rem;
  color: #68603f;
  margin: 0 0 0.25rem;
}

.exp-main--nosotros .exp-section__subtitle {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #68603f;
  margin: 0 0 1rem;
}

.exp-main--nosotros .exp-section__img {
  min-height: 260px;
  border-radius: 0;
  overflow: hidden;
}

.exp-main--nosotros .exp-section__img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

/* Valores: full-width dark background; content in container, two columns (title left | blocks right) */
.exp-main--nosotros .exp-section--valores {
  background: #5c523c; /* dark olive edge-to-edge */
  color: #e0d8bc;
  max-width: none;
  width: 100%;
  padding: 4rem 1.5rem;
  margin: 0;
}

.exp-main--nosotros .exp-section--valores .exp-section__inner--valores {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.exp-main--nosotros .exp-section--valores .exp-section__col--title {
  min-width: 0;
}

.exp-main--nosotros .exp-section--valores .exp-section__col--blocks {
  min-width: 0;
}

.exp-main--nosotros .exp-section--valores .exp-section__col--title .exp-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #e0d8bc;
  margin: 0 0 0.35rem;
  font-weight: 600;
  
}

.exp-main--nosotros .exp-section--valores .exp-section__col--title .exp-section__subtitle {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: rgba(224, 216, 188, 0.9);
  margin: 0;
}

.exp-main--nosotros .exp-section--valores .exp-section__col--blocks {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.exp-main--nosotros .exp-section--valores .exp-section__col--blocks .exp-card {
  min-width: 150px;
  flex: 1 1 150px;
}

.exp-main--nosotros .exp-section--valores .exp-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.exp-main--nosotros .exp-section--valores .exp-card__title {
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  color: #e0d8bc;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Fira Sans", sans-serif;
}

.exp-main--nosotros .exp-section--valores .exp-card__text {
  font-size: 0.875rem;
  color: rgba(224, 216, 188, 0.92);
  margin: 0;
  line-height: 1.55;
}

/* Banner gigante: 100% viewport, full-screen image */
.exp-main--nosotros .exp-section--banner-gigante {
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: block;
}

.exp-main--nosotros .exp-section--banner-gigante .exp-banner-gigante__img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.exp-main--nosotros .exp-section--vive {
  text-align: center;
  background: #e0d8bc;
}

.exp-main--nosotros .exp-section--vive .exp-section__title {
  font-size: 72px;
  color: #68603f;
}

.exp-main--nosotros .exp-section--vive .exp-section__logo {
  margin: 1.5rem auto 1.5rem;
  max-width: 280px;
}

.exp-main--nosotros .exp-section--vive .exp-section__logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.exp-main--nosotros .exp-section--vive .exp-section__logo svg path {
  fill: #68603f;
}

.exp-main--nosotros .exp-section--vive .exp-section__body {
  color: #68603f;
  max-width: 48%;
  margin: auto;
  font-size: 1.2rem;
}

.exp-main--nosotros .exp-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #68603f;
  color: #e0d8bc;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-top: 1rem;
}

.exp-main--nosotros .exp-btn:visited {
    color: #e0d8bc;
}
.exp-main--nosotros .exp-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  body.exp-nosotros .exp-hero--nosotros {
    grid-template-columns: 1fr;
    margin-top: -60px;
  }

  body.exp-nosotros .exp-hero__logo svg {
    max-width: 200px;
  }

  body.exp-nosotros .exp-hero__title {
    font-size: 18px;
  }

  body.exp-nosotros .exp-hero__text {
    font-size: 14px;
    line-height: 22px;
  }

  body.exp-nosotros .exp-hero__col--img {
    min-height: 40vh;
  }

  body.exp-nosotros .exp-hero__col--content {
    padding: 60px 1.5rem 48px;
  }

  .exp-main--nosotros .exp-section__inner {
    grid-template-columns: 1fr;
  }

  /* Origen section: image (origen.png) full viewport width on mobile */
  .exp-main--nosotros .exp-section--origen {
    padding-left: 0;
    padding-right: 0;
  }

  .exp-main--nosotros .exp-section--origen .exp-section__col--text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .exp-main--nosotros .exp-section--origen .exp-section__img,
  .exp-main--nosotros .exp-section--origen .exp-section__img img {
    width: 100%;
    min-height: 260px;
  }

  .exp-main--nosotros .exp-origen-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  /* Swap column order on mobile: col--2 first, then col--1 */
  .exp-main--nosotros .exp-origen-block__col--1 {
    order: 2;
    flex-direction: column;
  }

  .exp-main--nosotros .exp-origen-block__col--2 {
    order: 1;
  }

  .exp-main--nosotros .exp-origen-block__img {
    margin: 0;
  }

  .exp-main--nosotros .exp-section--valores {
    padding: 2rem 1.5rem;
  }

  .exp-main--nosotros .exp-section--valores .exp-section__inner--valores {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .exp-main--nosotros .exp-section--valores .exp-section__col--blocks {
    flex-direction: column;
    gap: 1.25rem;
  }

  .exp-main--nosotros .exp-section--valores .exp-section__col--blocks .exp-card {
    min-width: 0;
    flex: 1 1 95px;
  }

  .exp-main--nosotros .exp-section--valores .exp-section__col--title .exp-section__title {
    margin-bottom: 0.25rem;
  }

  .exp-main--nosotros .exp-section--vive .exp-section__title {
    font-size: 48px;
    line-height: 58px;
  }

  .exp-main--nosotros .exp-section--vive .exp-section__body {
    width: 95%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
