/* CONTACTO */

.contact-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  margin-top: 82px;
  display: flex;
  align-items: flex-end;
  background: #211713;
  overflow: hidden;
}

.contact-hero-media,
.contact-hero-media img,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.03) brightness(0.7);
}

.contact-hero-overlay {
  background:
    linear-gradient(112deg, rgba(23, 16, 13, 0.9) 0%, rgba(43, 24, 21, 0.7) 40%, rgba(111, 58, 56, 0.34) 100%),
    radial-gradient(circle at top right, rgba(200, 164, 107, 0.16), transparent 24%);
  z-index: 1;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 107, 0.26) 0%, rgba(200, 164, 107, 0) 70%);
  pointer-events: none;
  z-index: 2;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 36px
    );
  opacity: 0.35;
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1380px;
  margin: 0 auto;
  padding: 72px 8% 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e79830;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.contact-hero-content h1 {
  width: min(820px, 100%);
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -1.5px;
  font-weight: 600;
  text-transform: none;
}

.contact-hero-content p {
  width: min(660px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
}

.hero-button-primary {
  background: #B48444;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-button-primary:hover {
  background: #c5914c;
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.contact-intro,
.contact-cards-section,
.map-section {
  padding-left: 8%;
  padding-right: 8%;
}

.contact-intro {
  padding-top: 110px;
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: end;
  background:
    radial-gradient(circle at top right, rgba(200, 164, 107, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #f3eadb 100%);
}

.contact-intro-copy h2,
.section-heading h2 {
  margin-bottom: 18px;
  color: #2b201d;
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.8px;
  text-transform: none;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #B48444;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-intro-copy p,
.section-heading p,
.contact-copy p,
.map-card-copy p {
  color: #6c605a;
  font-size: 18px;
  line-height: 1.82;
}

.contact-highlights {
  display: grid;
  gap: 16px;
}

.highlight-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(114, 47, 55, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(72, 50, 33, 0.08);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: #2b201d;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.highlight-card span {
  color: #726560;
  font-size: 15px;
  line-height: 1.65;
}

.contact-cards-section {
  padding-top: 72px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at bottom left, rgba(200, 164, 107, 0.16), transparent 22%),
    linear-gradient(180deg, #f3eadb 0%, #fffdf8 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 36px;
  border: 1px solid rgba(114, 47, 55, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(200, 164, 107, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.98) 0%, rgba(248, 240, 226, 0.94) 100%);
  box-shadow:
    0 22px 48px rgba(72, 50, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -34px;
  width: 148px;
  height: 148px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(114, 47, 55, 0.08) 0%, rgba(114, 47, 55, 0.01) 100%);
  transform: rotate(18deg);
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #722f37 0%, #c8a46b 52%, rgba(200, 164, 107, 0.12) 100%);
  opacity: 0.95;
}

.contact-card:hover,
.map-card:hover {
  transform: translateY(-10px) rotate(-0.4deg);
  box-shadow:
    0 30px 62px rgba(72, 50, 33, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  border-color: rgba(114, 47, 55, 0.18);
}

.contact-card-offset {
  transform: translateY(42px) rotate(1.1deg);
}

.contact-card-offset:hover {
  transform: translateY(32px) rotate(0.2deg);
}

.contact-icon {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background:
    linear-gradient(145deg, #fff8ee, #f4e5cc);
  border: 1px solid rgba(120, 90, 45, 0.18);
  box-shadow:
    0 18px 36px rgba(56, 38, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 0.35s ease,
    border-radius 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.contact-card:hover .contact-icon {
  transform: rotate(-8deg) scale(1.06);
  border-radius: 50%;
  box-shadow:
    0 24px 42px rgba(56, 38, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.contact-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #8b5b2b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.contact-index::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.contact-copy h3,
.map-card-copy h3 {
  margin-bottom: 16px;
  color: #2b201d;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.8px;
  text-transform: none;
}

.contact-copy h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #722f37 0%, rgba(114, 47, 55, 0.12) 100%);
}

.contact-copy p + p {
  margin-top: 6px;
}

.contact-copy a {
  color: inherit;
  transition: color 0.3s ease;
}

.contact-copy a:hover {
  color: #722f37;
}

.map-section {
  padding-top: 0;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #fffdf8 0%, #efe4d0 100%);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.map-card {
  padding: 24px;
  border: 1px solid rgba(114, 47, 55, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(72, 50, 33, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.map-card-copy {
  margin-bottom: 22px;
}

.map-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #B48444;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.map-frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(120, 90, 45, 0.16);
  background:
    linear-gradient(145deg, #f5e6cc 0%, #fffaf2 52%, #ead7b5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 34px rgba(72, 50, 33, 0.08);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(114, 47, 55, 0.18);
  border-radius: 22px;
  pointer-events: none;
}

.map-frame::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 68px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(114, 47, 55, 0.88) 0%, rgba(200, 164, 107, 0.86) 100%);
  box-shadow: 0 8px 18px rgba(72, 50, 33, 0.12);
  pointer-events: none;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
  filter: contrast(1.02) saturate(0.92);
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #B48444;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.map-button:hover {
  transform: translateY(-3px);
  background: #c5914c;
  box-shadow: 0 14px 28px rgba(114, 47, 55, 0.2);
}

.footer-country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-flag {
  width: 18px;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  width: 34px;
  height: 26px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #222;
  transition: 0.35s ease;
}

.menu-toggle:hover {
  transform: none;
}

@media (max-width: 1360px) {
  .contact-hero-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .contact-intro,
  .contact-cards-section,
  .map-section {
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 1200px) {
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .contact-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 18px;
    right: 18px;
    width: min(360px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    padding: 86px 26px 32px;
    background: #fffdf8;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    border: 1px solid rgba(114, 47, 55, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(33, 18, 12, 0.16);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px) scale(0.98);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
    z-index: 1500;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
  }
}

@media (max-width: 992px) {
  .site-header {
    height: 74px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .logo img {
    width: 115px;
  }

  .contact-hero {
    min-height: calc(88vh - 74px);
    margin-top: 74px;
  }

  .contact-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-offset,
  .contact-card-offset:hover {
    transform: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .logo img {
    width: 100px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    margin-right: 14px;
    background: #722f37;
    border: 1px solid rgba(114, 47, 55, 0.18);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(114, 47, 55, 0.18);
    z-index: 3000;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.3);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    top: 68px;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    gap: 14px;
    padding: 20px 22px 28px;
    background: #fff;
    border: none;
    border-top: 1px solid rgba(114, 47, 55, 0.08);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 35px rgba(33, 18, 12, 0.08);
    transform: translateY(-12px);
  }

  .main-nav a {
    position: relative;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #2b201d;
  }

  .main-nav a::after {
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #722f37;
    transform: none;
  }

  .contact-hero {
    min-height: 620px;
    margin-top: 68px;
  }

  .contact-hero-content {
    padding: 28px 24px 24px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .contact-hero-content h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .contact-hero-content p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .contact-intro,
  .contact-cards-section,
  .map-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-intro {
    padding-top: 84px;
    padding-bottom: 38px;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-intro-copy p,
  .section-heading p,
  .contact-copy p,
  .map-card-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .contact-cards-section,
  .map-section {
    padding-bottom: 84px;
  }

  .contact-card {
    padding: 24px 20px 28px;
  }

  .contact-copy h3,
  .map-card-copy h3 {
    font-size: 25px;
  }

  .map-card {
    padding: 18px;
    border-radius: 28px;
  }

  .map-frame {
    height: 340px;
    padding: 12px;
    border-radius: 24px;
  }

  .map-button {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-link {
    justify-content: center;
  }

  .footer-socials {
    align-items: center;
  }

  .footer-country {
    justify-content: center;
  }

  .age-box {
    width: 92%;
    padding: 38px 24px;
  }

  .age-box img {
    width: 140px;
  }

  .age-box p {
    font-size: 17px;
  }

  .age-buttons {
    flex-direction: column;
  }

  .age-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 560px;
  }

  .contact-hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-intro,
  .contact-cards-section,
  .map-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-hero-content h1 {
    font-size: 29px;
  }

  .hero-button {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 12px;
  }

  .contact-intro-copy h2,
  .section-heading h2 {
    font-size: 28px;
  }

  .map-frame {
    height: 280px;
  }

  .contact-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
  }

  #backToTop {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding: 0 14px;
  }

  .logo img {
    width: 92px;
  }

  .cart {
    font-size: 13px;
  }

  .cart-icon {
    width: 30px;
    height: 30px;
  }

  .main-nav {
    padding: 18px 16px 24px;
  }

  .menu-toggle {
    margin-right: 10px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .contact-hero-content h1 {
    font-size: 26px;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .section-kicker {
    letter-spacing: 1.6px;
  }
}