/* =========================================================
   SHARED RESET (from hero + About + trusted originals)
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   SCROLL ANIMATIONS — same fadeInUp as hero
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children — same pattern, incremental delays */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.reveal-stagger.in-view>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.in-view>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.in-view>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.in-view>*:nth-child(4) {
  transition-delay: 0.4s;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-stagger>* {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-trusted .logos-track {
    animation: none;
  }
}


/* =========================================================
   1. HERO + NAVBAR — EXACT CSS from voov-gne-2026-hero.html
   ========================================================= */

.section-hero {
  --bg: #131336;
  --white: #ffffff;
  --gold: #C0963A;
  --gold-hover-bg: rgba(192, 161, 120, .15);
  --overlay: rgba(14, 14, 14, .15);
  --border-faint: rgba(255, 255, 255, .05);

  --fs-nav: clamp(.8rem, .76rem + .3vw, .875rem);
  --fs-btn: clamp(.625rem, .58rem + .2vw, .6875rem);
  --fs-item: clamp(0.9rem, 0.85rem + 0.3vw, 1.05rem);

  --transition: .3s ease;

  background-color: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
}

/* Hello Bar */
.section-hero .hello-bar {
  width: 100%;
  height: 42px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10102D;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.section-hero .hello-bar__text {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #c0963a;
  line-height: 1;
  letter-spacing: 0.35px;
  text-align: center;
  font-variant: small-caps;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-hero .hello-bar {
    height: 42px;
    min-height: 42px;
    padding: 0 15px;
  }

  .section-hero .hello-bar__text {
    font-size: 10px;
    letter-spacing: 0.25px;
  }
}

@media (max-width: 480px) {
  .section-hero .hello-bar {
    height: 42px;
    min-height: 42px;
    padding: 0 10px;
  }

  .section-hero .hello-bar__text {
    font-size: 10px;
    letter-spacing: 0.15px;
  }
}

/* Navbar */
.section-hero .navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-color: var(--bg);
  padding: 20px;
  border-bottom: 0.5px solid rgba(192, 150, 58, 0.4);
  border-top: 0.5px solid rgba(192, 150, 58, 0.4);
  position: relative;
  z-index: 100;
}

.section-hero .nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: auto;
}

.section-hero .nav-logo a {
  display: flex;
  align-items: center;
}

.section-hero .header-logo {
  height: 28px;
  width: auto;
}

.section-hero .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(.5rem, 1.5vw, 1.25rem);
}

.section-hero .nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-nav);
  font-weight: 400;
  white-space: nowrap;
  transition: color var(--transition);
}

.section-hero .nav-links a:hover,
.section-hero .nav-links a:focus-visible {
  color: var(--gold);
}

.section-hero .nav-links a.active {
  font-weight: 600;
}

.section-hero .btn-nav-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--white);
  background-color: transparent;
  padding: 15px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
}

.section-hero .nav-links a.btn-nav-outline:hover,
.section-hero .btn-nav-outline:hover {
  background-color: var(--gold);
  color: var(--bg);
}

.section-hero .btn-nav-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Hero Section */
.section-hero .hero-section {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  min-height: 100dvh;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.section-hero .hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.75rem clamp(1rem, 1rem + 2vw, 2rem);
  z-index: 10;
}

.section-hero .hero-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-hero .hero-list-item {
  opacity: 0;
  animation: fadeInUp .8s ease-out forwards;
}

.section-hero .hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  background: transparent;
  text-align: center;
  text-decoration: none;
  transition: none;
}

.section-hero .hero-btn:hover,
.section-hero .hero-btn:focus-visible {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  text-decoration: none;
}

.section-hero .hero-seam {
  position: static;
  display: flex;
  justify-content: center;
  background-color: var(--bg);
  padding: 14px 0;
  z-index: 20;
}

.section-hero .hero-rotated-svg {
  position: static;
  transform: none;
  width: clamp(200px, 50vw, 280px);
  max-width: none;
  height: auto;
  display: block;
  pointer-events: none;
}

.section-hero .hero-right {
  position: relative;
  width: 100%;
  height: clamp(300px, 52vh, 400px);
  z-index: 5;
  background-image: linear-gradient(var(--overlay), var(--overlay)), url('/assets/img/general/moscone-center.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-hero .hero-info-bar {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  z-index: 15;
}

.section-hero .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-hero .info-item img {
  width: 28px;
  height: 32px;
  flex-shrink: 0;
}

.section-hero .info-item a.text {
  color: var(--white);
  font-size: var(--fs-item);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, .6);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.section-hero .info-item a.text:hover,
.section-hero .info-item a.text:focus-visible {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-hero .hero-seam,
.section-hero .hero-info-bar,
.section-hero .hero-list-item {
  opacity: 0;
  animation: fadeInUp .8s ease-out forwards;
}

.section-hero .hero-seam {
  animation-delay: .1s;
}

.section-hero .hero-info-bar {
  animation-delay: .2s;
}

.section-hero .hero-list-item:nth-child(1) {
  animation-delay: .3s;
}

.section-hero .hero-list-item:nth-child(2) {
  animation-delay: .4s;
}

.section-hero .hero-list-item:nth-child(3) {
  animation-delay: .5s;
}

.section-hero .hero-list-item:nth-child(4) {
  animation-delay: .6s;
}

@media (prefers-reduced-motion: reduce) {
  .section-hero * {
    animation: none !important;
    transition: none !important;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .section-hero .navbar {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 90px;
    padding: 0 40px;
  }

  .section-hero .nav-logo {
    margin-right: auto;
  }

  .section-hero .nav-links {
    flex-wrap: nowrap;
    gap: 30px;
    margin: 0;
  }

  .section-hero .btn-nav-outline {
    margin-left: 30px;
  }

  .section-hero .hero-section {
    flex-direction: row;
    height: calc(100vh - 90px);
    min-height: 600px;
  }

  .section-hero .hero-left {
    width: 32%;
    min-width: 380px;
    padding: 50px 20px 30px 20px;
  }

  .section-hero .hero-seam {
    position: absolute;
    left: 32%;
    top: 0;
    width: 0;
    height: 100%;
    padding: 0;
    background: none;
  }

  .section-hero .hero-rotated-svg {
    position: absolute;
    left: -120px;
    top: 38%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: clamp(450px, 60vh, 700px);
    height: auto;
  }

  .section-hero .hero-right {
    flex: 1;
    width: auto;
    height: 100%;
    background-position: center 35%;
  }

  .section-hero .hero-info-bar {
    top: 40px;
    left: 30px;
    gap: 85px;
  }
}

/* =========================================================
   HERO — TABLET
========================================================= */
@media (min-width: 641px) and (max-width: 1024px) {
  .section-hero .navbar {
    height: 76px;
    padding: 0 18px;
    gap: 1rem;
  }

  .section-hero .nav-links {
    gap: 22px;
  }

  .section-hero .btn-nav-outline {
    margin-left: 8px;
    padding: 12px 14px;
    font-size: 10px;
    white-space: nowrap;
  }

  .section-hero .hero-section {
    height: calc(100vh - 76px);
    min-height: 520px;
  }

  .section-hero .hero-left {
    width: 36%;
    min-width: 290px;
    padding: 40px 18px 24px 18px;
  }

  .section-hero .hero-seam {
    left: 36%;
  }

  .section-hero .hero-rotated-svg {
    left: -100px;
    width: clamp(400px, 50vh, 600px);
  }

  .section-hero .hero-info-bar {
    top: 28px;
    left: 24px;
    gap: 30px;
  }

  .section-hero .hero-list-item+.hero-list-item {
    margin-top: 14px;
  }
}


/* =========================================================
   2. ABOUT — EXACT CSS from About.html
   ========================================================= */

.section-about {
  background: #F2F2F7;
  font-family: Arial, Helvetica, sans-serif;
  color: #111126;
  padding: 40px 0 30px;
}

/* PAGE */
.section-about .page {
  width: 100%;
}

/* SECTION COMMON */
.section-about .section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  min-height: 390px;
  padding: 40px 20px;
}

.section-about .section--voov .image-wrapper,
.section-about .section--gne .image-wrapper {
  width: 535px;
  height: 305px;
  flex: 0 0 535px;
}

.section-about .section--voov .text-wrapper,
.section-about .section--gne .text-wrapper {
  flex: 1;
}

/* IMAGE */
.section-about .image-wrapper {
  overflow: hidden;
}

.section-about .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* TYPOGRAPHY */
.section-about .text-wrapper {
  flex-shrink: 0;
}

.section-about h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.35px;
  color: #17172f;
  margin-bottom: 23px;
}

/* GOLD DIVIDER */
.section-about .divider {
  width: 32px;
  height: 1px;
  background: #cfa76f;
  margin-bottom: 24px;
}

/* BODY COPY */
.section-about p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: -0.12px;
  color: #111127;
  margin: 0 0 19px 0;
}

/* NOTE */
.section-about .note {
  font-size: 15px;
  font-style: italic;
  line-height: 1.15;
  margin-top: 2px;
  margin-bottom: 0;
}

/* DESKTOP */
@media (min-width: 1200px) {
  .section-about .section--voov {
    min-height: 390px;
  }

  .section-about .section--gne {
    min-height: 390px;
  }
}

/* TABLET */
@media (max-width: 1199px) {

  .section-about .section,
  .section-about .section--gne {
    justify-content: center;
    gap: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-about .section--voov .text-wrapper,
  .section-about .section--gne .text-wrapper {
    margin-right: 0;
  }

  .section-about .section--voov .image-wrapper {
    width: min(48vw, 573px);
    height: auto;
    aspect-ratio: 573 / 322;
  }

  .section-about .section--gne .image-wrapper {
    width: min(48vw, 535px);
    height: auto;
    aspect-ratio: 535 / 305;
  }

  .section-about .section--voov .text-wrapper,
  .section-about .section--gne .text-wrapper {
    width: min(40vw, 441px);
  }
}

/* ABOUT — TABLET */
@media (min-width: 769px) and (max-width: 1024px) {

  .section-about .section,
  .section-about .section--gne {
    gap: 36px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .section-about .section--voov .image-wrapper,
  .section-about .section--gne .image-wrapper {
    width: min(46vw, 460px);
  }

  .section-about .section--voov .text-wrapper,
  .section-about .section--gne .text-wrapper {
    width: min(46vw, 380px);
  }

  .section-about .section--gne {
    padding-right: 28px;
    padding-left: 28px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .section-about .section,
  .section-about .section--gne {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    min-height: auto;
    padding: 55px 25px;
  }

  .section-about .section--gne {
    flex-direction: column;
  }

  .section-about .section--voov .image-wrapper,
  .section-about .section--gne .image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: none;
  }

  .section-about .section--voov .text-wrapper,
  .section-about .section--gne .text-wrapper {
    width: 100%;
    margin: 0;
  }

  .section-about h2 {
    font-size: 30px;
    color: #131336;
  }

  .section-about p,
  .section-about .note {
    font-size: 14px;
    color: #131336;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .section-about .section,
  .section-about .section--gne {
    padding: 42px 20px;
    gap: 28px;
  }

  .section-about h2 {
    font-size: 30px;
    color: #131336;
  }

  .section-about .divider {
    margin-bottom: 20px;
  }

  .section-about p,
  .section-about .note {
    font-size: 13px;
    line-height: 1.25;
    color: #131336;
  }
}


/* =========================================================
   3. TRUSTED — EXACT CSS from trusted.html
   ========================================================= */

.section-trusted {
  background: #F2F2F7;
  font-family: Arial, Helvetica, sans-serif;
  color: #17172f;
  padding: 30px 0;
}

/* TRUST SECTION */
.section-trusted .trust-section {
  width: 100%;
  background: #F2F2F7;
  overflow: hidden;
}

/* TRUST BLOCK */
.section-trusted .trust-block {
  width: 100%;
  height: 246px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 34px;
}

/* SECOND BLOCK */
.section-trusted .trust-block--more {
  height: 238px;
  padding-top: 28px;
}

/* TITLES */
.section-trusted .trust-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.45px;
  color: #17172f;
  text-align: center;
}

/* GOLD DIVIDER UNDER TITLE */
.section-trusted .center-divider {
  width: 57px;
  height: 1px;
  background: #cda76e;
  margin-top: 16px;
}

/* LOGOS ROW */
.section-trusted .logos-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

/* TOP LOGOS */
.section-trusted .logos-row--top {
  margin-top: 25px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  justify-content: flex-start;
}

/* BOTTOM LOGOS */
.section-trusted .logos-row--bottom {
  margin-top: 26px;
  gap: 30px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  justify-content: flex-start;
}

/* MARQUEE TRACK */
.section-trusted .logos-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: logosScroll 22s linear infinite;
}

.section-trusted .logos-track:hover {
  animation-play-state: paused;
}

.section-trusted .logos-track--sir {
  gap: 58px;
  animation-duration: 18s;
}

.section-trusted .logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.section-trusted .logo-link:focus-visible {
  outline: 2px solid #cda76e;
  outline-offset: 6px;
}

@keyframes logosScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* BASE LOGO SIZE */
.section-trusted .logo {
  display: block;
  width: 160px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 160px;
}

/* TOP LOGO SIZES */
.section-trusted .logo-ladd {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-asir {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-kwt {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-four-seasons {
  width: 160px;
  height: 72px;
}

/* BOTTOM LOGO SIZES */
.section-trusted .logo-corcoran {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-bonanza {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-parker {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-bridge {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-prudhome {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-belack {
  width: 160px;
  height: 72px;
}

.section-trusted .logo-hogan {
  width: 160px;
  height: 72px;
}

/* FULL WIDTH DIVIDER */
.section-trusted .full-width-divider {
  width: 100%;
  height: 1px;
  background: #b8b8b8;
}

/* DESKTOP */
@media (min-width: 1200px) {
  .section-trusted .trust-block {
    min-width: 1100px;
  }

  .section-trusted .logos-row--top {
    max-width: 1050px;
  }

  .section-trusted .logos-row--bottom {
    max-width: 1280px;
  }
}

/* TABLET */
@media (max-width: 1100px) {
  .section-trusted .trust-block {
    height: auto;
    min-height: 230px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-trusted .logos-row--top,
  .section-trusted .logos-row--bottom {
    gap: 25px;
    max-width: 100%;
    overflow: hidden;
  }

  .section-trusted .logos-track {
    gap: 25px;
  }

  .section-trusted .logo {
    width: 135px;
    height: 65px;
    flex-basis: 135px;
  }

  .section-trusted .logo-ladd,
  .section-trusted .logo-asir,
  .section-trusted .logo-kwt,
  .section-trusted .logo-four-seasons,
  .section-trusted .logo-corcoran,
  .section-trusted .logo-bonanza,
  .section-trusted .logo-parker,
  .section-trusted .logo-bridge,
  .section-trusted .logo-prudhome,
  .section-trusted .logo-belack,
  .section-trusted .logo-hogan {
    width: 135px;
    height: 65px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-trusted .trust-block {
    min-height: auto;
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-trusted .trust-block--more {
    padding-top: 28px;
  }

  .section-trusted .trust-title {
    font-size: 25px;
    color: #131336;
  }

  .section-trusted .logos-row--top {
    flex-wrap: wrap;
    row-gap: 25px;
  }

  .section-trusted .logos-row--top,
  .section-trusted .logos-row--bottom {
    margin-top: 25px;
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-trusted .logos-track {
    gap: 20px;
  }

  .section-trusted .logo {
    width: 140px;
    height: 65px;
    flex: 0 0 140px;
  }

  .section-trusted .logo-ladd,
  .section-trusted .logo-asir,
  .section-trusted .logo-kwt,
  .section-trusted .logo-four-seasons,
  .section-trusted .logo-corcoran,
  .section-trusted .logo-bonanza,
  .section-trusted .logo-parker,
  .section-trusted .logo-bridge,
  .section-trusted .logo-prudhome,
  .section-trusted .logo-belack,
  .section-trusted .logo-hogan {
    width: 140px;
    height: 65px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .section-trusted .trust-title {
    font-size: 23px;
    color: #131336;
  }

  .section-trusted .logos-row {
    gap: 16px;
  }

  .section-trusted .logo {
    width: 125px;
    height: 60px;
    flex: 0 0 125px;
  }

  .section-trusted .logo-ladd,
  .section-trusted .logo-asir,
  .section-trusted .logo-kwt,
  .section-trusted .logo-four-seasons,
  .section-trusted .logo-corcoran,
  .section-trusted .logo-bonanza,
  .section-trusted .logo-parker,
  .section-trusted .logo-bridge,
  .section-trusted .logo-prudhome,
  .section-trusted .logo-belack,
  .section-trusted .logo-hogan {
    width: 125px;
    height: 60px;
  }
}


/* =========================================================
   4. BOOTH — EXACT CSS from whyvisitvoov.html
   ========================================================= */

.section-booth {
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: #111127;
  padding: 40px 0 30px;
}

.section-booth .booth-section {
  width: 100%;
  background: #ffffff;
  padding-top: 29px;
  padding-bottom: 49px;
  overflow: hidden;
}

.section-booth .booth-header {
  width: 1110px;
  max-width: calc(100% - 40px);
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-booth .booth-title-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.section-booth .booth-title-wrapper .title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.45px;
  color: #17172f;
  white-space: nowrap;
}

.section-booth .title-line {
  width: 56px;
  height: 1px;
  background: #d1ad75;
  margin-left: 24px;
  flex-shrink: 0;
}

.section-booth .booth-header .paragraph {
  margin-top: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.15px;
  color: #111127;
  text-align: left;
}

.section-booth .cards-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 10px;
  padding: 0 15px;
}

.section-booth .card {
  width: 100%;
  overflow: hidden;
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
}

.section-booth .card>img {
  display: block;
  width: 100%;
  height: 161px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.section-booth .card-content {
  min-height: 280px;
  background: #f1f1f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 35px 28px 34px;
}

.section-booth .card-title {
  width: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.45px;
  color: #17172f;
  text-align: center;
}

.section-booth .card-divider {
  width: 56px;
  height: 1px;
  background: #d1ad75;
  margin-top: 27px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.section-booth .card-text {
  width: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.15px;
  color: #111127;
  text-align: center;
}

@media (min-width: 1200px) {
  .section-booth .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-booth .card-content {
    min-height: 280px;
  }
}

@media (max-width: 1199px) {
  .section-booth .booth-header {
    width: calc(100% - 80px);
  }

  .section-booth .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-booth .card>img {
    height: auto;
    aspect-ratio: 319 / 161;
  }
}

@media (max-width: 768px) {
  .section-booth .booth-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-booth .booth-header {
    width: calc(100% - 40px);
    margin-bottom: 28px;
  }

  .section-booth .booth-title-wrapper {
    align-items: center;
  }

  .section-booth .booth-title-wrapper .title {
    font-size: 25px;
    white-space: normal;
    color: #131336;
  }

  .section-booth .title-line {
    width: 38px;
    margin-left: 15px;
  }

  .section-booth .booth-header .paragraph {
    font-size: 14px;
    line-height: 1.25;
    margin-top: 18px;
    color: #131336;
  }

  .section-booth .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-booth .card-content {
    min-height: auto;
    padding: 32px 28px 35px;
  }

  .section-booth .card-title {
    font-size: 26px;
    color: #131336;
  }

  .section-booth .card-text {
    font-size: 14px;
    line-height: 1.2;
    color: #131336;
  }
}

@media (max-width: 480px) {
  .section-booth .booth-title-wrapper .title {
    font-size: 23px;
  }

  .section-booth .title-line {
    width: 32px;
    margin-left: 12px;
  }

  .section-booth .card-title {
    font-size: 24px;
  }

  .section-booth .card-content {
    padding: 29px 22px 32px;
  }
}


/* =========================================================
   5. TESTIMONIALS — EXACT CSS from Discover what our.html
   ========================================================= */

.section-reviews {
  background: #F2F2F7;
  font-family: Arial, Helvetica, sans-serif;
  color: #17172f;
  padding: 30px 0;
}

/* REVIEWS SECTION */
.section-reviews .reviews-section {
  width: 100%;
  background: #F2F2F7;
  color: #17172f;
  overflow: hidden;
  padding-top: 31px;
  padding-bottom: 48px;
}

/* MAIN CONTAINER */
.section-reviews .reviews-container {
  width: 1110px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* HEADER */
.section-reviews .reviews-header {
  width: 100%;
  margin-bottom: 43px;
}

.section-reviews .reviews-title-wrapper {
  display: flex;
  align-items: center;
}

.section-reviews .reviews-header .title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.45px;
  color: #17172f;
  white-space: nowrap;
}

/* GOLD TITLE LINE */
.section-reviews .title-line {
  width: 57px;
  height: 1px;
  background: #cda76e;
  margin-left: 22px;
  flex-shrink: 0;
}

/* REVIEW ROW */
.section-reviews .review-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 68px;
}

/* REVIEW VIDEO */
.section-reviews .review-video {
  width: 543px;
  height: 305px;
  flex: 0 0 543px;
  overflow: hidden;
  background: #101831;
}

.section-reviews .video-embed {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-reviews .video-embed video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #101831;
}

.section-reviews .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* REVIEW TEXT */
.section-reviews .review-text {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* REVIEW TITLE */
.section-reviews .review-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.35px;
  color: #17172f;
  margin: 0;
}

/* LEFT DIVIDER */
.section-reviews .divider-left {
  width: 66px;
  height: 1px;
  background: #cda76e;
  margin-top: 19px;
  margin-bottom: 24px;
}

/* PARAGRAPH */
.section-reviews .review-text>.paragraph {
  width: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.1px;
  color: #111127;
  text-align: left;
}

/* SECOND REVIEW */
.section-reviews #testimonial-2 {
  margin-top: 31px;
}

/* IMPACT LIST */
.section-reviews .impact-list {
  width: 100%;
}

.section-reviews .impact-item {
  margin-bottom: 18px;
}

.section-reviews .impact-item:last-child {
  margin-bottom: 0;
}

/* IMPACT TITLE */
.section-reviews .impact-item h4 {
  margin: 0 0 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  color: #17172f;
}

/* IMPACT TEXT */
.section-reviews .impact-item p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.1px;
  color: #111127;
}

/* DESKTOP */
@media (min-width: 1200px) {
  .section-reviews .review-row {
    min-height: 305px;
  }
}

/* TABLET */
@media (max-width: 1199px) {
  .section-reviews .reviews-container {
    width: calc(100% - 80px);
    max-width: none;
  }

  .section-reviews .review-row {
    gap: 45px;
  }

  .section-reviews .review-video {
    width: 48%;
    height: auto;
    aspect-ratio: 543 / 305;
    flex: 0 0 48%;
  }

  .section-reviews .review-text {
    max-width: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-reviews .reviews-section {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .section-reviews .reviews-container {
    width: calc(100% - 40px);
  }

  .section-reviews .reviews-header {
    margin-bottom: 30px;
  }

  .section-reviews .reviews-title-wrapper {
    align-items: center;
  }

  .section-reviews .reviews-header .title {
    font-size: 25px;
    white-space: normal;
    color: #131336;
  }

  .section-reviews .title-line {
    width: 38px;
    margin-left: 14px;
  }

  .section-reviews .review-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    min-height: auto;
  }

  .section-reviews #testimonial-2 {
    margin-top: 42px;
  }

  .section-reviews .review-video {
    width: 100%;
    height: auto;
    aspect-ratio: 543 / 305;
    flex: none;
  }

  .section-reviews .review-text {
    width: 100%;
    max-width: none;
  }

  .section-reviews .review-title {
    font-size: 26px;
    color: #131336;
  }

  .section-reviews .divider-left {
    margin-top: 18px;
    margin-bottom: 21px;
  }

  .section-reviews .review-text>.paragraph,
  .section-reviews .impact-item h4,
  .section-reviews .impact-item p {
    font-size: 14px;
    color: #131336;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .section-reviews .reviews-container {
    width: calc(100% - 30px);
  }

  .section-reviews .reviews-header .title {
    font-size: 23px;
    color: #131336;
  }

  .section-reviews .review-title {
    font-size: 24px;
    color: #131336;
  }

  .section-reviews .impact-item {
    margin-bottom: 16px;
  }
}


/* =========================================================
   6. PODCAST — EXACT CSS from podcast.html
   ========================================================= */

.section-podcast {
  background: #10102f;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  padding: 40px 0 0;
}

/* CONTENEDOR GENERAL */
.section-podcast .dark-section-wrapper {
  width: 100%;
  background: #10102f;
  color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.section-podcast .dark-section-wrapper * {
  box-sizing: border-box;
}

/* PODCAST */
.section-podcast .podcast-container {
  width: 1106px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 14px 0 67px 0;
}

/* ENCABEZADO */
.section-podcast .podcast-header {
  margin: 0 0 19px 0;
  padding: 0;
}

.section-podcast .podcast-header-title {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
}

.section-podcast .podcast-header-title span {
  color: #C0963A;
}

.section-podcast .podcast-header-line {
  width: 57px;
  height: 1px;
  background: #C0963A;
  margin-top: 22px;
}

/* GRID PRINCIPAL */
.section-podcast .podcast-grid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 69px;
}

/* VIDEO */
.section-podcast .podcast-video-wrapper {
  width: 542px;
  min-width: 542px;
}

.section-podcast .video-embed {
  position: relative;
  width: 100%;
  height: 305px;
  background: #000000;
  overflow: hidden;
}

.section-podcast .video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* CONTENIDO DERECHO */
.section-podcast .podcast-content {
  width: 495px;
  padding-top: 17px;
}

.section-podcast .podcast-title {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 400;
}

.section-podcast .podcast-title span {
  color: #C0963A;
}

.section-podcast .podcast-divider {
  width: 57px;
  height: 1px;
  background: #C0963A;
  margin-top: 28px;
  margin-bottom: 27px;
}

.section-podcast .podcast-subtitle {
  margin: 0 0 17px 0;
  padding: 0;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
}

.section-podcast .podcast-description {
  margin: 0;
  padding: 0;
  max-width: 475px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

.section-podcast .btn-outline {
  display: inline-block;
  margin-top: 23px;
  padding: 17px 24px;
  border: 1px solid #C0963A;
  background: transparent;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.section-podcast .btn-outline:hover {
  background-color: #C0963A;
  border-color: #C0963A;
  color: #0F0F2B;
}

/* SECCION GNE */
.section-podcast .gne-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  background: #10102f;
}

.section-podcast .gne-banner-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* PROMOTION BAR */
.section-podcast .promotion-bar {
  width: 100%;
  height: 42px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0F0F2B;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.section-podcast .promotion-bar__text {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #C0963A;
  line-height: 1;
  letter-spacing: 0.35px;
  text-align: center;
  font-variant: small-caps;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-podcast .promotion-bar {
    height: 42px;
    min-height: 42px;
    padding: 0 15px;
  }

  .section-podcast .promotion-bar__text {
    font-size: 10px;
    letter-spacing: 0.25px;
  }
}

@media (max-width: 480px) {
  .section-podcast .promotion-bar {
    height: 42px;
    min-height: 42px;
    padding: 0 10px;
  }

  .section-podcast .promotion-bar__text {
    font-size: 10px;
    letter-spacing: 0.15px;
  }
}

/* TABLET */
@media screen and (max-width: 1100px) {
  .section-podcast .podcast-grid {
    display: block;
  }

  .section-podcast .podcast-video-wrapper {
    width: 100%;
    min-width: 0;
  }

  .section-podcast .video-embed {
    height: auto;
    padding-top: 56.25%;
  }

  .section-podcast .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
  }

  .section-podcast .podcast-content {
    width: 100%;
    padding-top: 35px;
  }
}

/* MOVIL */
@media screen and (max-width: 600px) {
  .section-podcast .podcast-container {
    width: calc(100% - 30px);
    max-width: none;
    padding-top: 15px;
    padding-bottom: 45px;
  }

  .section-podcast .podcast-header-title {
    font-size: 27px;
  }

  .section-podcast .podcast-title {
    font-size: 28px;
  }

  .section-podcast .podcast-subtitle {
    font-size: 18px;
  }

  .section-podcast .podcast-description {
    font-size: 14px;
  }
}


/* =========================================================
   7. CTA — EXACT CSS from Streamline your.html
   ========================================================= */

.section-cta {
  background: #131336;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  padding: 40px 0 30px;
}

/* CTA SECTION */
.section-cta .cta-section {
  width: 100%;
  background: #131336;
  color: #ffffff;
  margin: 0;
  padding: 73px 0 64px;
  text-align: center;
  box-sizing: border-box;
}

.section-cta .cta-section *,
.section-cta .cta-section *::before,
.section-cta .cta-section *::after {
  box-sizing: border-box;
}

/* CONTENEDOR */
.section-cta .cta-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TITULO PRINCIPAL */
.section-cta .cta-main-title {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ffffff;
}

/* DESCRIPCION */
.section-cta .cta-text {
  width: 100%;
  max-width: 650px;
  margin: 29px auto 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 400;
  color: #ffffff;
}

/* SUBTITULO */
.section-cta .cta-subtitle {
  margin: 36px 0 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}

/* BOTONES */
.section-cta .cta-buttons {
  width: 284px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-cta .btn-gold-full {
  width: 284px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid #C0963A;
  border-radius: 0;
  background: #C0963A;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.section-cta .btn-gold-full:hover {
  background: #7E6326;
  border-color: #7E6326;
}

/* TABLET */
@media screen and (max-width: 700px) {
  .section-cta .cta-section {
    padding: 60px 0 55px;
  }

  .section-cta .cta-main-title {
    font-size: 25px;
  }

  .section-cta .cta-text {
    font-size: 16px;
    max-width: 600px;
  }

  .section-cta .cta-subtitle {
    font-size: 21px;
  }
}

/* MOVIL */
@media screen and (max-width: 480px) {
  .section-cta .cta-section {
    padding: 50px 0 50px;
  }

  .section-cta .cta-container {
    padding: 0 15px;
  }

  .section-cta .cta-main-title {
    font-size: 22px;
    line-height: 1.18;
  }

  .section-cta .cta-text {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.3;
  }

  .section-cta .cta-subtitle {
    margin-top: 30px;
    font-size: 19px;
  }

  .section-cta .cta-buttons {
    width: 100%;
    max-width: 284px;
    margin-top: 38px;
  }

  .section-cta .btn-gold-full {
    width: 100%;
  }
}


/* =========================================================
   8. CONTACT FORM — EXACT CSS from form.html
   ========================================================= */

.section-contact {
  background: #F2F2F7;
  font-family: Arial, Helvetica, sans-serif;
  color: #111438;
  padding: 40px 0 30px;
}

/* CONTACT SECTION */
.section-contact .contact-section {
  width: 100%;
  background: #F2F2F7;
  color: #111438;
  padding: 60px 0 76px;
  margin: 0;
}

.section-contact .contact-section *,
.section-contact .contact-section *::before,
.section-contact .contact-section *::after {
  box-sizing: border-box;
}

/* CONTENEDOR PRINCIPAL */
.section-contact .contact-container {
  width: 1106px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px 543px;
  column-gap: 61px;
  align-items: start;
}

/* COLUMNA IZQUIERDA */
.section-contact .contact-left {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* SEE YOU AT... */
.section-contact .contact-title-small {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 400;
  color: #111438;
}

/* DIVISOR DORADO */
.section-contact .contact-divider {
  width: 57px;
  height: 1px;
  margin-top: 22px;
  margin-bottom: 21px;
  background: #C0963A;
}

/* TITULO PRINCIPAL */
.section-contact .contact-title-large {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 0.98;
  font-weight: 400;
  color: #111438;
}

/* PARRAFO */
.section-contact .contact-section .paragraph {
  width: 100%;
  max-width: 490px;
  margin: 18px 0 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 400;
  color: #111438;
}

/* HOW IT WORKS */
.section-contact .contact-subtitle {
  margin: 21px 0 14px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 400;
  color: #111438;
}

/* PASOS */
.section-contact .steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  color: #111438;
}

.section-contact .steps-list li {
  margin: 0;
  padding: 0;
}

.section-contact .steps-list .step-arrow {
  margin: 4px 0 5px;
  font-size: 20px;
  line-height: 1;
}

/* COLUMNA DERECHA */
.section-contact .contact-right {
  width: 100%;
  padding-top: 74px;
  margin: 0;
}

/* INPUTS */
.section-contact .form-input {
  display: block;
  width: 100%;
  height: 51px;
  margin: 0 0 14px;
  padding: 0 25px;
  border: 1px solid #d8b96e;
  border-radius: 0;
  background: #ffffff;
  outline: none;
  color: #111438;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.section-contact .form-input::placeholder {
  color: #69727c;
  opacity: 1;
}

.section-contact .form-input:focus {
  border-color: #C0963A;
}

.section-contact .phone-input-group {
  display: flex;
  width: 100%;
  height: 51px;
  margin: 0 0 14px;
  border: 1px solid #d8b96e;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-contact .phone-input-group:focus-within {
  border-color: #C0963A;
  box-shadow: 0 0 0 2px rgba(192, 150, 58, 0.18);
}

.section-contact .phone-country-control {
  position: relative;
  flex: 0 0 auto;
  width: 114px;
  height: 100%;
  border-right: 1px solid #d8b96e;
  background: #111438;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.section-contact .phone-country-control:hover {
  background: #1b1e4d;
}

.section-contact .phone-country-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: Arial, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.section-contact .phone-country-toggle__value {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.section-contact .phone-country-toggle__flag,
.section-contact .phone-country-option > span:first-child {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.section-contact .phone-country-toggle__chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1px solid #d8b96e;
  border-bottom: 1px solid #d8b96e;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.section-contact .phone-country-control.is-open .phone-country-toggle__chevron {
  margin-top: 4px;
  transform: rotate(-135deg);
}

.section-contact .phone-country-toggle:focus-visible,
.section-contact .phone-country-option:focus-visible {
  outline: 2px solid #C0963A;
  outline-offset: -3px;
}

.section-contact .phone-country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -1px;
  z-index: 10;
  display: none;
  width: 222px;
  max-width: calc(100vw - 40px);
  max-height: 278px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid #d8b96e;
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(17, 20, 56, 0.18);
  list-style: none;
}

.section-contact .phone-country-control.is-open .phone-country-menu {
  display: grid;
  gap: 2px;
}

.section-contact .phone-country-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 36px;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: #111438;
  font-family: Arial, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.section-contact .phone-country-option strong {
  margin-left: 10px;
  color: #7E6326;
  font-size: 13px;
}

.section-contact .phone-country-option:hover,
.section-contact .phone-country-option[aria-selected="true"] {
  background: #f6f0e0;
}

.section-contact .form-input--phone {
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0 16px;
  border: 0;
}

.section-contact .form-input--phone:focus {
  border: 0;
}

/* EMAIL */
.section-contact .form-input[type="email"] {
  margin-bottom: 41px;
}

/* BOTON */
.section-contact .btn-gold {
  display: block;
  width: 318px;
  height: 49px;
  margin: 0;
  padding: 0;
  border: 1px solid #C0963A;
  border-radius: 0;
  background: #C0963A;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 49px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.section-contact .btn-gold:hover {
  background: #7E6326;
  border-color: #7E6326;
}

.section-contact .btn-gold:disabled {
  cursor: wait;
  opacity: 0.75;
}

.section-contact .form-status {
  min-height: 20px;
  margin: 13px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.section-contact .form-status--pending {
  color: #5b4a1d;
}

.section-contact .form-status--success {
  color: #1f6535;
}

.section-contact .form-status--error {
  color: #a22424;
}

/* TABLET */
@media screen and (max-width: 1100px) {
  .section-contact .contact-container {
    width: calc(100% - 40px);
    max-width: 700px;
    grid-template-columns: 1fr;
    row-gap: 45px;
  }

  .section-contact .contact-right {
    padding-top: 0;
  }

  .section-contact .btn-gold {
    width: 100%;
  }
}

/* MOVIL */
@media screen and (max-width: 600px) {
  .section-contact .contact-section {
    padding: 45px 0 55px;
  }

  .section-contact .contact-container {
    width: calc(100% - 30px);
    max-width: none;
  }

  .section-contact .contact-title-small {
    font-size: 26px;
    color: #131336;
  }

  .section-contact .contact-title-large {
    font-size: 25px;
    line-height: 1.02;
    color: #131336;
  }

  .section-contact .contact-section .paragraph {
    font-size: 16px;
    color: #131336;
  }

  .section-contact .contact-subtitle {
    font-size: 25px;
    color: #131336;
  }

  .section-contact .steps-list {
    font-size: 16px;
    color: #131336;
  }

  .section-contact .form-input {
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
  }

  .section-contact .phone-input-group {
    height: 50px;
  }

  .section-contact .phone-country-control {
    width: 106px;
  }

  .section-contact .phone-country-toggle {
    width: 100%;
    padding-left: 10px;
  }

  .section-contact .form-input--phone {
    padding: 0 14px;
  }

  .section-contact .btn-gold {
    width: 100%;
  }
}


/* =========================================================
   9. FOOTER
   ========================================================= */

.site-footer {
  background: #000c44;
  color: #ffffff;
  padding: 64px 0 32px;
  font-family: "Lexend Deca", sans-serif;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__grid {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  align-items: start;
}

.site-footer__brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.site-footer__logo-link {
  display: inline-flex;
}

.site-footer__logo {
  width: 148px;
  height: auto;
  display: block;
  object-fit: contain;
}

.site-footer__about {
  max-width: 320px;
  margin: 0;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer__schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #cc0000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
  transition: background-color 0.2s ease;
}

.site-footer__schedule:hover,
.site-footer__schedule:focus-visible {
  background: #a30000;
  outline: none;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.site-footer__nav-block h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__nav-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-block li+li {
  margin-top: 10px;
}

.site-footer__nav-block a {
  display: block;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.site-footer__nav-block a:hover,
.site-footer__nav-block a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #17acff;
  outline: none;
}

.site-footer__legal {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin: 24px auto 0;
  padding-top: 24px;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.4;
}

.site-footer__legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.site-footer__copyright,
.site-footer__policy-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__copyright {
  gap: 8px;
}

.site-footer__policy-links {
  gap: 8px;
}

.site-footer__separator {
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .site-footer__brand,
  .site-footer__column--industries,
  .site-footer__column--quick {
    grid-column: span 4;
  }

  .site-footer__legal-row {
    gap: 24px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {

  .site-footer__grid,
  .site-footer__legal {
    width: 604px;
    max-width: calc(100% - 64px);
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 56px;
  }

  .site-footer__grid,
  .site-footer__legal {
    width: calc(100% - 48px);
  }
}


@supports (content-visibility: auto) {

  .section-booth,
  .section-trusted,
  .section-contact,
  .section-cta,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}



.section-hero .nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.section-hero .nav-menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  margin: 6px auto;
  background: #ffffff;
  border-radius: 999px;
}

/* Responsive polish matching the supplied tablet and mobile references. */
@media (min-width: 641px) and (max-width: 1024px) {
  .section-hero .hello-bar {
    height: 34px;
    min-height: 34px;
  }

  .section-hero .hello-bar__text {
    font-size: 11px;
  }

  .section-hero .navbar {
    height: 103px;
    padding: 0 20px;
  }

  .section-hero .nav-logo img {
    height: 28px !important;
  }

  .section-hero .nav-links,
  .section-hero .btn-nav-outline {
    display: none;
  }

  .section-hero .nav-menu-toggle {
    display: block;
  }

  .section-hero .hero-section {
    height: 420px;
    min-height: 420px;
    flex-direction: row;
  }

  .section-hero .hero-left {
    width: 73%;
    flex: 0 0 73%;
    min-width: 0;
    align-items: flex-start;
    justify-content: center;
    padding: 0 0 0 20px;
  }

  .section-hero .hero-list {
    max-width: min(335px, calc(50vw - 40px));
    gap: 0;
  }

  .section-hero .hero-list-item+.hero-list-item {
    margin-top: 12px;
  }

  .section-hero .hero-btn {
    height: 58px;
    font-size: 20px;
  }

  .section-hero .hero-seam {
    position: absolute;
    left: 50%;
    top: 0;
    width: 23%;
    height: 100%;
    padding: 0;
    background: transparent;
  }

  .section-hero .hero-rotated-svg {
    position: absolute;
    left: 50%;
    top: 55%;
    width: 302px;
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .section-hero .hero-right {
    position: static;
    flex: 0 0 27%;
    width: 27%;
    height: 100%;
    margin-left: 0;
    background-position: center center;
  }

  .section-hero .hero-info-bar {
    top: 31px;
    left: 20px;
    gap: 35px;
    z-index: 40;
    width: auto;
    flex-wrap: nowrap;
  }

  .section-hero .info-item {
    gap: 8px;
    flex-shrink: 0;
  }

  .section-hero .info-item img {
    width: 23px;
    height: 23px;
  }

  .section-hero .info-item a.text {
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
  }

  .section-about {
    padding: 0;
  }

  .section-about .section,
  .section-about .section--gne {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 604px;
    max-width: none;
    min-height: auto;
    padding: 0;
    gap: 0;
  }

  .section-about .section--voov .image-wrapper,
  .section-about .section--gne .image-wrapper {
    display: block;
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: none;
  }

  .section-about .section--voov .text-wrapper,
  .section-about .section--gne .text-wrapper {
    order: 2;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .section-about .section--voov {
    row-gap: 44px;
    padding-bottom: 50px;
  }

  .section-about .section--gne {
    row-gap: 36px;
    padding-bottom: 50px;
  }

  .section-about h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .section-about h2 br {
    display: none;
  }

  .section-about .divider {
    width: 80px;
  }

  .section-about p,
  .section-about .note {
    font-size: 16px;
    line-height: 1.25;
  }

  .section-booth .booth-header,
  .section-reviews .reviews-container,
  .section-podcast .podcast-container,
  .section-contact .contact-container {
    width: 604px;
    max-width: none;
  }

  .section-booth .cards-grid {
    width: 604px;
    margin: 0 auto;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 22px;
  }

  .section-booth .card>img {
    height: 110px;
    aspect-ratio: auto;
  }

  .section-booth .card-content {
    min-height: 182px;
    padding: 20px 22px 22px;
  }

  .section-booth .card-title {
    font-size: 24px;
  }

  .section-booth .card-text {
    font-size: 15px;
    line-height: 1.12;
  }

  .section-reviews .review-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .section-reviews .review-video {
    width: 100%;
    flex: none;
  }

  .section-reviews {
    padding: 0;
  }

  .section-reviews .reviews-section {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .section-reviews .reviews-header {
    margin-bottom: 30px;
  }

  .section-reviews .review-text {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 22px;
    align-items: center;
  }

  .section-reviews .review-title {
    grid-column: 1;
    font-size: 29px;
    line-height: 1;
  }

  .section-reviews .review-title br {
    display: none;
  }

  .section-reviews .divider-left {
    grid-column: 2;
    width: 66px;
    margin: 0;
  }

  .section-reviews .review-text>.paragraph,
  .section-reviews .impact-list {
    grid-column: 1 / -1;
    margin-top: 23px;
  }

  .section-reviews .impact-list {
    margin-top: 34px;
  }

  .section-reviews .impact-item {
    margin-bottom: 26px;
  }

  .section-reviews #testimonial-2 {
    margin-top: 44px;
  }

  .section-podcast {
    padding: 0;
  }

  .section-podcast .podcast-container {
    padding: 40px 0 53px;
  }

  .section-podcast .podcast-header {
    margin-bottom: 26px;
    text-align: center;
  }

  .section-podcast .podcast-header-line {
    margin: 19px auto 0;
  }

  .section-podcast .podcast-content {
    text-align: center;
  }

  .section-podcast .podcast-title,
  .section-podcast .podcast-subtitle,
  .section-podcast .podcast-description {
    margin-left: auto;
    margin-right: auto;
  }

  .section-podcast .podcast-divider,
  .section-podcast .btn-outline {
    margin-left: auto;
    margin-right: auto;
  }

  .section-podcast .podcast-description {
    max-width: 560px;
  }

  .section-podcast .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 188px;
    height: 53px;
    padding: 0;
  }

  .section-contact .contact-left {
    text-align: center;
  }

  .section-contact .contact-divider,
  .section-contact .contact-section .paragraph {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .section-hero .hello-bar {
    height: 26px;
    min-height: 26px;
    padding: 0 8px;
  }

  .section-hero .hello-bar__text {
    font-size: 7px;
    letter-spacing: 0.2px;
  }

  .section-hero .navbar {
    height: 56px;
    padding: 0 22px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 0;
  }

  .section-hero .nav-logo,
  .section-hero .nav-links,
  .section-hero .btn-nav-outline {
    display: none;
  }

  .section-hero .nav-logo {
    display: flex;
    margin-right: auto;
  }

  .section-hero .header-logo {
    height: 20px;
    max-width: 150px;
  }

  .section-hero .nav-menu-toggle {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 0;
  }

  .section-hero .nav-menu-toggle span {
    width: 18px;
    height: 3px;
    margin: 3px auto;
  }

  .section-hero .hero-section {
    /* Reserves a dedicated row for location/date above the four CTAs. */
    height: 384px;
    min-height: 384px;
    flex-direction: column;
  }

  .section-hero .hero-right {
    position: static;
    width: 0;
    height: 0;
    background: none;
  }

  .section-hero .hero-info-bar {
    top: 13px;
    left: 24px;
    right: 90px;
    flex-direction: column;
    gap: 13px;
  }

  .section-hero .info-item {
    gap: 10px;
  }

  .section-hero .info-item img {
    width: 17px;
    height: 17px;
  }

  .section-hero .info-item a.text {
    font-size: 13px;
    text-decoration: none;
  }

  .section-hero .hero-seam {
    position: absolute;
    top: 12px;
    right: 27px;
    width: 52px;
    height: 96px;
    padding: 0;
    background: transparent;
  }

  .section-hero .hero-rotated-svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 118px;
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .section-hero .hero-left {
    width: 100%;
    height: 100%;
    min-width: 0;
    justify-content: flex-end;
    padding: 0 24px 25px;
  }

  .section-hero .hero-list {
    max-width: none;
    gap: 11px;
  }

  .section-hero .hero-btn {
    height: 53px;
    font-size: 17px;
  }

  .section-about {
    padding: 18px 0 0;
  }

  .section-about .section,
  .section-about .section--gne {
    padding: 0 24px 44px;
    gap: 22px;
  }

  .section-about .section--gne {
    flex-direction: column-reverse;
  }

  .section-about .section--voov .image-wrapper,
  .section-about .section--gne .image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 327 / 181;
  }

  .section-about .section--voov .text-wrapper,
  .section-about .section--gne .text-wrapper {
    width: 100%;
  }

  .section-about h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .section-about .divider {
    width: 64px;
    margin-bottom: 22px;
  }

  .section-about p,
  .section-about .note {
    font-size: 13px;
    line-height: 1.16;
  }

  .section-booth {
    padding: 0;
  }

  .section-booth .booth-section {
    padding-top: 42px;
  }

  .section-booth .booth-header,
  .section-reviews .reviews-container,
  .section-podcast .podcast-container,
  .section-contact .contact-container {
    width: calc(100% - 48px);
    max-width: none;
  }

  .section-booth .cards-grid {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 0;
  }

  .section-booth .card>img {
    height: 141px;
    aspect-ratio: auto;
  }

  .section-booth .card-content {
    padding: 20px 22px 28px;
  }

  .section-booth .card-title {
    font-size: 22px;
  }

  .section-reviews .reviews-header .title {
    font-size: 28px;
  }

  .section-reviews .review-title {
    font-size: 28px;
  }

  .section-podcast .podcast-container {
    padding-top: 42px;
  }

  .section-podcast .podcast-header,
  .section-podcast .podcast-content {
    text-align: center;
  }

  .section-podcast .podcast-header-title,
  .section-podcast .podcast-title {
    font-size: 32px;
  }

  .section-podcast .podcast-header-line,
  .section-podcast .podcast-divider,
  .section-podcast .btn-outline {
    margin-left: auto;
    margin-right: auto;
  }

  .section-podcast .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 196px;
  }

  .section-contact .contact-left {
    text-align: center;
  }

  .section-contact .contact-divider,
  .section-contact .contact-section .paragraph {
    margin-left: auto;
    margin-right: auto;
  }

  .section-contact .contact-container {
    row-gap: 28px;
  }
}

@media (max-width: 374px) {
  .section-hero .hero-info-bar {
    left: 18px;
    right: 82px;
  }

  .section-hero .hero-left {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-about .section,
  .section-about .section--gne {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-booth .booth-header,
  .section-booth .cards-grid,
  .section-reviews .reviews-container,
  .section-podcast .podcast-container,
  .section-contact .contact-container {
    width: calc(100% - 36px);
  }
}

/* =========================================================
   NAV — MENÚ MÓVIL / TABLET
========================================================= */
.section-hero .nav-menu-toggle span {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section-hero .navbar.open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.section-hero .navbar.open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.section-hero .navbar.open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 641px) and (max-width: 1024px),
(max-width: 640px) {
  .section-hero .navbar.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 16px;
    padding: 20px 24px;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    background: var(--bg);
    border-bottom: 0.5px solid rgba(192, 150, 58, 0.4);
    z-index: 90;
  }

  .section-hero .navbar.open .nav-links a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
  }

  .section-hero .navbar.open .nav-links a[href^="tel"] {
    font-weight: 700;
    color: var(--gold);
  }

  .section-hero .navbar.open .btn-nav-outline {
    align-self: flex-end;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .section-hero .navbar.open .nav-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .section-hero .navbar.open .nav-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


/* =========================================================
   MODAL VOOV
========================================================= */

#voovModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-sizing: border-box;
}

#voovModal *,
#voovModal *::before,
#voovModal *::after {
  box-sizing: border-box;
}

#voovModal.voov-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.voov-modal-box {
  position: relative;
  width: 308px;
  height: 423px;
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 30px);
  padding: 37px 21px 34px;
  background: #F2F2F7;
  color: #111438;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#voovModal:not(.voov-hidden) .voov-modal-box {
  transform: scale(1);
  opacity: 1;
}

.voov-modal-title {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.02;
  font-weight: 400;
  color: #111438;
}

.voov-modal-line {
  width: 66px;
  height: 1px;
  margin-top: 33px;
  margin-bottom: 32px;
  background: #C0963A;
}

.voov-modal-description {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.24;
  font-weight: 400;
  color: #111438;
}

.voov-modal-actions {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.voov-modal-button {
  width: 128px;
  height: 35px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.voov-close {
  background: transparent;
  border: 1px solid #C0963A;
  color: #68727d;
}

.voov-close:hover {
  background: #C0963A;
  border-color: #C0963A;
  color: #ffffff;
}

.voov-schedule {
  background: #C0963A;
  border: 1px solid #C0963A;
  color: #ffffff;
}

.voov-schedule:hover {
  background: #7E6326;
  border-color: #7E6326;
}

@media screen and (max-width: 480px) {
  .voov-modal-box {
    width: 308px;
    height: 423px;
  }
}

@media screen and (max-height: 500px) {
  .voov-modal-box {
    height: 390px;
    padding-top: 28px;
  }

  .voov-modal-line {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .voov-modal-actions {
    bottom: 24px;
  }
}


/* =========================================================
   MODAL CALENDLY
========================================================= */

#calendlyModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-sizing: border-box;
}

#calendlyModal *,
#calendlyModal *::before,
#calendlyModal *::after {
  box-sizing: border-box;
}

#calendlyModal.calendly-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.calendly-modal-box {
  width: min(1080px, 100%);
  height: min(760px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #F2F2F7;
  color: #111438;
  border: 1px solid rgba(192, 150, 58, 0.55);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#calendlyModal:not(.calendly-hidden) .calendly-modal-box {
  transform: scale(1);
  opacity: 1;
}

.calendly-modal-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 24px;
  background: #10102f;
  border-bottom: 1px solid rgba(192, 150, 58, 0.55);
}

.calendly-modal-title {
  margin: 0;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.calendly-modal-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  padding: 0;
  border: 1px solid rgba(192, 150, 58, 0.75);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.calendly-modal-close:hover,
.calendly-modal-close:focus-visible {
  background: #C0963A;
  color: #10102f;
  outline: none;
}

#calendlyFrame {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  border: 0;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  #calendlyModal {
    padding: 18px;
  }

  .calendly-modal-box {
    height: min(720px, calc(100vh - 36px));
  }
}

@media screen and (max-width: 480px) {
  #calendlyModal {
    align-items: stretch;
    padding: 12px;
  }

  .calendly-modal-box {
    width: 100%;
    height: calc(100vh - 24px);
  }

  .calendly-modal-header {
    min-height: 52px;
    padding-left: 16px;
  }

  .calendly-modal-title {
    font-size: 12px;
  }
}

/* =========================================================
   10. SIR BRAND GUIDELINES (Small Caps)
   ========================================================= */
.btn-gold,
.btn-gold-full,
.btn-nav-outline,
.btn-outline,
.hello-bar__text,
.promotion-bar__text,
.contact-subtitle {
  font-variant: small-caps;
}
