/* =========================
   JC Sakura - Viaje Japón 2027
   Ajustes landing page
========================= */

:root {
  --jcs-red: #d71920;
  --jcs-red-dark: #b9141b;
  --jcs-dark: #111827;
  --jcs-text: #263238;
  --jcs-muted: #6b7280;
  --jcs-light: #f7f7f8;
  --jcs-border: #e5e7eb;
  --jcs-white: #ffffff;
  --jcs-soft-red: #fff1f2;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--jcs-text);
  line-height: 1.65;
  background: #ffffff;

}

h1, h2, h3, h4, h5 {
  color: var(--jcs-dark);
  font-weight: 800;
  line-height: 1.12;
}

p {
  color: var(--jcs-muted);
}

/*.include-grid, .form-benefits{
  font-size: 1rem;
}*/

.text-red { color: var(--jcs-red); }
.text-white-70 { color: rgba(255,255,255,.7) !important; }

section { position: relative; }

.py-5 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

/* HERO */

.hero-viaje-japon {
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 45%, rgba(0,0,0,.18) 100%),
    url("imgs/lp-viaje/hero-viaje-japon-2027.webp");
  background-size: cover;
  background-position: center;
}

.hero-viaje-japon h1,
.hero-viaje-japon h2,
.hero-viaje-japon h3,
.hero-viaje-japon p,
.hero-viaje-japon span {
  color: #ffffff;
}

.logo-sakura-hero {
  width: clamp(150px, 18vw, 230px);
  height: auto;
  display: block;
}

.min-vh-75 { min-height: 75vh; }

.eyebrow-viraje,
.section-kicker {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--jcs-red);
  margin-bottom: .85rem;
}

.eyebrow-viraje {
  color: #ffffff;
  background: rgba(215, 25, 32, .95);
  padding: .45rem .9rem;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  max-width: 780px;
  letter-spacing: -.04em;
}

.hero-lead {
  max-width: 690px;
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  line-height: 1.55;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-weight: 700;
  font-size: .95rem;
}

.hero-points i { color: #ffffff; }

/* BOTONES */

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .85rem 1.35rem;
}

.btn-danger {
  background: var(--jcs-red);
  border-color: var(--jcs-red);
}

.btn-danger:hover {
  background: var(--jcs-red-dark);
  border-color: var(--jcs-red-dark);
}

.btn-outline-light:hover { color: var(--jcs-dark); }

/* SECCIONES GENERALES */

.bg-light { background-color: var(--jcs-light) !important; }

.bg-dark {
  background:
    radial-gradient(circle at top left, rgba(215,25,32,.22), transparent 32%),
    linear-gradient(135deg, #101010 0%, #1f2937 100%) !important;
}

section h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  margin-bottom: 1rem;
  letter-spacing: -.025em;
}

section .lead {
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  color: #4b5563;
}

/* CARDS / ICONOS */

.feature-card,
.profile-box,
.kommo-form-box,
.itinerary-card,
.itinerary-note {
  background: #ffffff;
  border: 1px solid var(--jcs-border);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,.07);
}

.feature-card {
  padding: 2rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.itinerary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--jcs-soft-red);
  color: var(--jcs-red);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.icon-circle.small {
  width: 42px;
  height: 42px;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.feature-card h3,
.itinerary-card h3 { margin-bottom: .75rem; }

/* LISTAS */

ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .85rem;
  color: #374151;
}

ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--jcs-red);
  font-weight: 900;
}

/* TRANSFORMACION */

.dream-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  background: #111827;
}

.dream-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.dream-card:hover img {
  transform: scale(1.04);
}

.dream-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
}

.dream-card-content {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
}

.dream-card-content h3,
.dream-card-content p {
  color: #ffffff;
}

.dream-card-content h3 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.dream-card-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.transform-box {
  padding: 2.5rem;
}

.mini-benefit {
  background: #ffffff;
  border: 1px solid var(--jcs-border);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  height: 100%;
  font-weight: 700;
  color: var(--jcs-dark);
}

.mini-benefit i {
  color: var(--jcs-red);
  font-size: 1.2rem;
  margin-top: .15rem;
}

/* QUÉ INCLUYE */

.include-item {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--jcs-border);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  font-weight: 800;
  color: var(--jcs-dark);
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.include-item i {
  color: var(--jcs-red);
  font-size: 1.25rem;
  min-width: 24px;
}

/* IMAGEN EN QUÉ INCLUYE */

.include-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.include-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.include-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.72) 100%);
}

.include-photo-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: #ffffff;
}

.include-photo-caption strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: .35rem;
}

.include-photo-caption span {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
}

/* GALERÍA */

#galeria img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: transform .25s ease;
}

#galeria img:hover { transform: scale(1.03); }

#galeria video {
  max-height: 520px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* VIDEO PREMIUM */

.video-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.video-cover {
  position: relative;
  cursor: pointer;
}

.video-cover img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
  height: auto !important;
}

.video-cover:hover img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 100%);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--jcs-red);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: all .25s ease;
}

.video-cover:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-real {
  width: 100%;
  display: block;
}



/* ITINERARIO */

.itinerary-card {
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.itinerary-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #e5e7eb;
}

.itinerary-card-body { padding: 1.5rem; }

.itinerary-card h3 {
  color: var(--jcs-red);
  font-size: 1.35rem;
}

.itinerary-card p { margin-bottom: 0; }

.itinerary-note {
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.itinerary-note i {
  color: var(--jcs-red);
  font-size: 1.35rem;
  margin-top: .2rem;
}

/* PERFIL */

.profile-box { padding: 2.5rem; }
.profile-box-dark { background: var(--jcs-dark); }
.profile-box-dark h2,
.profile-box-dark li { color: #ffffff; }
.profile-box-dark li::before { color: #ffffff; }

.perfil-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 20px 55px rgba(0,0,0,.2);
}

.perfil-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.perfil-image:hover img {
  transform: scale(1.04);
}

.perfil-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.75) 100%);
  display: flex;
  align-items: flex-end;
}

.perfil-text {
  padding: 1.8rem;
  color: #fff;
}

.perfil-text strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
}

.perfil-text span {
  display: block;
  font-size: 1rem;
  opacity: .9;
}

/* FORMULARIO KOMMO */

.form-benefits {
  display: grid;
  gap: .85rem;
  margin-top: 1.5rem;
}

.form-benefits div {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-weight: 800;
  color: var(--jcs-dark);
}

.form-benefits i { color: var(--jcs-red); }

.kommo-form-box { padding: 2rem; }

.kommo-placeholder {
  min-height: 360px;
  border: 2px dashed #cbd5e1;
  border-radius: 20px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* FAQ */

.accordion-item {
  border: 1px solid var(--jcs-border);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-button {
  font-weight: 800;
  color: var(--jcs-dark);
}

.accordion-button:not(.collapsed) {
  color: var(--jcs-red);
  background: var(--jcs-soft-red);
}

/* CTA FINAL */

#cta-final h2,
#cta-final p,
#cta-final .section-kicker { color: #ffffff; }

#cta-final {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .hero-viaje-japon {
    min-height: auto;
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
    background-position: center;
  }

  .hero-title { font-size: 2.8rem; }
  section h2 { font-size: 2.15rem; }
  .profile-box { padding: 2rem; }

  .include-photo {
    min-height: 300px;
  }

  .include-photo img {
    min-height: 300px;
  }

}

@media (max-width: 575px) {
  .py-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .logo-sakura-hero { width: 145px; }
  .hero-title { font-size: 2.25rem; }
  .hero-lead { font-size: 1.05rem; }
  .btn-lg { width: 100%; }
  #galeria img { height: 220px; }
  .kommo-form-box { padding: 1.5rem; }
  .itinerary-card img { height: 220px; }

  .dream-card,
  .dream-card img {
    min-height: 340px;
  }

  .dream-card-content {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .dream-card-content h3 {
    font-size: 1.6rem;
  }

  .transform-box {
    padding: 1.5rem;
  }

}
