:root {
  --dorado-tenue: #F5F3E7;
  --dorado: #9E6B1D;
  --dorado-oscuro: #794f11;
  --negro-tenue: #131313;
  --amarillo-dorado: #D4AF35;
  --sombra-tenue: 0 2px 10px rgba(0, 0, 0, 0.08);
  --texto-claro: #F1F5F9;
  --indicador-inactivo: #8B8B8B;
  --section-space-desktop: 96px;
  --section-space-mobile: 56px;
  --bg-body: #F9F9F8;
  --borde-club-card: #CCBEA5;
}

@font-face {
  font-family: "Newsreader";
  src: url("./fonts/Newsreader_60pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Newsreader";
  src: url("./fonts/Newsreader_60pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Newsreader", serif;
  background-color: var(--bg-body);
}

.section-space {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.site-header {
  position: relative;
  z-index: 1050;
}

.site-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-navbar.is-scrolled {
  position: fixed;
  background: var(--dorado);
  box-shadow: var(--sombra-tenue);
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--texto-claro);
  font-size: 14px;
  font-weight: 500;
  padding-right: 12px;
  padding-left: 12px;
  border-bottom: 1px solid transparent;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--dorado);
  border-bottom-color: var(--dorado);
}

.site-navbar.is-scrolled .navbar-nav .nav-link:hover,
.site-navbar.is-scrolled .navbar-nav .nav-link:focus {
  color: var(--texto-claro);
  border-bottom-color: var(--dorado-tenue);
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--dorado);
  border-bottom-color: var(--dorado);
}

.site-navbar.is-scrolled .navbar-nav .active>.nav-link,
.site-navbar.is-scrolled .navbar-nav .nav-link.active {
  color: var(--dorado-tenue);
  border-bottom-color: var(--dorado-tenue);
}

.site-navbar.is-scrolled .btn-custom-solid {
  border-color: var(--dorado-tenue);
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-custom:hover,
.btn-custom:focus {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--sombra-tenue);
}

.btn-custom-solid {
  background: var(--dorado);
  color: var(--dorado-tenue);
}

.btn-custom-solid:hover,
.btn-custom-solid:focus {
  background: var(--dorado);
  color: var(--dorado-tenue);
}

.btn-custom-outline {
  background: transparent;
  color: var(--dorado-tenue);
  border-color: var(--dorado-tenue);
}

.btn-custom-outline:hover,
.btn-custom-outline:focus {
  background: transparent;
  color: var(--dorado-tenue);
  border-color: var(--dorado-tenue);
}

.hero-slider-wrap {
  position: relative;
}

.hero-content--motion .hero-motion-child {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero-content--motion.is-hero-ready .hero-motion-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-content--motion.is-hero-ready .hero-motion-child:nth-child(1) {
  transition-delay: 0.06s;
}

.hero-content--motion.is-hero-ready .hero-motion-child:nth-child(2) {
  transition-delay: 0.14s;
}

.hero-content--motion.is-hero-ready .hero-motion-child:nth-child(3) {
  transition-delay: 0.22s;
}

.hero-content--motion.is-hero-ready .hero-motion-child:nth-child(4) {
  transition-delay: 0.3s;
}

.hero-content--motion.is-hero-ready .hero-motion-child:nth-child(5) {
  transition-delay: 0.38s;
}

.reveal-section {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal-section.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {

  .hero-content--motion .hero-motion-child,
  .reveal-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.bg-soft {
  background-color: transparent;
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-slide {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 0;
  padding-bottom: 0;
}

.bg-cover-1 {
  background-image: url("./img/bg-cover-1.png");
}

.bg-cover-2 {
  background-image: url("./img/bg-cover-2.png");
}

.bg-cover-3 {
  background-image: url("./img/bg-cover-3.png");
}

.hero-content {
  max-width: 620px;
}

.label-pill {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dorado-tenue);
  background: var(--dorado);
  border-radius: 50px;
  padding: 6px 14px 2px 14px;
  margin-bottom: 14px;
}

.display-title {
  font-size: 50px;
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: 14px;
}

.display-title span {
  color: var(--amarillo-dorado);
  font-style: italic;
}

.text-lead {
  color: var(--texto-claro);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.text-body-custom {
  color: var(--texto-claro);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 510px;
  margin-bottom: 24px;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.custom-indicators {
  margin-bottom: 28px;
}

.custom-indicators li {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  border: 0;
  background-color: var(--indicador-inactivo);
  opacity: 1;
  margin-left: 6px;
  margin-right: 6px;
}

.custom-indicators .active {
  background-color: var(--amarillo-dorado);
}

.section-title {
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
  color: var(--negro-tenue);
  margin-bottom: 22px;
}

.section-title span {
  color: var(--dorado);
  font-style: italic;
}

.section-text {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--negro-tenue);
  max-width: 560px;
  margin-bottom: 28px;
}

.club-what-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--sombra-tenue);
}

.club-what .section-text {
  max-width: none;
}

.club-what-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.club-what-foot-icon {
  flex-shrink: 0;
  color: var(--dorado);
  font-size: 28px;
  line-height: 1;
}

.club-what-foot-label {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--dorado);
}

.club-group-modal .modal-content {
  border: 1px solid rgba(158, 107, 29, 0.3);
  border-radius: 12px;
  box-shadow: var(--sombra-tenue);
  background: linear-gradient(165deg,
      rgba(245, 243, 231, 0.95) 0%,
      #fffef9 42%,
      #ffffff 100%);
}

.club-group-modal .modal-header {
  align-items: flex-start;
  border-bottom: none;
  padding-bottom: 4px;
  margin-bottom: 0;
}

.club-group-modal .modal-body {
  padding-top: 6px;
}

.club-group-modal-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--dorado);
  padding-right: 12px;
  margin-bottom: 0;
}

.club-group-modal-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--negro-tenue);
}

.club-group-modal-text p {
  margin-bottom: 0.85rem;
}

.club-group-modal-text p:last-child {
  margin-bottom: 0;
}

.club-group-modal-figure {
  margin: 1.1rem 0 0;
  text-align: left;
}

.club-group-modal-img {
  display: block;
  max-width: min(100%, 480px);
  width: auto;
  height: auto;
  max-height: min(420px, 55vh);
  object-fit: contain;
  object-position: left center;
  margin: 0;
}

@media (max-width: 575.98px) {
  .club-group-modal-title {
    font-size: 22px;
  }

  .club-group-modal-img {
    max-width: 100%;
  }
}

.block-events-fluid {
  background-color: transparent;
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.events-section-title {
  text-align: left;
  margin-bottom: 12px;
}

.events-section-title span {
  color: var(--negro-tenue);
  font-style: italic;
}

.block-events .events-section-lead {
  max-width: none;
  margin-bottom: 0;
}

.events-intro {
  margin-bottom: 28px;
}

.events-calendar-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dorado);
  text-decoration: none;
  white-space: nowrap;
}

.events-calendar-link:hover,
.events-calendar-link:focus {
  color: var(--dorado);
  text-decoration: none;
  opacity: 0.88;
}

.event-card {
  background-color: var(--dorado);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card-visual {
  position: relative;
  margin: 0;
}

.event-card-img {
  display: block;
  width: 100%;
  height: auto;
}

.event-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dorado-tenue);
  background-color: var(--dorado);
  border-radius: 5px;
  padding: 5px 10px;
}

.event-card-body {
  padding: 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.event-card-date {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin: 0 0 8px;
}

.event-card-name {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin: 0 0 14px;
}

.event-card-btn {
  width: 100%;
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
}

.events-page-heading {
  margin-bottom: 10px;
}

.events-page-title-accent {
  width: 72px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--dorado);
  margin-bottom: 28px;
}

.events-page .event-card {
  box-shadow: var(--sombra-tenue);
}

.events-page .event-card-badge {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dorado-tenue);
  background-color: var(--dorado);
  border-radius: 5px;
  padding: 5px 10px;
}

.events-page .event-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--dorado-tenue);
  margin: 0 0 10px;
}

.events-page .event-card-meta i {
  font-size: 14px;
  color: var(--dorado-tenue);
}

.events-page .event-card-name {
  font-size: 20px;
  margin-bottom: 10px;
}

.events-page .event-card-desc {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--dorado-tenue);
  margin: 0 0 16px;
  flex: 1 1 auto;
}

.events-page .event-card-btn {
  border-color: var(--dorado-tenue);
  color: var(--dorado-tenue);
}

.events-page .event-card-btn:hover,
.events-page .event-card-btn:focus {
  border-color: var(--dorado-tenue);
  color: var(--dorado-tenue);
  background-color: rgba(245, 243, 231, 0.12);
}

.events-page-placeholder {
  font-family: "Newsreader", serif;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  font-style: italic;
  color: #aaaaaa;
  text-align: center;
  margin: 0;
  padding: 24px 12px;
}

.event-formats-fluid {
  background-color: var(--dorado);
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.event-formats-heading {
  color: var(--dorado-tenue);
  margin-bottom: 14px;
}

.event-formats-heading span {
  color: var(--dorado-tenue);
  font-style: italic;
}

.event-formats-lead {
  color: var(--dorado-tenue);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.event-formats-grid {
  margin-top: 28px;
}

.event-format-card {
  background: #a48b65;
  border: 1px solid rgba(245, 243, 231, 0.5);
  border-radius: 10px;
  padding: 24px 18px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-format-card:hover,
.event-format-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--sombra-tenue);
}

.event-format-icon {
  display: block;
  font-size: 36px;
  line-height: 1;
  color: var(--dorado-tenue);
  margin: 0 auto 14px;
}

.event-format-name {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin-bottom: 10px;
}

.event-format-text {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--dorado-tenue);
  margin-bottom: 0;
}

.event-single-hero {
  padding-bottom: 84px;
}

.event-single-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(158, 107, 29, 0.12);
  color: var(--dorado);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-single-card,
.event-single-info-card,
.event-single-flyer-card {
  background: #fff;
  border: 1px solid rgba(158, 107, 29, 0.16);
  border-radius: 18px;
  box-shadow: var(--sombra-tenue);
  overflow: hidden;
}

.event-single-cover-wrap {
  margin: 0;
}

.event-single-cover {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.event-single-body {
  padding: 28px;
}

.event-single-section-title {
  margin-bottom: 10px;
}

.event-single-divider {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: var(--dorado);
  margin-bottom: 24px;
}

.event-single-description {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Newsreader", serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--negro-tenue);
}

.event-single-sidebar {
  display: grid;
  gap: 24px;
}

.event-single-info-card,
.event-single-flyer-card {
  padding: 28px;
}

.event-single-info-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dorado);
  margin-bottom: 24px;
}

.event-single-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(158, 107, 29, 0.14);
}

.event-single-info-item:last-of-type {
  margin-bottom: 0;
}

.event-single-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dorado);
  color: var(--dorado-tenue);
  font-size: 17px;
}

.event-single-info-label {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dorado);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.event-single-info-value {
  font-size: 19px;
  line-height: 1.5;
  color: var(--negro-tenue);
  margin-bottom: 0;
}

.event-single-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.event-single-action-btn {
  width: 100%;
}

.event-single-action-btn-outline {
  border-color: var(--dorado);
  color: var(--dorado);
}

.event-single-action-btn-outline:hover,
.event-single-action-btn-outline:focus {
  color: var(--dorado);
  border-color: var(--dorado);
  background: rgba(158, 107, 29, 0.08);
}

.event-single-flyer {
  width: 100%;
  display: block;
  border-radius: 12px;
}

@media (max-width: 767.98px) {

  .event-single-body,
  .event-single-info-card,
  .event-single-flyer-card {
    padding: 22px 18px;
  }

  .event-single-description,
  .event-single-info-value {
    font-size: 17px;
  }

  .event-single-info-title {
    font-size: 24px;
  }

  .event-single-info-item {
    gap: 12px;
  }
}

.event-story-fluid {
  background-color: var(--dorado-tenue);
  background-image: url("./img/bg-cover-section-3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.event-story-intro {
  margin-bottom: 0;
  padding-bottom: 48px;
}

.event-story-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--sombra-tenue);
}

.event-story-intro .section-text {
  color: var(--negro-tenue);
  max-width: none;
}

.event-story-quote {
  font-style: italic;
}

.event-story-body {
  font-style: normal;
}

.event-story-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.event-story-badge-icon {
  flex-shrink: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--dorado);
}

.event-story-badge-label {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--dorado);
}

.event-story-gallery {
  padding-top: 8px;
}

.event-story-huella-title {
  margin-bottom: 28px;
}

.event-story-huella-title span {
  color: var(--negro-tenue);
  font-style: italic;
}

.event-past-visual {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sombra-tenue);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.event-past-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(19, 19, 19, 0.82) 0%, rgba(19, 19, 19, 0.35) 45%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.event-past-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.event-past-card:hover .event-past-img,
.event-past-card:focus-within .event-past-img {
  filter: grayscale(0%);
}

.event-past-card:hover .event-past-visual,
.event-past-card:focus-within .event-past-visual {
  transform: translateY(-6px);
  box-shadow: var(--sombra-tenue);
}

.event-past-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 16px;
  z-index: 2;
  text-align: left;
}

.event-past-kicker {
  font-family: "Newsreader", serif;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amarillo-dorado);
  margin: 0 0 6px;
  -webkit-font-smoothing: antialiased;
}

.event-past-name {
  font-family: "Newsreader", serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {

  .event-past-img,
  .event-past-visual {
    transition: none;
  }
}

.section-title.text-center {
  margin-left: auto;
  margin-right: auto;
}

.social-links-row {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}

.social-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  max-width: 120px;
}

.social-link-item:hover,
.social-link-item:focus {
  text-decoration: none;
  color: inherit;
}

.social-icon-round {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--dorado);
  color: var(--dorado-tenue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-link-item:hover .social-icon-round,
.social-link-item:focus .social-icon-round {
  transform: translateY(-4px);
  box-shadow: var(--sombra-tenue);
}

.social-link-caption {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--negro-tenue);
  text-align: center;
}

.block-showcase-fluid {
  background-color: var(--bg-body);
  background-image: url("./img/bg-cover-section-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.title-phrase-italic span {
  color: var(--negro-tenue);
  font-style: italic;
}

.products-grid {
  margin-top: 28px;
  margin-bottom: 8px;
}

.product-tile-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 12px;
}

.product-tile-name {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--negro-tenue);
  margin: 0 0 6px;
}

.product-tile-price {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dorado);
  margin: 0;
}

.product-cta-row {
  text-align: center;
  margin-top: 24px;
}

.product-cta-row .btn-custom {
  display: inline-flex;
}

.block-cta-fluid {
  background-color: var(--dorado);
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.block-cta .section-title {
  color: var(--dorado-tenue);
  font-style: italic;
}

.block-cta .section-title span {
  color: var(--dorado-tenue);
  font-style: italic;
}

.block-cta .section-text {
  color: var(--dorado-tenue);
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.cta-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.footer-fluid {
  background-color: transparent;
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.footer-columns {
  align-items: flex-start;
}

.footer-brand-img {
  display: block;
  max-width: 140px;
  height: auto;
  margin-bottom: 18px;
}

.footer-lead {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--negro-tenue);
  margin: 0 0 14px;
  max-width: 340px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  font-style: italic;
  color: var(--dorado);
  margin: 0;
  max-width: 340px;
}

.footer-heading {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dorado);
  margin: 0 0 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--negro-tenue);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--dorado);
  text-decoration: none;
}

.footer-bar {
  padding-top: 24px;
  margin-top: 32px;
  border-top: 2px solid var(--dorado);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--negro-tenue);
  margin: 0;
}

.footer-credits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--negro-tenue);
}

.footer-credits-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-credits-logo-link:hover,
.footer-credits-logo-link:focus {
  opacity: 0.9;
}

.footer-credits-logo {
  display: block;
  height: 50px;
  width: auto;
}

.page-plain-hero .site-navbar {
  background: transparent;
}

.page-plain-hero .site-navbar.is-scrolled {
  background: var(--dorado);
}

.page-plain-hero .navbar-brand {
  position: relative;
}

.page-plain-hero .brand-logo-light {
  display: none;
}

.page-plain-hero .site-navbar.is-scrolled .brand-logo-dark {
  display: none;
}

.page-plain-hero .site-navbar.is-scrolled .brand-logo-light {
  display: block;
}

.page-plain-hero .navbar-dark .navbar-nav .nav-link {
  color: var(--negro-tenue);
}

.page-plain-hero .site-navbar .btn-custom-solid {
  border-color: transparent;
}

.page-plain-hero .navbar-dark .navbar-toggler {
  border-color: rgba(158, 107, 29, 0.45);
  background: rgba(158, 107, 29, 0.18);
  border-radius: 6px;
}

.page-plain-hero .site-navbar.is-scrolled .btn-custom-solid {
  border-color: var(--dorado-tenue);
}

.page-plain-hero .site-navbar.is-scrolled .navbar-nav .nav-link {
  color: var(--texto-claro);
}

.hero-static {
  min-height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 72px;
}

.who-hero {
  background-image: url("./img/bg-cover-section-2.png");
}

.who-hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.title-hero {
  font-size: 50px;
  line-height: 1.02;
  font-weight: 700;
  font-style: italic;
  color: var(--negro-tenue);
  margin-bottom: 18px;
}

.title-hero span {
  color: var(--dorado);
}

.who-hero-text {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--negro-tenue);
  margin: 0 auto;
  max-width: 720px;
}

.who-hero-text-italic {
  font-style: italic;
}

.who-hero-divider {
  display: block;
  width: 56px;
  height: 6px;
  border-radius: 4px;
  background: var(--dorado);
  margin: 16px auto 14px;
}

.who-hero-content .btn-custom {
  margin-top: 22px;
}

.who-values {
  background-color: transparent;
}

.who-values .section-title {
  margin-bottom: 20px;
}

.who-values-divider {
  width: 100%;
  height: 2px;
  background: var(--dorado);
  margin-bottom: 20px;
}

.who-values-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--dorado);
  margin-bottom: 10px;
}

.who-values-text {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--negro-tenue);
  margin-bottom: 0;
}

.who-philosophy-fluid {
  background: var(--dorado);
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.who-philosophy .section-title {
  color: var(--dorado-tenue);
  margin-bottom: 8px;
}

.who-philosophy .section-title span {
  color: var(--dorado-tenue);
  font-style: italic;
}

.who-philosophy-subtitle {
  color: var(--dorado-tenue);
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.who-philosophy-grid {
  margin-top: 24px;
}

.who-philosophy-card {
  background: #A48B65;
  border: 1px solid rgba(245, 243, 231, 0.5);
  border-radius: 10px;
  padding: 20px 18px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-philosophy-card:hover,
.who-philosophy-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--sombra-tenue);
}

.who-philosophy-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.who-philosophy-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin-bottom: 10px;
}

.who-philosophy-text {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--dorado-tenue);
  margin-bottom: 0;
}

.who-movement .section-title {
  margin-bottom: 26px;
}

.who-movement-grid {
  justify-content: center;
}

.who-movement-card {
  background: var(--dorado);
  border-radius: 10px;
  padding: 18px 14px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-movement-card:hover,
.who-movement-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--sombra-tenue);
}

.who-movement-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.who-movement-title {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dorado-tenue);
  text-align: center;
  margin-bottom: 0;
}

.who-stats-fluid {
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.who-stats .section-title {
  margin-bottom: 10px;
}

.who-stats-subtitle {
  color: var(--dorado);
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.club-join-stats .club-join-lead {
  color: var(--negro-tenue);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.club-join-stats .club-join-actions {
  margin-top: 22px;
}

.club-join-stats .who-stats-grid {
  margin-top: 36px;
}

.cta-global-fluid {
  background-color: var(--dorado);
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.cta-global .section-title,
.cta-global-title {
  color: var(--dorado-tenue);
  font-style: normal;
}

.cta-global .section-title span {
  color: var(--dorado-tenue);
  font-style: italic;
}

.cta-global .section-text,
.cta-global-text {
  color: var(--dorado-tenue);
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.cta-global-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.cta-global .btn-custom-outline {
  border-color: var(--dorado-tenue);
  color: var(--dorado-tenue);
}

.cta-global .btn-custom-outline:hover,
.cta-global .btn-custom-outline:focus {
  border-color: var(--dorado-tenue);
  color: var(--dorado-tenue);
  background-color: rgba(245, 243, 231, 0.12);
}

.who-stats-grid {
  margin-top: 24px;
}

.who-stats-item {
  text-align: center;
}

.who-stats-number {
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  color: var(--dorado);
  margin-bottom: 8px;
}

.who-stats-label {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--dorado);
  margin-bottom: 0;
}

.who-cta-club-fluid {
  background: var(--dorado);
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.who-cta-club-card {
  background: #A48B65;
  border-radius: 15px;
  border: 1px solid rgba(245, 243, 231, 0.5);
  padding: 48px 32px;
  text-align: center;
}

.who-cta-club-title {
  color: var(--dorado-tenue);
  font-style: italic;
  margin-bottom: 16px;
}

.who-cta-club-title span {
  color: var(--dorado-tenue);
  font-style: italic;
}

.who-cta-club-lead {
  color: var(--dorado-tenue);
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  margin-bottom: 24px;
}

.who-cta-club-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid-wrap {
  margin-top: 6px;
}

.gallery-item-btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.gallery-grid-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-image-modal .modal-content {
  border: 0;
  border-radius: 12px;
  background: #ffffff;
}

.gallery-modal-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-featured-fluid {
  background-color: var(--dorado-tenue);
  background-image: url("./img/bg-cover-section-3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.gallery-featured .section-title.text-center {
  margin-bottom: 42px;
}

.gallery-featured-row {
  margin-bottom: 40px;
}

.gallery-featured-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--sombra-tenue);
}

.gallery-featured-title {
  margin-bottom: 14px;
}

.gallery-featured-text {
  max-width: 620px;
  margin-bottom: 12px;
}

.gallery-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-featured-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--dorado-tenue);
  background-color: var(--dorado);
  border-radius: 50px;
  padding: 5px 12px;
}

.gallery-club-experience-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.gallery-club-experience-grid {
  margin-top: 22px;
}

.gallery-club-experience-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--sombra-tenue);
}

@media (min-width: 992px) {
  .gallery-club-experience-offset {
    margin-top: 22px;
  }
}

.gallery-momentos-fluid {
  background-color: var(--dorado-tenue);
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.gallery-momentos-heading {
  font-size: 52px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--negro-tenue);
  margin-bottom: 18px;
}

.gallery-momentos-heading span {
  color: var(--dorado);
  font-style: italic;
}

.gallery-momentos-note {
  border-left: 5px solid var(--dorado);
  padding-left: 14px;
  margin-bottom: 24px;
}

.gallery-momentos-note-text {
  margin-bottom: 0;
  max-width: 540px;
}

.gallery-momentos-cards {
  margin-top: 0;
}

.gallery-momentos-card {
  background: #EEEBDD;
  border: 1px solid rgba(158, 107, 29, 0.4);
  border-radius: 10px;
  padding: 16px 14px 14px;
  height: 100%;
}

.gallery-momentos-icon {
  color: var(--dorado);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.gallery-momentos-card-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  font-style: italic;
  color: var(--negro-tenue);
  margin: 0;
}

.souvenirs-showcase-title {
  margin-bottom: 10px;
}

.souvenirs-showcase-title span {
  color: var(--negro-tenue);
  font-style: italic;
}

.souvenirs-showcase-lead {
  max-width: 560px;
  margin-bottom: 24px;
}

.souvenir-card {
  background: var(--dorado);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.souvenir-card-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.souvenir-card-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.souvenir-card-title {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin: 0 0 10px;
}

.souvenir-card-price {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin: 0 0 14px;
}

.souvenir-card-btn {
  width: 100%;
  margin-top: auto;
  border-color: var(--dorado-tenue);
  color: var(--dorado-tenue);
}

.souvenir-card-btn:hover,
.souvenir-card-btn:focus {
  border-color: var(--dorado-tenue);
  color: var(--dorado-tenue);
  background: rgba(245, 243, 231, 0.08);
}

.souvenir-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.souvenir-control-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dorado);
  color: var(--dorado-tenue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--sombra-tenue);
}

.souvenir-control-btn:hover,
.souvenir-control-btn:focus {
  color: var(--dorado-tenue);
  text-decoration: none;
}

.souvenirs-quote .cta-global-fluid {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.souvenirs-quote-icon-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.souvenirs-quote-icon {
  color: var(--dorado-tenue);
  font-size: 24px;
  line-height: 1;
}

.souvenirs-quote-text {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--dorado-tenue);
  text-align: center;
  max-width: 980px;
  margin: 0 auto 22px;
}

.souvenirs-quote-text span {
  font-style: italic;
}

.souvenirs-quote-divider {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--dorado-tenue);
  margin: 0 auto;
}

.souvenirs-highlight-fluid {
  background-color: var(--dorado-tenue);
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 0;
  padding-bottom: 0;
}

.souvenirs-highlight-row {
  margin-bottom: 0;
}

.souvenirs-highlight-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.souvenirs-highlight-content {
  padding: 56px 48px;
}

.souvenirs-highlight-kicker {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--dorado);
  margin: 0 0 10px;
}

.souvenirs-highlight-title {
  margin-bottom: 18px;
}

.souvenirs-highlight-text {
  max-width: 620px;
  margin-bottom: 16px;
}

.souvenirs-highlight-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.souvenirs-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 7px;
}

.souvenirs-highlight-list li:last-child {
  margin-bottom: 0;
}

.souvenirs-highlight-list i {
  color: var(--dorado);
  font-size: 16px;
  line-height: 1.3;
  margin-top: 2px;
  flex-shrink: 0;
}

.souvenirs-highlight-list span {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--negro-tenue);
}

.contacto-help-title {
  margin-bottom: 28px;
}

.contacto-help-grid {
  margin-top: 0;
}

.contacto-help-card {
  background: var(--dorado);
  border-radius: 10px;
  padding: 18px 16px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contacto-help-card:hover,
.contacto-help-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--sombra-tenue);
  cursor: default;
}

.contacto-help-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--dorado-tenue);
  margin-bottom: 10px;
}

.contacto-help-card-title {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin-bottom: 8px;
}

.contacto-help-card-text {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--dorado-tenue);
  margin-bottom: 0;
}

.contacto-detail-fluid {
  background-color: var(--dorado-tenue);
  background-image: url("./img/bg-cover-section-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

.contacto-channels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.contacto-channel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacto-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(158, 107, 29, 0.35);
  background: var(--dorado-tenue);
  color: var(--dorado);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contacto-channel-label {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--negro-tenue);
  margin: 0 0 2px;
}

.contacto-channel-value {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--negro-tenue);
  margin: 0;
}

.contacto-social-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--negro-tenue);
  margin: 0 0 10px;
}

.contacto-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contacto-social-list li {
  margin-bottom: 8px;
}

.contacto-social-list li:last-child {
  margin-bottom: 0;
}

.contacto-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--negro-tenue);
  transition: transform 0.25s ease;
}

.contacto-social-list a:hover,
.contacto-social-list a:focus {
  text-decoration: none;
  color: var(--negro-tenue);
  transform: translateX(8px);
}

.contacto-social-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dorado);
  color: var(--dorado-tenue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.contacto-form-wrap {
  border-radius: 10px;
  background: rgba(238, 235, 221, 0.4);
  border: 1px solid rgba(158, 107, 29, 0.35);
  padding: 24px 26px;
}

.contacto-form-title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  font-style: italic;
  color: var(--negro-tenue);
  margin-bottom: 22px;
}

.contacto-form-wrap label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--negro-tenue);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contacto-form-wrap .form-control {
  border: 0;
  border-bottom: 1px solid var(--negro-tenue);
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--negro-tenue);
  box-shadow: none;
}

.contacto-form-wrap .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--negro-tenue);
}

.contacto-form-wrap .form-control::placeholder {
  color: rgba(19, 19, 19, 0.4);
  opacity: 1;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.contacto-form-wrap textarea.form-control {
  resize: none;
}

.contacto-form-btn {
  min-width: 135px;
  margin-top: 8px;
}

.souvenirs-highlight-btn {
  min-width: 180px;
}

.gallery-momentos-images-row {
  align-items: flex-start;
}

.gallery-momentos-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--sombra-tenue);
}

@media (min-width: 992px) {
  .gallery-momentos-image-offset {
    margin-top: 28px;
  }
}

.feature-grid {
  row-gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-icon-font {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dorado);
  font-size: 26px;
  background: #d9d2c4;
  border-radius: 10px;
}

.feature-title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dorado);
  margin-bottom: 5px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--negro-tenue);
  margin-bottom: 0;
}

.media-card {
  position: relative;
  max-width: 490px;
  margin-left: auto;
}

.image-rounded {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.stat-box {
  position: absolute;
  left: -16px;
  bottom: -16px;
  background: var(--dorado);
  border-radius: 12px;
  box-shadow: var(--sombra-tenue);
  padding: 14px 16px;
  min-width: 130px;
}

.stat-number {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin-bottom: 7px;
}

.stat-text {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--dorado-tenue);
  margin-bottom: 0;
}

.panel-cover {
  background-image: url("./img/bg-cover-section-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--dorado);
  border-radius: 15px;
  box-shadow: var(--sombra-tenue);
  overflow: hidden;
}

.panel-figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 auto;
  min-height: 320px;
  padding: 36px 28px 0;
}

.panel-figure-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.panel-content {
  padding: 40px 40px 40px 28px;
}

.label-upper-dark {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--negro-tenue);
  margin-bottom: 12px;
}

.title-profile {
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--dorado);
  margin-bottom: 16px;
}

.title-profile span {
  font-style: italic;
}

.pull-quote {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  color: var(--negro-tenue);
  margin-bottom: 16px;
  max-width: 520px;
}

.copy-16 {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--negro-tenue);
  margin-bottom: 24px;
  max-width: 520px;
}

.panel-content .btn-custom {
  align-self: flex-start;
  width: auto;
}

.block-club-fluid {
  background-color: var(--dorado);
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
  overflow-x: hidden;
}

.block-club .section-title {
  color: var(--dorado-tenue);
  text-align: center;
}

.block-club .section-title span {
  color: var(--dorado-tenue);
  font-style: italic;
}

.block-club .section-text {
  color: var(--dorado-tenue);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.club-slider {
  position: relative;
  padding: 0;
  margin-top: 8px;
  max-width: 100%;
}

.club-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.club-carousel-viewport {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.club-carousel {
  overflow: hidden;
  width: 100%;
}

.club-carousel .carousel-inner {
  overflow: hidden;
}

.club-control-external.carousel-control-prev,
.club-control-external.carousel-control-next {
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  flex-shrink: 0;
  width: auto;
  padding: 0;
  opacity: 1;
}

.club-control-external.carousel-control-prev {
  justify-content: center;
}

.club-control-external.carousel-control-next {
  justify-content: center;
}

.club-card {
  position: relative;
  background-color: rgba(0, 0, 0, 0.12);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--borde-club-card);
  border-radius: 15px;
  padding: 22px 20px 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.club-card-body {
  position: relative;
  z-index: 1;
}

.club-card-icon {
  display: block;
  max-width: 52px;
  height: auto;
  margin-bottom: 14px;
}

.club-card-title {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--dorado-tenue);
  margin-bottom: 10px;
}

.club-card-text {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--dorado-tenue);
  margin-bottom: 14px;
  flex-grow: 1;
}

.club-card-text-block {
  flex-grow: 1;
}

.club-card-text-block .club-card-text {
  flex-grow: 0;
  margin-bottom: 8px;
}

.club-card-text-block .club-card-text:last-child {
  margin-bottom: 0;
}

.club-card-link {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dorado-tenue);
  text-decoration: none;
}

.club-card-link:hover,
.club-card-link:focus {
  color: var(--dorado-tenue);
  text-decoration: none;
}

.club-control {
  width: auto;
  opacity: 1;
}

.club-control:hover,
.club-control:focus {
  opacity: 1;
}

.club-control .club-control-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--negro-tenue);
  font-size: 14px;
  box-shadow: var(--sombra-tenue);
}

.club-dots {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  z-index: 2;
}

.club-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
}

.club-dots li.active {
  background-color: var(--dorado-tenue);
}

@media (max-width: 991.98px) {
  .section-space {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .site-navbar {
    background: rgba(0, 0, 0, 0.75);
  }

  .site-navbar .navbar-collapse {
    margin-top: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.78);
    border-radius: 8px;
  }

  .page-plain-hero .site-navbar .navbar-collapse {
    background: var(--dorado);
  }

  .page-plain-hero .site-navbar .navbar-nav .nav-link {
    color: var(--dorado-tenue);
  }

  .page-plain-hero .site-navbar .navbar-nav .nav-link:hover,
  .page-plain-hero .site-navbar .navbar-nav .nav-link:focus {
    color: var(--dorado-tenue);
    border-bottom-color: var(--dorado-tenue);
  }

  .page-plain-hero .site-navbar .navbar-nav .active>.nav-link,
  .page-plain-hero .site-navbar .navbar-nav .nav-link.active {
    color: var(--dorado-tenue);
    border-bottom-color: var(--dorado-tenue);
  }

  .site-navbar.is-scrolled .navbar-collapse {
    background: rgba(19, 19, 19, 0.3);
  }

  .hero-slide {
    height: 88vh;
    padding-top: 115px;
    padding-bottom: 72px;
  }

  .display-title {
    font-size: 34px;
    line-height: 1;
  }

  .text-lead {
    font-size: 18px;
  }

  .text-body-custom {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .brand-logo {
    width: 126px;
  }

  .btn-custom {
    font-size: 14px;
    padding: 11px 18px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 16px;
  }

  .section-text {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .media-card {
    margin-top: 20px;
    margin-left: 0;
  }

  .feature-item {
    margin-bottom: 14px;
  }

  .stat-box {
    left: 0;
    bottom: -14px;
    display: none;
  }

  .panel-figure {
    min-height: 260px;
    padding: 28px 20px 0;
  }

  .panel-content {
    padding: 28px 22px 32px;
  }

  .title-profile {
    font-size: 28px;
  }

  .pull-quote,
  .copy-16 {
    font-size: 15px;
  }

  .block-club .section-title {
    font-size: 34px;
  }

  .block-club .section-text {
    font-size: 17px;
  }

  .club-slider-row {
    gap: 6px;
  }

  .club-control .club-control-round {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .block-club-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .block-events-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .block-showcase-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .block-cta-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .footer-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .footer-columns {
    text-align: center;
  }

  .footer-brand-img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-lead,
  .footer-tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    text-align: center;
  }

  .footer-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
  }

  .footer-credits {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title-hero {
    font-size: 38px;
  }

  .who-hero-text {
    font-size: 17px;
  }

  .hero-static {
    min-height: 60vh;
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .who-values-title {
    font-size: 21px;
  }

  .who-values-text {
    font-size: 17px;
  }

  .who-philosophy-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .who-philosophy-title {
    font-size: 19px;
  }

  .who-philosophy-text {
    font-size: 14px;
  }

  .who-movement-title {
    font-size: 16px;
  }

  .who-stats-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .who-stats-number {
    font-size: 42px;
  }

  .who-cta-club-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .who-cta-club-card {
    padding: 32px 20px;
  }

  .cta-global-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .event-formats-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .event-story-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .event-story-intro {
    padding-bottom: 36px;
  }

  .gallery-featured-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .gallery-featured .section-title.text-center {
    margin-bottom: 28px;
  }

  .gallery-featured-row {
    margin-bottom: 26px;
  }

  .gallery-featured-title {
    margin-bottom: 12px;
  }

  .gallery-featured-text {
    margin-bottom: 10px;
  }

  .gallery-featured-tag {
    font-size: 14px;
    padding: 5px 10px;
  }

  .gallery-club-experience-grid {
    margin-top: 14px;
  }

  .gallery-club-experience-offset {
    margin-top: 0;
  }

  .gallery-momentos-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .gallery-momentos-heading {
    font-size: 38px;
    margin-bottom: 14px;
  }

  .gallery-momentos-note {
    padding-left: 12px;
    margin-bottom: 18px;
  }

  .gallery-momentos-card-title {
    font-size: 18px;
  }

  .gallery-momentos-image-offset {
    margin-top: 0;
  }

  .souvenirs-showcase-lead {
    margin-bottom: 16px;
  }

  .souvenir-card-img {
    height: 250px;
  }

  .souvenir-card-title {
    font-size: 18px;
  }

  .souvenir-card-price {
    font-size: 22px;
  }

  .souvenirs-quote .cta-global-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .souvenirs-quote-text {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .souvenirs-highlight-fluid {
    padding-bottom: 0;
  }

  .souvenirs-highlight-row {
    margin-bottom: 0;
  }

  .souvenirs-highlight-content {
    padding: 28px 24px;
  }

  .souvenirs-highlight-kicker {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .souvenirs-highlight-title {
    margin-bottom: 12px;
  }

  .souvenirs-highlight-text {
    margin-bottom: 12px;
  }

  .souvenirs-highlight-list span {
    font-size: 17px;
  }

  .contacto-help-title {
    margin-bottom: 20px;
  }

  .contacto-detail-fluid {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .contacto-form-wrap {
    padding: 20px 18px;
  }

  .contacto-form-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

.product-single-hero .title-hero span {
  color: var(--dorado);
  font-style: italic;
}

.product-single-gallery-card {
  background: #fff;
}

.product-single-cover-wrap {
  background: var(--dorado-tenue);
}

.product-single-cover {
  height: 540px;
  max-height: none;
  object-fit: cover;
}

.product-single-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid rgba(158, 107, 29, 0.14);
}

.product-single-thumb {
  min-height: 118px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--dorado-tenue);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-single-thumb:hover,
.product-single-thumb:focus,
.product-single-thumb.is-active {
  border-color: var(--dorado);
  transform: translateY(-2px);
  outline: 0;
}

.product-single-thumb img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  display: block;
}

.product-single-description {
  margin-bottom: 0;
}

.product-single-kicker {
  margin-bottom: 14px;
}

.product-single-title {
  margin-bottom: 8px;
}

.product-single-price {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--negro-tenue);
  margin-bottom: 26px;
}

.product-single-option-group {
  margin-bottom: 24px;
}

.product-single-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-single-option {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  /* border: 1px solid rgba(158, 107, 29, 0.28); */
  border: 1px solid var(--dorado);
  border-radius: 6px;
  background: #fff;
  color: var(--negro-tenue);
  font-family: "Newsreader", serif;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-single-option.disabled {
  border-style: dashed;
  background: #fbfbfb;
  color: #808080;
}

.product-single-option:hover,
.product-single-option:focus,
.product-single-option.is-active {
  border-color: var(--dorado-oscuro);
  background: var(--dorado);
  color: var(--dorado-tenue);
  outline: 0;
}

.product-single-size-options .product-single-option {
  width: 54px;
  padding-right: 10px;
  padding-left: 10px;
}

.product-single-swatch {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(19, 19, 19, 0.18);
  flex: 0 0 17px;
}

.product-single-swatch-arena {
  background: #E6D7B8;
}

.product-single-swatch-negro {
  background: #171717;
}

.product-single-swatch-dorado {
  background: var(--amarillo-dorado);
}

.product-single-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(158, 107, 29, 0.14);
}

.product-single-quantity-row .event-single-info-label {
  margin-bottom: 0;
}

.product-single-quantity {
  width: 92px;
  height: 44px;
  border: 1px solid rgba(158, 107, 29, 0.28);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--negro-tenue);
  font-family: "Newsreader", serif;
  font-size: 18px;
  text-align: center;
}

.product-single-quantity:focus {
  border-color: var(--dorado);
  outline: 0;
}

.product-single-status {
  margin-bottom: 0;
}

.hidden {
  display: hidden !important;
}

.checkout-hero {
  padding-bottom: 76px;
}

.checkout-section {
  background: var(--bg-body);
}

.checkout-summary-sidebar {
  position: sticky;
  top: 110px;
}

.checkout-summary-card {
  overflow: visible;
}

.checkout-product-image-wrap {
  margin: 0 0 22px;
  border-radius: 10px;
  background: var(--dorado-tenue);
  overflow: hidden;
}

.checkout-product-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.checkout-product-title {
  margin-bottom: 10px;
}

.checkout-product-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--negro-tenue);
  margin-bottom: 22px;
}

.checkout-summary-list {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(158, 107, 29, 0.14);
  border-bottom: 1px solid rgba(158, 107, 29, 0.14);
}

.checkout-summary-row,
.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--negro-tenue);
}

.checkout-summary-row span,
.checkout-total-row span {
  font-size: 16px;
  line-height: 1.2;
}

.checkout-summary-row strong {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-align: right;
}

.checkout-total-row {
  padding: 20px 0 0;
  margin-bottom: 22px;
}

.checkout-total-row span {
  color: var(--dorado);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-total-row strong {
  font-size: 30px;
  line-height: 1;
  color: var(--negro-tenue);
}

.checkout-note-item {
  padding-top: 20px;
  margin-bottom: 0;
  border-top: 1px solid rgba(158, 107, 29, 0.14);
  border-bottom: 0;
}

.checkout-form {
  padding: 30px;
}

.checkout-form-heading {
  margin-bottom: 18px;
}

.checkout-form-divider {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: var(--dorado);
  margin: 14px 0 22px;
}

.checkout-form-section-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  font-style: italic;
  color: var(--dorado);
  margin-bottom: 18px;
}

.checkout-form select.form-control {
  height: auto;
  min-height: 38px;
  cursor: pointer;
}

.checkout-required-label {
  font-size: 1em;
  font-weight: 700;
  text-transform: none;
  color: var(--dorado);
}

.checkout-privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 22px;
}

.checkout-privacy-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--dorado);
  flex: 0 0 18px;
}

.checkout-privacy-row label {
  margin: 0;
  text-transform: none;
  font-size: 16px;
  line-height: 1.4;
  color: var(--negro-tenue);
}

.checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.checkout-back-btn {
  border-color: var(--dorado);
  color: var(--dorado);
}

.checkout-back-btn:hover,
.checkout-back-btn:focus {
  color: var(--dorado);
  border-color: var(--dorado);
  background: rgba(158, 107, 29, 0.08);
}

.checkout-submit-btn {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

/*********************************** ALERTAS (INICIO) ***********************************/
/* Contenedor general de notificaciones */
.notifications {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Estilo de cada notificación */
.notification {
  background: #ffffff;
  color: #333;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  max-width: 320px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s, transform 0.4s;
  cursor: default;
  cursor: pointer;
}

.dark .notification {
  background: #383838;
  color: #fff;
}

.notification.verde {
  border-left: 10px solid #36ff20ff;
}

.notification.roja {
  border-left: 10px solid #ff2020;
}

.dark .notification.roja {
  border-left: 10px solid #b32020;
}

/* Cuando aparece */
.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.show:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transform: translateX(0) scale(1.02);

}

/* Pantalla de carga */
.contenedor-obstaculo {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 1052;
}

.dark .contenedor-obstaculo-view {
  background-color: #404040;
}

.dark .contenedor-obstaculo {
  background-color: #000000;
}

.loader {
  width: 80px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #9E6B1D;
  --_m:
    conic-gradient(#0000 10%, #000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn)
  }
}


/* Vibrar */
@keyframes vibrar {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.vibrar {
  animation: vibrar 0.3s;
}

.vibrar.borde-verde {
  border: 1px solid green;
}

/*********************************** ALERTAS (FINAL) ***********************************/

@media (max-width: 767.98px) {
  .product-single-cover {
    height: 360px;
  }

  .product-single-thumbs {
    gap: 8px;
    padding: 12px;
  }

  .product-single-thumb,
  .product-single-thumb img {
    min-height: 86px;
    height: 86px;
  }

  .product-single-price {
    font-size: 28px;
  }

  .product-single-option {
    font-size: 15px;
  }

  .checkout-summary-sidebar {
    position: static;
  }

  .checkout-product-image {
    height: 250px;
  }

  .checkout-form {
    padding: 22px 18px;
  }

  .checkout-actions {
    display: grid;
  }

  .checkout-back-btn,
  .checkout-submit-btn {
    width: 100%;
  }
}
.purchase-result-hero {
  min-height: 560px;
}

.purchase-result-hero-content .btn-custom,
.purchase-result-main-btn {
  gap: 8px;
}

.purchase-result-section {
  padding-top: 72px;
}

.purchase-result-card {
  position: relative;
  text-align: center;
  padding: 48px 38px;
}

.purchase-result-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--dorado-tenue);
  color: var(--dorado);
  border: 2px solid rgba(158, 107, 29, 0.22);
  font-size: 30px;
  box-shadow: var(--sombra-tenue);
}

.purchase-result-card-error .purchase-result-icon {
  color: #8f4f1c;
  border-color: rgba(143, 79, 28, 0.24);
}

.purchase-result-title {
  margin-bottom: 14px;
}

.purchase-result-text {
  max-width: 590px;
  margin: 0 auto 28px;
  color: var(--negro-tenue);
  font-size: 18px;
  line-height: 1.65;
}

.purchase-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.purchase-result-actions .btn-custom {
  min-width: 190px;
}

@media (max-width: 575px) {
  .purchase-result-card {
    padding: 36px 22px;
  }

  .purchase-result-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .purchase-result-text {
    font-size: 16px;
  }

  .purchase-result-actions .btn-custom {
    width: 100%;
  }
}
