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

/* =========================
   VARIABLES
========================= */
:root {
  --cream: #e7e4cf;
  --beige: #ccb89f;
  --light-gray: #ececec;
  --black: #000000;
  --green: #425e54;
  --gold: #c7a86d;
  --gold-dark: #9e7e43;
  --text: #2f2f2f;
  --white: #ffffff;
  --soft-white: #faf8f3;
  --border: rgba(199, 168, 109, 0.35);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

/* =========================
   BASE
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--soft-white);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.center-content {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  position: relative;
}

.section-label::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2,
.main-title,
.final-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.08;
  color: #6d5428;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.main-title {
  max-width: 900px;
  margin: 0 auto 32px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  text-transform: uppercase;
}

.section-highlight {
  text-align: center;
  margin-top: 35px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #5e4a24;
  text-transform: uppercase;
}

.section-subhighlight {
  text-align: center;
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--green);
  font-style: italic;
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BOTONES
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(158, 126, 67, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(158, 126, 67, 0.35);
}

.btn-large {
  flex-direction: column;
  gap: 2px;
  padding: 18px 34px;
  text-align: center;
}

.btn-large span:last-child {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  opacity: 0.95;
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.82rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
}

.btn-whatsapp {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}

.btn-whatsapp:hover {
  background: #33483f;
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199, 168, 109, 0.18);
}

.header-container {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-riman {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border: 1px solid rgba(199, 168, 109, 0.4);
  background: #ffffff;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.flag-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #5f5135;
  font-size: 0.92rem;
  font-weight: 500;
}

/* =========================
   HERO BANNER
========================= */
.hero-banner {
  background: var(--cream);
}

.hero-banner-img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

/* =========================
   SECCIÓN 1
========================= */
.section-hero-content {
  background: linear-gradient(to bottom, rgba(231, 228, 207, 0.55), rgba(250, 248, 243, 1));
}

.video-wrapper {
  max-width: 820px;
  margin: 0 auto 28px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-video {
  width: 100%;
  background: #d8d8d8;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #4a4a4a;
  text-transform: uppercase;
}

/* =========================
   BENEFICIOS
========================= */
.section-benefits {
  background: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.benefit-card h3 {
  padding: 24px 18px 28px;
  font-size: 1rem;
  text-align: center;
  color: #5b4b26;
  letter-spacing: 0.04em;
}

/* =========================
   BONO
========================= */
.section-bono {
  background: #faf8f3;
}

.bono-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.bono-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bono-image-box {
  width: 100%;
  background: #ffffff;
  border-radius: 25px;
  padding: 18px;
  border: 1px solid rgba(199, 168, 109, 0.35);
  box-shadow: var(--shadow);
}

.bono-img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.bono-btn {
  margin-top: 24px;
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #c7a86d, #9e7e43);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 25px rgba(158, 126, 67, 0.35);
  transition: 0.3s;
}

.bono-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(158, 126, 67, 0.45);
}

.bono-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bono-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #6d5428;
  margin-bottom: 15px;
}

.bono-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
}

.custom-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
  color: #425e54;
  font-weight: 500;
}

.custom-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #c7a86d;
  font-size: 18px;
}

/* =========================
   TEAM
========================= */
.section-team {
  background: var(--green);
  color: var(--white);
}

.section-team .section-label,
.section-team h2,
.team-text,
.team-note {
  color: var(--white);
}

.section-team .section-label::after {
  background: var(--gold);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: end;
  margin-top: 18px;
}

.team-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(199, 168, 109, 0.32);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.team-card-content {
  padding: 22px 20px 24px;
}

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff4df;
}

.team-card-center {
  transform: translateY(-36px);
}

.team-text {
  max-width: 900px;
  margin: 38px auto 12px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
}

.team-note {
  text-align: center;
  font-size: 1rem;
  color: #f3ead4;
}

/* =========================
   PRODUCTOS
========================= */
.section-products {
  background: var(--cream);
}

.products-block {
  margin-top: 20px;
}

.products-block + .products-block {
  margin-top: 70px;
}

.products-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #5c4923;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.products-subtitle::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}

.products-grid {
  display: grid;
  gap: 24px;
}

.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

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

.product-content {
  padding: 22px 18px 24px;
  text-align: center;
}

.product-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #5c4923;
  font-family: 'Cormorant Garamond', serif;
}

.product-content p {
  font-size: 0.96rem;
  color: #505050;
  line-height: 1.6;
}

/* =========================
   EXPERIENCIA
========================= */
.section-experience {
  background: var(--light-gray);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

/* =========================
   FORMULARIO
========================= */
.section-form {
  background: linear-gradient(180deg, rgba(204, 184, 159, 0.32), rgba(250, 248, 243, 1));
}

.form-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.reservation-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4e432c;
}

.form-group input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(66, 94, 84, 0.2);
  border-radius: 16px;
  background: #fffefb;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 168, 109, 0.15);
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.advisor-option {
  display: block;
  cursor: pointer;
  background: #fcfaf4;
  border: 1px solid rgba(199, 168, 109, 0.25);
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.advisor-option input {
  display: none;
}

.advisor-option img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.advisor-option span {
  display: block;
  padding: 14px 10px 16px;
  font-weight: 600;
  color: #4b4332;
}

.advisor-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.advisor-option input:checked + img + span {
  background: rgba(199, 168, 109, 0.12);
  color: #5a441d;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  font-size: 0.98rem;
}

.urgent-call {
  margin-top: 24px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8f2d2d;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================
   CTA FINAL
========================= */
.section-final-cta {
  background: var(--black);
  color: var(--white);
}

.final-title {
  color: #f3ead4;
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 14px;
}

.final-subtitle {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--green);
  padding: 28px 0;
}

.footer-container {
  text-align: center;
  color: var(--white);
}

.footer-logo {
  width: 95px;
  margin: 0 auto 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .bono-layout {
    grid-template-columns: 1fr;
  }

  .team-card-center {
    transform: translateY(-20px);
  }
}

@media (max-width: 860px) {
  .header-container {
    flex-direction: column;
    justify-content: center;
    padding: 15px 0;
  }

  .header-right {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .nav {
    display: none;
  }

  .benefits-grid,
  .team-grid,
  .products-grid-3,
  .experience-grid,
  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .team-card-center {
    transform: none;
  }

  .benefit-card img,
  .team-card img,
  .experience-card img,
  .advisor-option img,
  .product-card img {
    height: auto;
  }

  .form-box {
    padding: 24px 18px;
  }

  .section {
    padding: 72px 0;
  }

  .main-title {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }
}

@media (max-width: 560px) {
  .logo-riman {
    width: 90px;
  }

  .btn,
  .btn-large,
  .bono-btn {
    width: 100%;
  }

  .main-title,
  .section-heading h2,
  .final-title {
    line-height: 1.12;
  }

  .language-switcher {
    justify-content: center;
  }
}

/* BOTÓN DORADO */
.btn-primary {
  background-color: #c8a96a;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #b89655;
}
