/* ============================================
   CONFLUIR EXPERIENCIAS — Design System
   ============================================ */

:root {
  /* Colors — Earthy & Warm */
  --c-cream:      #F5F0E8;
  --c-sand:       #E8DFD0;
  --c-warm-white: #FAF8F4;
  --c-olive:      #4A5340;
  --c-olive-dark: #3A4232;
  --c-forest:     #2C3527;
  --c-dark:       #1A1E17;
  --c-charcoal:   #2A2A2A;
  --c-brown:      #8B7355;
  --c-terracotta: #B87A5A;
  --c-gold:       #C4A265;
  --c-text:       #3A3A3A;
  --c-text-light: #6B6B6B;
  --c-text-inv:   #E8E4DC;
  --c-border:     #D4CFC4;

  /* Typography */
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Inter', -apple-system, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul { list-style: none; }

/* ============================================
   Utilities
   ============================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.text--lead {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: var(--sp-md);
}

.text--light {
  color: var(--c-text-inv);
  opacity: 0.85;
}

.text--accent {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-terracotta);
}

.text--highlight {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1.6;
  padding: var(--sp-md) 0;
  border-left: 2px solid var(--c-gold);
  padding-left: var(--sp-md);
  margin: var(--sp-md) 0;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

.btn--primary {
  background: var(--c-terracotta);
  color: #fff;
}

.btn--primary:hover {
  background: var(--c-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 122, 90, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--c-olive);
  border: 1.5px solid var(--c-olive);
}

.btn--outline:hover {
  background: var(--c-olive);
  color: #fff;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-md) 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  padding: var(--sp-sm) 0;
  box-shadow: 0 1px 0 var(--c-border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  transition: color 0.4s var(--ease-smooth);
}

.nav.scrolled .nav__logo {
  color: var(--c-olive-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease-smooth);
}

.nav.scrolled .nav__links a {
  color: var(--c-text-light);
}

.nav__links a:hover {
  color: #fff;
}

.nav.scrolled .nav__links a:hover {
  color: var(--c-olive);
}

.nav__cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease-smooth) !important;
}

.nav.scrolled .nav__cta {
  border-color: var(--c-olive) !important;
  color: var(--c-olive) !important;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav.scrolled .nav__cta:hover {
  background: var(--c-olive) !important;
  color: #fff !important;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease-smooth);
}

.nav.scrolled .nav__toggle span {
  background: var(--c-charcoal);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 30, 23, 0.55) 0%,
      rgba(26, 30, 23, 0.35) 40%,
      rgba(26, 30, 23, 0.7) 100%
    ),
    linear-gradient(135deg,
      #4A5340 0%,
      #6B7F5A 25%,
      #8B9B72 50%,
      #A8B090 75%,
      #C4CBA8 100%
    );
  background-size: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-xl);
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto var(--sp-lg);
}

.hero__subtitle {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

.hero__description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--sp-lg);
  line-height: 1.8;
}

.hero__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-xl);
}

.hero__pin {
  color: var(--c-terracotta);
  font-size: 0.6rem;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: var(--sp-3xl) 0;
}

.section--cream {
  background: var(--c-cream);
}

.section--sand {
  background: var(--c-sand);
}

.section--dark {
  background: var(--c-dark);
}

.section--olive {
  background: var(--c-olive);
}

.section__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-sm);
}

.section__eyebrow--light {
  color: var(--c-gold);
}

.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--c-charcoal);
  line-height: 1.2;
}

.section__title--light {
  color: var(--c-text-inv);
}

.section__subtitle {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--c-text-light);
  margin-top: var(--sp-xs);
}

/* ============================================
   Por Qué Section
   ============================================ */

.por-que__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  max-width: 900px;
  margin: 0 auto;
}

.por-que__text p {
  margin-bottom: var(--sp-md);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   Origen Section
   ============================================ */

.origen__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.origen__column p {
  margin-bottom: var(--sp-md);
  font-size: 1rem;
  line-height: 1.8;
}

.origen__quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-xl) 0;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
}

.origen__quote blockquote p:first-child {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1.5;
  margin-bottom: var(--sp-md);
}

.origen__quote-sub {
  font-size: 1rem;
  color: rgba(232, 228, 220, 0.6);
  line-height: 1.7;
}

/* ============================================
   Destinos Section
   ============================================ */

.destinos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.destino-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border-radius: 4px;
}

.destino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.destino-card__image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.destino-card__image--maranhao {
  background: url('images/maranhao/banner.jpg') center/cover no-repeat;
}

.destino-card__image--minas {
  background: url('images/minas_gerais/banner.jpg') center/cover no-repeat;
}

.destino-card__image--bahia {
  background: url('images/bahia/banner.jpg') center/cover no-repeat;
}

.destino-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

.destino-card__badge {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
}

.destino-card__body {
  padding: var(--sp-lg);
}

.destino-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-xs);
}

.destino-card__title {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-xs);
}

.destino-card__subtitle {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text-light);
  margin-bottom: var(--sp-md);
}

.destino-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-light);
  margin-bottom: var(--sp-lg);
}

.destinos__note {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--c-text-light);
}

/* ============================================
   Experiencia Section
   ============================================ */

.experiencia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  max-width: 800px;
  margin: 0 auto var(--sp-xl);
}

.experiencia__item {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
}

.experiencia__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-md);
  color: var(--c-olive);
}

.experiencia__item h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-charcoal);
}

.experiencia__closing {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--c-charcoal);
  line-height: 1.6;
}

/* ============================================
   Comunidad Section
   ============================================ */

.comunidad__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}

.comunidad__content p {
  margin-bottom: var(--sp-sm);
}

.comunidad__testimonios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  max-width: 800px;
  margin: 0 auto var(--sp-lg);
}

.testimonio {
  text-align: center;
  padding: var(--sp-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.4s var(--ease-smooth);
}

.testimonio:hover {
  background: rgba(255, 255, 255, 0.05);
}

.testimonio p {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}

.comunidad__note {
  text-align: center;
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

/* ============================================
   Quién Soy Section
   ============================================ */

.quien__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.quien__photo-placeholder {
  width: 260px;
  height: 320px;
  background: url('images/about_me/image1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 4px;
}

.quien__photo-placeholder span {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.quien__text p {
  margin-bottom: var(--sp-md);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   Reservar Section
   ============================================ */

.reservar__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-xl);
  flex-wrap: wrap;
}

.reservar__step {
  text-align: center;
  padding: var(--sp-md) var(--sp-lg);
}

.reservar__number {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--c-olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--c-olive);
  margin: 0 auto var(--sp-sm);
}

.reservar__step p {
  font-size: 0.95rem;
  max-width: 200px;
}

.reservar__connector {
  width: 60px;
  height: 1px;
  background: var(--c-border);
}

.reservar__notes {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.reservar__notes p {
  margin-bottom: var(--sp-sm);
  font-size: 1rem;
}

.reservar__tip {
  font-size: 0.85rem !important;
  color: var(--c-text-light);
  font-style: italic;
  margin-top: var(--sp-md) !important;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.contact-form__field {
  margin-bottom: var(--sp-md);
}

.contact-form__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-xs);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--c-text-inv);
  transition: border-color 0.3s var(--ease-smooth);
  outline: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--c-gold);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: var(--sp-sm);
}

.contact-form__success {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--c-gold);
  margin-top: var(--sp-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.contact-form__success.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--c-forest);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-text-inv);
  margin-bottom: var(--sp-sm);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-xs);
}

.footer__tags {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.35) !important;
  letter-spacing: 0.05em;
}

.footer__expeditions h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-text-inv);
  margin-bottom: var(--sp-sm);
}

.footer__expeditions ul {
  margin-bottom: var(--sp-md);
}

.footer__expeditions li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-xs);
}

.footer__expeditions > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer__legal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__legal-item h5 {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--sp-xs);
}

.footer__legal-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
}

.footer__bottom {
  padding-top: var(--sp-lg);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .por-que__grid,
  .origen__content,
  .destinos__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

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

  .quien__photo-placeholder {
    width: 200px;
    height: 240px;
  }

  .comunidad__testimonios {
    grid-template-columns: 1fr;
  }

  .footer__legal {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .experiencia__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .section {
    padding: var(--sp-2xl) 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--c-warm-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-lg);
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    color: var(--c-text) !important;
    font-size: 0.9rem;
  }

  .nav__cta {
    border-color: var(--c-olive) !important;
    color: var(--c-olive) !important;
  }

  .hero__content {
    padding: var(--sp-lg) var(--sp-md);
  }

  .hero__description br {
    display: none;
  }

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

  .reservar__connector {
    display: none;
  }

  .reservar__steps {
    flex-direction: column;
  }

  .experiencia__grid {
    grid-template-columns: 1fr;
  }

  .destino-card__image {
    height: 200px;
  }

  .hero__scroll {
    display: none;
  }
}
