/* =========================================================
   RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #120804;
  color: #fff7ea;
  overflow-x: hidden;
}

/* =========================================================
   VARIABLES
========================================================= */
:root {
  --wood-dark: #1b0d08;
  --wood-mid: #2a140d;
  --brown: #4a2315;
  --red: #b3130f;
  --red-dark: #7f0c0a;
  --gold: #ffbf42;
  --cream: #fff0d7;
  --muted: #d9b98c;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --header-h: 88px;
  --container: 1280px;
}

/* =========================================================
   BASE
========================================================= */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   HEADER
========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: linear-gradient(rgba(8, 4, 2, 0.58), rgb(0 0 0 / 80%)),
    url(../img/madera.png) center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 210, 140, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 231, 195, 0.08),
    inset 0 -8px 18px rgba(0, 0, 0, 0.18), 0 10px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04),
    transparent 22%,
    transparent 74%,
    rgba(0, 0, 0, 0.22)
  );
  pointer-events: none;
}

.header__container {
  width: min(100% - 40px, 1400px);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 60px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 16px;
}

.nav__link {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #f6e2c6;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav__link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: #ffffff;
}

.header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  background: linear-gradient(180deg, #ea1f18 0%, #b90f0c 100%);
  color: #fff7ef;
  font-weight: 900;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(92, 5, 4, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 24px rgba(92, 5, 4, 0.45);
  filter: brightness(1.05);
}

/* =========================================================
   HAMBURGER
========================================================= */
.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1400;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  position: absolute;
  width: 28px;
  height: 2.5px;
  background: #fff0d7;
  border-radius: 10px;
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hamburger span:nth-child(1) {
  top: 16px;
}

.hamburger span:nth-child(2) {
  top: 24px;
}

.hamburger span:nth-child(3) {
  top: 32px;
}

.hamburger.active span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: linear-gradient(rgba(8, 3, 2, 0.9), rgba(8, 3, 2, 0.95)),
    url("../img/madera.png") center/cover no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 120px 28px 40px;
  position: relative;
}

.mobile-link {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8e7cd;
  opacity: 0;
  transform: translateY(18px);
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.35s ease;
}

.mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-menu.active .mobile-link:nth-child(2) {
  transition-delay: 0.14s;
}
.mobile-menu.active .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-link:nth-child(4) {
  transition-delay: 0.26s;
}
.mobile-menu.active .mobile-cta {
  transition-delay: 0.34s;
}

.mobile-link.active {
  color: var(--gold);
  position: relative;
  padding-left: 22px;
}

.mobile-link.active::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
}

.mobile-cta {
  margin-top: 14px;
  width: fit-content;
  min-width: 240px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #d71a15 0%, #98100d 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================================
   BRAND TEXT (THE JUNKO)
========================================================= */
.header__brand {
  margin-left: 10px;

  font-family: "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;

  font-size: 1.6rem; /* 🔥 ajustable */
  line-height: 1;
  letter-spacing: -0.02em;

  color: var(--cream);

  text-shadow: 0 3px 0 rgba(73, 32, 10, 0.9), 0 6px 12px rgba(0, 0, 0, 0.35);
}

.header__brand span {
  color: var(--gold);
}

/* opcional: hacerlo más pro en mobile */
@media (max-width: 640px) {
  .header__brand {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 70px 0 60px;
  background: linear-gradient(rgba(10, 5, 3, 0.34), rgba(10, 5, 3, 0.56)),
    url("../img/madera.png") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 25% 35%,
      rgba(255, 160, 65, 0.08),
      transparent 28%
    ),
    radial-gradient(circle at 70% 25%, rgba(255, 140, 0, 0.06), transparent 26%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 12px;
}

.hero__text {
  max-width: 620px;
  padding-top: 10px;
}

.hero__title {
  font-family: "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--cream);
  font-size: clamp(3rem, 7vw, 6.4rem);
  text-shadow: 0 4px 0 rgba(73, 32, 10, 0.9), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero__title span {
  display: inline-block;
  color: var(--gold);
  font-size: 1.1em;
  text-shadow: 0 4px 0 rgba(123, 59, 0, 0.95), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 16px;
  background: linear-gradient(
    180deg,
    rgba(178, 27, 20, 0.95),
    rgba(124, 12, 9, 0.95)
  );
  color: #ffe7cb;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

.hero__btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  background: linear-gradient(180deg, #d81b16 0%, #960d0a 100%);
  color: #fff9f0;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 12px 26px rgba(84, 10, 7, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero__btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 16px 32px rgba(84, 10, 7, 0.5);
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}

.hero__image img {
  width: min(100%, 840px);
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.3))
    drop-shadow(0 10px 60px rgba(255, 125, 0, 0.08));
  animation: floatingCachapa 4.5s ease-in-out infinite;
  transform-origin: center;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes floatingCachapa {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .nav {
    gap: 22px;
  }

  .nav__link {
    font-size: 0.84rem;
  }

  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero__image {
    min-height: 520px;
  }
}

@media (max-width: 920px) {
  .nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header__container {
    width: min(100% - 24px, 1400px);
    min-height: 78px;
  }

  .header__logo img {
    width: 72px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    min-height: auto;
  }

  .hero__text {
    max-width: 100%;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    margin-top: 18px;
  }

  .hero__btn {
    margin-top: 20px;
  }

  .hero__image {
    min-height: auto;
    padding-bottom: 16px;
  }

  .hero__image img {
    width: min(100%, 650px);
  }
}

@media (max-width: 640px) {
  .header__container {
    width: min(100% - 20px, 1400px);
    min-height: 72px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 32px;
    background-position: center;
  }

  .hero__container {
    width: min(100% - 24px, 1280px);
  }

  .hero__title {
    font-size: clamp(2.5rem, 13vw, 4.3rem);
    line-height: 0.92;
  }

  .hero__subtitle {
    font-size: 0.82rem;
    padding: 10px 12px;
    text-align: center;
  }

  .hero__btn {
    min-height: 50px;
    padding: 0 24px;
    font-size: 0.9rem;
  }

  .mobile-menu__content {
    padding: 110px 24px 32px;
  }

  .mobile-link {
    font-size: 1.6rem;
  }

  .mobile-cta {
    width: 100%;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .header__container {
    min-height: 68px;
  }

  .header__logo img {
    width: 62px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .hero__image img {
    width: 112%;
    max-width: 112%;
    margin-left: -6%;
  }
}

/* =========================================================
   HERO FEATURES - CENTRADO, NO FULL WIDTH
========================================================= */
.hero__features {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -20px;
  padding: 0 32px; /* espacio lateral para que no toque bordes */
}

.hero__features-container {
  width: min(100%, 1680px); /* controla el ancho máximo */
  margin: 0 auto; /* centra */
  min-height: 160px;
  padding: 30px 80px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-radius: 15px;

  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35)),
    url("/static/img/madera-r.png") center/cover no-repeat;

  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.05),
    inset 0 -12px 20px rgba(0, 0, 0, 0.25);
}

/* ================= ITEM ================= */
.feature {
  text-align: center;
  padding: 0 30px;
  position: relative;
}

/* separadores */
.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 230, 180, 0.35);
}

/* ================= ICONOS ================= */
.feature__icon {
  margin-bottom: 10px;
  color: #f5d28b;
}

.feature__icon svg {
  width: 50px;
  height: 50px;
}

/* ================= TEXTO ================= */
.feature__title {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffe8c6;
  margin-bottom: 8px;
}

.feature__text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #f5d1ac;
  max-width: 280px;
  margin: 0 auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .hero__features {
    padding: 0 24px;
  }

  .hero__features-container {
    padding: 26px 40px;
  }

  .feature {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .hero__features {
    padding: 0 20px;
  }

  .hero__features-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .feature {
    padding: 20px 0;
  }

  .feature:not(:last-child)::after {
    display: none;
  }

  .feature:not(:last-child) {
    border-bottom: 1px solid rgba(255, 220, 180, 0.2);
  }
}

@media (max-width: 640px) {
  .hero__features {
    padding: 0 12px;
  }

  .hero__features-container {
    min-height: auto;
    padding: 22px 16px;
  }

  .feature__icon svg {
    width: 42px;
    height: 42px;
  }

  .feature__title {
    font-size: 0.9rem;
  }

  .feature__text {
    font-size: 0.7rem;
  }
}

/* =========================================================
   ABOUT
========================================================= */
.about {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(rgba(8, 4, 2, 0.72), rgba(8, 4, 2, 0.78)),
    url("../img/madera.png") center/cover no-repeat;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 191, 66, 0.06),
      transparent 25%
    ),
    radial-gradient(circle at 80% 70%, rgba(179, 19, 15, 0.12), transparent 28%);
  pointer-events: none;
}

.about__container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 220, 180, 0.08);
}

.about__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 40%),
    linear-gradient(to right, rgba(0, 0, 0, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.about__image {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.about__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d71a15 0%, #98100d 100%);
  color: #fff8ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(67, 7, 6, 0.4);
}

.about__badge-small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.about__badge strong {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ================= CONTENT ================= */
.about__content {
  max-width: 640px;
}

.about__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about__title {
  font-family: "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  text-shadow: 0 4px 0 rgba(73, 32, 10, 0.9), 0 8px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 22px;
}

.about__title span {
  display: inline-block;
  color: var(--gold);
  text-shadow: 0 4px 0 rgba(123, 59, 0, 0.95), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.about__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #f1dcc1;
  margin-bottom: 14px;
  max-width: 600px;
}

/* ================= HIGHLIGHTS ================= */
.about__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about__highlight {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(26, 10, 6, 0.58);
  border: 1px solid rgba(255, 218, 174, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.about__highlight-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d71a15 0%, #98100d 100%);
  color: #f5d28b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 10px 18px rgba(72, 8, 7, 0.35);
}

.about__highlight-icon svg {
  width: 34px;
  height: 34px;
}

.about__highlight h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffe8c6;
  margin-bottom: 6px;
}

.about__highlight p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #f2d3ad;
}

/* ================= CTA ================= */
.about__actions {
  margin-top: 28px;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  background: linear-gradient(180deg, #d81b16 0%, #960d0a 100%);
  color: #fff9f0;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 12px 26px rgba(84, 10, 7, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.about__btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 16px 32px rgba(84, 10, 7, 0.5);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .about {
    padding: 90px 0;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__image {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 70px 0;
  }

  .about__container {
    width: min(100% - 24px, 1280px);
    gap: 26px;
  }

  .about__title {
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 0.95;
  }

  .about__text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .about__highlight {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .about__highlight-icon {
    width: 56px;
    height: 56px;
  }

  .about__highlight-icon svg {
    width: 30px;
    height: 30px;
  }

  .about__highlight h3 {
    font-size: 0.9rem;
  }

  .about__highlight p {
    font-size: 0.84rem;
  }

  .about__btn {
    width: 100%;
  }

  .about__badge {
    left: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .about__badge strong {
    font-size: 1.25rem;
  }
}

/* =========================================================
   GALLERY
========================================================= */
/* =========================================================
   GALLERY WOW
========================================================= */
.gallery-wow {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(rgba(8, 4, 2, 0.82), rgba(8, 4, 2, 0.86)),
    url("../img/madera.png") center/cover no-repeat;
  overflow: hidden;
}

.gallery-wow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(255, 191, 66, 0.07),
      transparent 24%
    ),
    radial-gradient(circle at 88% 76%, rgba(179, 19, 15, 0.14), transparent 28%);
  pointer-events: none;
}

.gallery-wow__container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

/* ================= HEADER ================= */
.gallery-wow__header {
  max-width: 760px;
  margin-bottom: 34px;
}

.gallery-wow__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-wow__title {
  font-family: "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  text-shadow: 0 4px 0 rgba(73, 32, 10, 0.9), 0 8px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}

.gallery-wow__title span {
  color: var(--gold);
  text-shadow: 0 4px 0 rgba(123, 59, 0, 0.95), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.gallery-wow__text {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f1dcc1;
}

/* ================= VIEWPORT ================= */
.gallery-wow__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 12px 0 18px;
}

.gallery-wow__viewport::-webkit-scrollbar {
  display: none;
}

/* ================= TRACK ================= */
.gallery-wow__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px 2px 18px;
  align-items: stretch;
}

/* ================= CARD ================= */
.gallery-wow__card {
  position: relative;
  width: 320px;
  height: 420px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 185, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(0) scale(1);
  transition: transform 0.45s ease, box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.gallery-wow__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.45s ease;
  filter: saturate(1.02) contrast(1.02);
}

.gallery-wow__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.3) 42%,
      rgba(0, 0, 0, 0.1) 62%,
      transparent 78%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.14), transparent 35%);
  z-index: 1;
}

.gallery-wow__content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.gallery-wow__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(146, 12, 9, 0.88);
  color: #fff0d7;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.gallery-wow__card-title {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff1dd;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  margin-bottom: 10px;
}

.gallery-wow__card-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #f5dcc0;
  max-width: 260px;
}

/* ================= HOVER ================= */
.gallery-wow__card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 223, 185, 0.14);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gallery-wow__card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

/* ================= CONTROLES LATERALES ================= */
.gallery-wow__controls {
  position: absolute;
  top: 58%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}

.gallery-wow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff2de;
  background: linear-gradient(180deg, #d81b16 0%, #960d0a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 16px 28px rgba(84, 10, 7, 0.4);
  transition: transform 0.3s ease, filter 0.25s ease, box-shadow 0.25s ease;
  pointer-events: auto;
}

#galleryPrev {
  left: -30px;
}

#galleryNext {
  right: -30px;
}

.gallery-wow__nav:hover {
  transform: translateY(-50%) scale(1.1);
  filter: brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 22px 40px rgba(84, 10, 7, 0.5);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .gallery-wow {
    padding: 90px 0;
  }

  .gallery-wow__card {
    width: 280px;
    height: 380px;
  }

  .gallery-wow__card-title {
    font-size: 1.32rem;
  }

  .gallery-wow__card-text {
    font-size: 0.84rem;
  }

  #galleryPrev {
    left: -18px;
  }

  #galleryNext {
    right: -18px;
  }

  .gallery-wow__nav {
    width: 54px;
    height: 54px;
    font-size: 1.9rem;
  }
}

@media (max-width: 640px) {
  .gallery-wow {
    padding: 70px 0;
  }

  .gallery-wow__container {
    width: min(100% - 24px, 1280px);
  }

  .gallery-wow__title {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .gallery-wow__text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .gallery-wow__track {
    gap: 16px;
    padding-bottom: 12px;
  }

  .gallery-wow__card {
    width: 240px;
    height: 320px;
    border-radius: 22px;
  }

  .gallery-wow__content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .gallery-wow__badge {
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 10px;
    font-size: 0.64rem;
  }

  .gallery-wow__card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .gallery-wow__card-text {
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .gallery-wow__controls {
    display: none;
  }
}

/* =========================================================
   LIGHTBOX
========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* IMAGEN */
.lightbox__img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;

  transform: scale(0.9);
  transition: 0.3s ease;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

/* BOTÓN CERRAR */
.lightbox__close {
  position: absolute;
  top: 30px;
  right: 40px;

  font-size: 3rem;
  color: white;
  cursor: pointer;

  transition: 0.2s;
}

.lightbox__close:hover {
  transform: scale(1.2);
}
.gallery-wow__overlay,
.gallery-wow__content {
  pointer-events: none;
}

.gallery-wow__card {
  cursor: pointer;
}
/* MOBILE */
@media (max-width: 640px) {
  .lightbox__img {
    max-width: 95%;
    max-height: 80%;
  }

  .lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
  }
}

/* =========================================================
   PIDE AQUI
========================================================= */
.order-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(rgba(10, 8, 7, 0.88), rgba(10, 8, 7, 0.92)),
    url("../img/madera.png") center/cover no-repeat;
}

.order-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(255, 184, 76, 0.09),
      transparent 26%
    ),
    radial-gradient(circle at 85% 75%, rgba(175, 26, 17, 0.18), transparent 30%);
}

.order-section__container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.order-section__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.order-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.order-section__title {
  margin: 0 0 18px;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff3e0;
  text-shadow: 0 4px 0 rgba(73, 32, 10, 0.9), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.order-section__title span {
  color: var(--gold);
}

.order-section__text {
  max-width: 700px;
  color: #f0dcc2;
  font-size: 1rem;
  line-height: 1.7;
}

.order-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.order-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 220, 180, 0.08);
  text-decoration: none;
  color: inherit;
  background: linear-gradient(
    180deg,
    rgba(29, 15, 12, 0.95),
    rgba(12, 8, 7, 0.98)
  );
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

.order-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 185, 76, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(179, 19, 15, 0.12), transparent 35%);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.55s ease;
  z-index: 0;
}

.order-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255, 205, 126, 0.16) 0%,
    rgba(255, 205, 126, 0.06) 22%,
    transparent 55%
  );
  opacity: 0;
  transform: translate3d(-18%, -12%, 0) rotate(8deg);
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.order-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(255, 220, 180, 0.22);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 192, 120, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.order-card:hover::before {
  opacity: 1;
  transform: scale(1.03);
}

.order-card:hover::after {
  opacity: 1;
  transform: translate3d(12%, 10%, 0) rotate(8deg);
}

.order-card:hover .order-card__icon {
  transform: translateY(-4px) scale(1.06) rotate(-3deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 38px rgba(92, 12, 8, 0.48);
}

.order-card:hover .order-card__content h3 {
  transform: translateY(-2px);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.order-card:hover .order-card__arrow {
  transform: translateX(6px) scale(1.08);
  color: #ffd27b;
}

.order-card__icon {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 24px;
  background: linear-gradient(180deg, #b81d17 0%, #7d0b08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(92, 12, 8, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease, background 0.35s ease;
}

.order-card__icon img {
  width: 50px;
  height: 38px;
  object-fit: contain;
}

.order-card__icon svg {
  width: 34px;
  height: 34px;
  color: #fff7ed;
}

.order-card__icon--whatsapp {
  color: #ffffff;
}

.order-card__icon--whatsapp svg {
  width: 38px;
  height: 38px;
}

.order-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.order-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(167, 18, 14, 0.88);
  color: #fff1dd;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-card__content h3 {
  margin: 0 0 10px;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.7rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff3e2;
  transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.order-card__content p {
  margin: 0;
  color: #edd8bf;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.order-card__arrow {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.35s ease, color 0.35s ease;
}

.order-card--whatsapp {
  border: none;
  width: 100%;
  text-align: left;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

/* =========================================================
   MODAL WHATSAPP
========================================================= */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.wa-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.wa-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px 30px 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.98),
    rgba(10, 10, 10, 0.98)
  );
  border: 1px solid rgba(255, 70, 70, 0.65);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wa-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.wa-modal__close:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.12);
}

.wa-modal__header {
  margin-bottom: 24px;
}

.wa-modal__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wa-modal__title {
  margin: 0 0 10px;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff4e5;
}

.wa-modal__subtitle {
  margin: 0;
  color: #d8c8b7;
  line-height: 1.6;
}

.wa-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}

.wa-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-form__group--full {
  grid-column: 1 / -1;
}

.wa-form__group label {
  color: #ffbe3d;
  font-weight: 700;
  font-size: 0.95rem;
}

.wa-form__group input,
.wa-form__group textarea {
  width: 100%;
  border: 1.5px solid rgba(241, 45, 45, 0.95);
  border-radius: 14px;
  background: rgba(24, 24, 24, 0.96);
  color: #fff;
  padding: 16px 16px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wa-form__group input::placeholder,
.wa-form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.wa-form__group input:focus,
.wa-form__group textarea:focus {
  border-color: #ffb341;
  box-shadow: 0 0 0 4px rgba(255, 179, 65, 0.12);
}

.wa-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.wa-form__submit {
  grid-column: 1 / -1;
  min-height: 64px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #c52b27 0%, #ab2320 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 30px rgba(148, 24, 21, 0.34);
}

.wa-form__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.wa-form__submit svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .order-section__grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .order-section {
    padding: 80px 0;
  }

  .order-section__container {
    width: min(100% - 24px, 1280px);
  }

  .order-section__title {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .order-card {
    padding: 20px 18px;
    border-radius: 22px;
    min-height: auto;
    align-items: flex-start;
  }

  .order-card__icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    border-radius: 20px;
  }

  .order-card__icon img,
  .order-card__icon svg {
    width: 50px;
    height: 30px;
  }

  .order-card__icon--whatsapp svg {
    width: 32px;
    height: 32px;
  }

  .order-card__content h3 {
    font-size: 1.35rem;
  }

  .wa-modal {
    padding: 14px;
  }

  .wa-modal__dialog {
    padding: 28px 18px 20px;
    border-radius: 22px;
  }

  .wa-form {
    grid-template-columns: 1fr;
  }

  .wa-form__submit {
    min-height: 58px;
  }
}

/* =========================================================
   UBICACION
========================================================= */
.visit-section {
  position: relative;
  padding: 90px 0 110px;
  background: linear-gradient(rgba(12, 7, 6, 0.82), rgba(12, 7, 6, 0.9)),
    url("../img/madera.png") center/cover no-repeat;
  overflow: hidden;
}

.visit-section__wrap {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
}

.visit-section__panel {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(116, 16, 11, 0.9),
    rgba(63, 8, 6, 0.94)
  );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 210, 160, 0.08);
}

/* =========================================================
   HEADER (NUEVO)
========================================================= */
.visit-section__header {
  margin-bottom: 28px;
}

.visit-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.visit-section__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.visit-section__line {
  flex: 1;
  max-width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f2c47b, transparent);
}

.visit-section__title {
  margin: 0;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.9;
  color: #fff0d8;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 0 rgba(88, 37, 10, 0.9), 0 10px 25px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

/* 🔥 SPAN DESTACADO */
.visit-section__title span {
  color: var(--gold);
}

/* =========================================================
   CONTENIDO
========================================================= */
.visit-section__info {
  padding: 54px 42px;
  position: relative;
  background: linear-gradient(rgba(65, 14, 10, 0.68), rgba(65, 14, 10, 0.78)),
    url("../img/madera.png") center/cover no-repeat;
}

.visit-section__tag {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #c52219 0%, #9b140d 100%);
  border-radius: 999px 18px 999px 18px;
  box-shadow: 0 12px 26px rgba(88, 7, 4, 0.35);
}

.visit-section__tag span {
  color: #fff3e0;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visit-section__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.visit-item__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 243, 224, 0.08);
  color: #fff2dc;
}

.visit-item__icon svg {
  width: 22px;
  height: 22px;
}

.visit-item__label {
  display: block;
  margin-bottom: 4px;
  color: #f7d7a4;
  font-weight: 800;
  font-size: 0.9rem;
}

.visit-item__text {
  margin: 0;
  color: #fff5ea;
  font-size: 1.05rem;
}

.visit-section__schedule {
  margin: 30px 0 34px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(20, 8, 7, 0.24);
}

.visit-section__schedule h3 {
  margin: 0 0 12px;
  color: #ffe4ba;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-section__schedule p {
  margin: 0 0 8px;
  color: #fff3e2;
}

/* BOTON */
.visit-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #c7261c, #a7150e);
  color: #fff3e6;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(88, 10, 7, 0.32);
  transition: 0.25s;
}

.visit-section__btn:hover {
  transform: translateY(-3px);
}

/* MAPA */
.visit-section__map-frame {
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.visit-section__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .visit-section__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .visit-section__title {
    font-size: 2.4rem;
    white-space: normal;
  }

  .visit-section__line {
    max-width: 40px;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  position: relative;
  padding: 80px 0 30px;
  background: linear-gradient(rgba(12, 7, 6, 0.9), rgba(12, 7, 6, 0.95)),
    url("../img/madera.png") center/cover no-repeat;
  color: #fff3e6;
}

.footer__container {
  width: min(100% - 40px, 1300px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo img {
  width: 50px;
}

.footer__logo span {
  font-weight: 900;
  font-size: 1.2rem;
}

.footer__logo strong {
  color: var(--gold);
}

/* TEXTO */
.footer__text {
  color: #f3e3d2;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* TITULOS */
.footer h4 {
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gold);
}

/* LINKS */
.footer__links a {
  display: block;
  margin-bottom: 8px;
  color: #fff3e6;
  text-decoration: none;
  transition: 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* CONTACTO */
.footer__contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* REDES */
.footer__icons {
  display: flex;
  gap: 12px;
}

.footer__icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: 0.3s;
}

.footer__icons a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
}

.footer__icons svg {
  width: 20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__icons {
    justify-content: center;
  }
}

/* =========================================================
   REDES SOCIALES
========================================================= */
.social-showcase {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(rgba(10, 8, 7, 0.9), rgba(10, 8, 7, 0.95)),
    url("../img/madera.png") center/cover no-repeat;
}

.social-showcase__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 185, 76, 0.05),
      transparent 28%
    ),
    radial-gradient(circle at 88% 78%, rgba(190, 26, 20, 0.08), transparent 30%);
}

.social-showcase__container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

/* HEADER */
.social-showcase__header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.social-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-showcase__title {
  margin: 0 0 16px;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff7ed;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 6px 18px rgba(0, 0, 0, 0.4);
}

.social-showcase__title span {
  color: var(--gold);
}

.social-showcase__text {
  margin: 0 auto;
  max-width: 700px;
  color: #f5e6d3;
  font-size: 1rem;
  line-height: 1.7;
}

/* GRID */
.social-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* =========================================================
   CARD
========================================================= */
.social-card {
  position: relative;
  min-height: 360px;
  padding: 26px 22px 22px;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: #fff5e8;
  background: linear-gradient(
    180deg,
    rgba(35, 14, 10, 0.92),
    rgba(10, 6, 5, 0.96)
  );
  border: 1px solid rgba(255, 220, 180, 0.08);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
  isolation: isolate;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 185, 76, 0.04), transparent 38%),
    linear-gradient(315deg, rgba(179, 19, 15, 0.06), transparent 42%);
  pointer-events: none;
  z-index: 0;
}

.social-card__glow {
  position: absolute;
  inset: -35%;
  background: radial-gradient(
    circle,
    rgba(255, 205, 126, 0.14) 0%,
    rgba(255, 205, 126, 0.05) 22%,
    transparent 55%
  );
  opacity: 0;
  transform: translate3d(-16%, -12%, 0) rotate(8deg);
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.social-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 220, 180, 0.2);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 192, 120, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-card:hover .social-card__glow {
  opacity: 1;
  transform: translate3d(12%, 10%, 0) rotate(8deg);
}

.social-card:hover .social-card__icon {
  transform: translateY(-4px) scale(1.04);
}

.social-card:hover .social-card__arrow {
  transform: translateX(6px) scale(1.08);
}

/* CAPAS */
.social-card__top,
.social-card__content,
.social-card__footer {
  position: relative;
  z-index: 2;
}

/* TOP */
.social-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.social-card__icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 24px;
  background: linear-gradient(180deg, #b81d17 0%, #7d0b08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(92, 12, 8, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.social-card__icon svg {
  width: 34px;
  height: 34px;
  color: #fff7ed;
}

.social-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(167, 18, 14, 0.92);
  color: #fff1dd;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 12px;
}

/* =========================================================
   CONTENIDO
========================================================= */
.social-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.social-card__content h3 {
  margin: 0;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 1.4rem;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff7ed;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 6px 14px rgba(0, 0, 0, 0.35);
}

.social-card__content h3 span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  position: relative;
  transition: all 0.3s ease;
}

.social-card__content h3 span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 190, 80, 0.4), transparent 70%);
  filter: blur(10px);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.social-card:hover .social-card__content h3 span {
  text-shadow: 0 0 10px rgba(255, 190, 80, 0.4),
    0 0 20px rgba(255, 190, 80, 0.2);
}

.social-card:hover .social-card__content h3 span::after {
  opacity: 1;
}

.social-card__content p {
  margin: 0;
  color: #f5e6d3;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FOOTER */
.social-card__footer {
  margin-top: 20px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-card__handle {
  color: #ffe2b8;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.social-card__arrow {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.35s ease, color 0.35s ease;
}

/* HOVERS ESPECIFICOS */
.social-card--instagram:hover .social-card__icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 38px rgba(180, 45, 120, 0.34);
}

.social-card--whatsapp:hover .social-card__icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 38px rgba(37, 211, 102, 0.28);
}

.social-card--tiktok:hover .social-card__icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 38px rgba(255, 255, 255, 0.14);
}

.social-card--phone:hover .social-card__icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 38px rgba(255, 185, 76, 0.28);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .social-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .social-showcase {
    padding: 80px 0;
  }

  .social-showcase__container {
    width: min(100% - 24px, 1280px);
  }

  .social-showcase__grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .social-card__top {
    margin-bottom: 18px;
  }

  .social-card__icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    border-radius: 20px;
  }

  .social-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .social-card__badge {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.74rem;
    margin-top: 10px;
  }

  .social-card__content h3 {
    font-size: 1.22rem;
    line-height: 1.04;
  }

  .social-card__content h3 span {
    margin-top: 3px;
  }

  .social-card__content p {
    font-size: 0.92rem;
  }
}

/* BOTTOM */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #d8c5b0;
}
.footer__bottom a img {
  width: auto;
  height: 45px;
  margin-right: 5px;
}

@media (max-width: 920px) {
  .footer__bottom {
    flex-direction: column;
  }
  .footer__bottom a img {
    margin-bottom: 12px;
    margin-right: 0px;
  }
}
