#root {
  margin: 0 auto;
  text-align: center;
}

.flex {
  display: flex;
}

.d-none-mobile {
  display: none !important;
}

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

.cursor-pointer {
  cursor: pointer;
}

.logo-section {
  display: flex;
  align-items: center;
  max-width: 1118px;
  margin: 2rem auto 0;
  padding-left: 3rem;
}

.revelio-world {
  margin-left: 12px;
}

/* Tour App Styles */

.tour-app {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto auto 2rem;
  max-width: 1118px;
}

.hero-image {
  flex: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  flex: 1;
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
}

.hero-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 5%;
  text-align: center;
}

.highlight-text {
  color: #e8864a;
}

.hero-subtitle {
  font-size: 30px;
  margin: 0 0 1.5rem;
  color: #222;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .hero-section {
    display: flex;
    flex-direction: row;
  }

  .hero-content,
  .hero-image {
    padding: 2rem;
  }

  .hero-image {
    display: none;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 36px;
  }

  .features-list {
    flex-direction: column;
    gap: 1rem;
  }

  .benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .tour-card-new {
    height: 280px;
  }

  .button {
    font-size: 22px;
  }

  .arrow-icon {
    font-size: 1.7rem;
  }
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  justify-content: center;
  background-color: #fff0e6;
  color: #813400;
  border-radius: 100px;
  padding: 12px 20px;
}

.feature-item div {
  gap: 1rem;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8864a;
}

.feature-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 5%;
  text-align: center;
}

/* Button */
.button {
  background-color: #e2762a;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 1rem;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 1rem 0;
  text-decoration: none;
}

.button:hover {
  background-color: rgb(206, 108, 42);
}

.button:disabled {
  background-color: #f0bb94;
  cursor: not-allowed;
}

.last-buy-button {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.arrow-icon {
  font-size: 1.5rem;
  margin-left: 10px;
}

/* Tours Section */
.tours-section {
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

.tours-section h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 5%;
  margin-bottom: 44px;
}

/* Tour Cards - New Design */
.carousel-container {
  width: auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1117px) {
  .carousel-container {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .carousel-container {
    scrollbar-width: none; /* For Firefox */
  }

  .carousel-container::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
  }
}

.tour-card-img {
  scroll-snap-align: start;
}

/* How It Works Section */
.how-it-works {
  padding: 1.5rem;
}

.how-it-works h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 5%;
  margin-bottom: 44px;
}

/* Benefits Section */
.benefits-section {
  padding: 1.5rem;
}

.benefits-section h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 5%;
  margin-bottom: 44px;
}

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff0e6;
  border-radius: 1rem;
  padding: 1.3rem 1.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #b95500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 5%;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 5%;
}

.benefit-card p {
  margin-top: 0.8rem;
  font-weight: 400;
  letter-spacing: 5%;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #2e2e2e;
}

/* Final CTA */
.final-cta {
  max-width: 1118px;
  margin: 2rem auto 1rem;
  padding-left: 24px;
  padding-right: 24px;
}

.final-cta-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.8rem;
  color: #888;
}

/* Step Pages Styles */
.step-container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

.logo-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2rem;
}

.option-card {
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #868686;
  border-radius: 15px;
}

.option-card.selected {
  border-color: #ffb689;
  background-color: #fff6e8;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

/* Registration Form Styles */
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.registration-form input {
  width: auto;
  border-radius: 8px;
  border-width: 1px;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border: 1px solid #868686;
  font-size: 16px;
}

.registration-form input:focus {
  border-color: #ffb371;
  box-shadow: 0 0 3px #ffb371;
  outline: none;
}

.form-label {
  margin-top: 24px;
}

input#phone {
  width: 100%;
}

#error {
  color: red;
  margin-top: 16px;
}

/* Completion Page Styles */
.completion-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.illustration-container {
  margin-bottom: 2rem;
}

.completion-illustration {
  max-width: 100%;
  height: auto;
}

.completion-title {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 5%;
  text-align: center;
}

.completion-message {
  font-weight: 500;
}

.completion-submessage {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 5%;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: calc(60px * 0.7);
}
.store-buttons > a {
  flex: 1;
}

.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202020;
  border-radius: 8px;
  padding: 8px 36px;
  width: 250px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn-dark:hover {
  background-color: #333;
}

.oferta-text {
  width: 100%;
  max-width: 1118px;
  margin: auto;
}
.oferta-text p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  color: #0b4400;
  background-color: #cbe5ae;
  padding: 10px;
  margin-bottom: 0;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .d-none-mobile {
    display: flex !important;
  }

  .d-none-web {
    display: none;
  }

  .known-section {
    display: flex;
    flex-direction: row;
    max-width: 1118px;
    margin: auto auto 2rem;
  }

  .features-list {
    flex-direction: column;
    gap: 1rem;
  }

  .benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .tour-card-new {
    height: 280px;
  }

  .button {
    font-size: 22px;
  }

  .arrow-icon {
    font-size: 1.7rem;
  }

  .tour-card-img {
    width: 165px;
  }
}
