/* ==========================================================================
   DISNEY CSS - CONSOLIDADO (PASOS 1, 2 y 3)
   ========================================================================== */

:root {
  --disney-blue: #0072bc;
  --disney-dark: #01233a;
  --disney-gold: #ffcc00;
  --white: #ffffff;
  --dark: #1a1a1a;
  --font-main: "Roboto", sans-serif;
  --font-hand: "Caveat", cursive;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* RESET ESTRUCTURAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.4;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

/* UTILIDADES */
.highlight {
  color: var(--disney-gold) !important;
  font-weight: 700;
  font-family: var(--font-hand);
}
.handwritten {
  font-family: var(--font-hand);
  color: var(--disney-blue);
  font-size: 1.3em;
}

/* 1. NAVBAR CORREGIDA */
header nav.navbar {
  background: linear-gradient(
    90deg,
    var(--disney-dark) 0%,
    var(--disney-blue) 100%
  ) !important;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
 
}
.logo img {
  height: 50px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--disney-gold);
}

/* 2. HERO SECTION RESTAURADO */
.hero-disney {
  height: 85vh;
  margin-top: var(--nav-height);
  background:
    linear-gradient(rgba(1, 35, 58, 0.7), rgba(0, 114, 188, 0.5)),
    url("../sources/img/disney-home.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* 3. STORYTELLING CARDS (Vive la Magia) */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 8%;
  background-color: var(--white);
}
.story-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.story-card:hover {
  transform: translateY(-10px);
}

/* IMÁGENES DE LAS CARDS */
.card-header-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.story-card:hover .card-header-img {
  transform: scale(1.1);
}

/* Vincular IDs de fotos del HTML */
.disney-bg {
  background-image: url("../sources/img/disney-card.jpg");
  background-color: #001f3f;
}
.universal-bg {
  background-image: url("../sources/img/universal-card.jpg");
  background-color: #001f3f;
}
.disney-cruise-bg {
  background-image: url("../sources/img/cruise-card.jpg");
  background-color: #001f3f;
}

.card-body {
  padding: 30px;
  text-align: center;
}
.card-body h3 {
  margin-bottom: 15px;
  color: var(--disney-dark);
}

/* 4. BOTONES (JERARQUÍA UX/UI) */
.btn-main,
.btn-next,
.btn-submit {
  display: inline-block;
  padding: 18px 35px;
  background-color: var(--disney-gold) !important;
  color: var(--disney-dark) !important;
  text-decoration: none;
  font-weight: 800;
  border-radius: 1px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-back {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  padding: 16px 30px;
  border-radius: 1px;
  cursor: pointer;
  font-weight: 600;
}

/* 5. MENU BURGER */
.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px;
}

/* RESPONSIVE UNIFICADO */
@media screen and (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 70%;
    background: linear-gradient(
    90deg,
    var(--disney-dark) 0%,
    var(--disney-blue) 100%
  ) !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }
  .nav-active {
    transform: translateX(0);
  }

  .hero-title {
    font-size: 2.2rem;
  }
  .btn-main,
  .btn-next,
  .btn-submit {
    width: 100% !important;
    margin: 10px auto;
    display: block;
    text-align: center;
  }
}
/* ==========================================================================
   PASO 4 Y 5: FORMULARIO, TESTIMONIOS Y MARCAS (CIERRE VISUAL)
   ========================================================================== */

/* SECCIÓN FORMULARIO */
.form-section-premium {
  background-color: #f0f2f5;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

.form-container-card {
  background: linear-gradient(
    135deg,
    var(--disney-dark) 0%,
    var(--disney-blue) 100%
  );
  width: 100%;
  max-width: 600px;
  padding: 50px;
  border-radius: 10px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-container-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.form-step {
  display: none;
}
.step-active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-indicator {
  display: block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--disney-gold);
  font-weight: 700;
  text-align: center;
}

.input-container {
  margin-bottom: 20px;
}
.input-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.input-container input,
.input-container select {
  width: 100%;
  padding: 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.input-container input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--disney-gold);
}

.btn-footer {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* TESTIMONIOS (Jerarquía UX) */
.testimonials {
  padding: 80px 5%;
  background-color: var(--white);
  text-align: center;
}

.fb-comments-style {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.comment-card {
  background: #f0f2f5;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 5px solid var(--disney-blue);
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ccc; /* Placeholder */
}

/* MARCAS Y FOOTER */
.partners {
  padding: 60px 5%;
  text-align: center;
  background: #f9f9f9;
}
.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.logos-container img {
  max-height: 45px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition);
}

.logos-container img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

footer {
  background: linear-gradient(
    90deg,
    var(--disney-dark) 0%,
    var(--disney-blue) 100%
  ) !important;
  color: var(--white);
  padding: 50px 5%;
  text-align: center;
}

.img-footer {
  height: 30px;
  margin-bottom: 10px;
}

/* COTIZAR FLOTANTE (Marketing Digital) */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--disney-gold);
  color: var(--disney-dark);
  padding: 15px 25px;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  transition: var(--transition);
}

.floating-cta:hover {
  transform: scale(1.1);
}

/* Ajuste final Mobile para botones del formulario */
@media screen and (max-width: 768px) {
  .btn-footer {
    flex-direction: column;
  }
  .form-container-card {
    padding: 30px 20px;
  }
  .floating-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
    text-align: center;
    border-radius: 1px;
  }
}
/* Animación de la X del burger */
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   PASO 5: PRUEBA SOCIAL Y AUTORIDAD (TESTIMONIOS Y MARCAS)
   ========================================================================== */

/* CONTENEDOR DE TESTIMONIOS OPTIMIZADO */
.testimonials {
  background:
    linear-gradient(rgba(240, 242, 245, 0.9), rgba(240, 242, 245, 0.9)),
    url("../sources/img/background-magic.jpg") center/cover fixed; /* Fondo sutil */
  padding: 100px 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--disney-dark);
  margin-top: 10px;
  margin-bottom: -20px;
}

/* Estilo Facebook/Red Social Premium */
.fb-comments-style {
  max-width: 800px;
  margin: 0 auto;
}

.comment-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e4e8;
  transition: var(--transition);
}

.comment-card:hover {
  transform: translateX(10px);
  border-left: 5px solid var(--disney-blue);
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--disney-blue);
}

.user-info strong {
  display: block;
  color: #365899; /* Azul típico de nombres en FB */
  font-size: 1.1rem;
}

.user-info span {
  font-size: 0.8rem;
  color: #90949c;
}

.comment-text {
  font-size: 1rem;
  color: #1c1e21;
  line-height: 1.5;
  font-style: italic;
}

/* SECCIÓN MARCAS (AUTORIDAD) */
.partners {
  padding: 80px 5%;
  text-align: center;
  background-color: var(--white);
  border-top: 1px solid #eee;
}

.partners-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--disney-dark);
}

.partners-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.logos-container img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.5s ease;
}

.logos-container img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* FOOTER FINAL */
footer {
  background-color: var(--disney-dark);
  color: var(--white);
  padding: 60px 5% 40px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.img-footer {
  height: 30px;
  margin-bottom: -5px;
}

.footer-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0px;
}

/* AJUSTES RESPONSIVE FINALES */
@media screen and (max-width: 768px) {
  .comment-card:hover {
    transform: none; /* Evitamos el desplazamiento lateral en móviles */
  }
  .logos-container {
    gap: 30px;
  }
  .logos-container img {
    max-height: 35px;
  }
}

/* ==========================================================================
   ESTILO DE TESTIMONIOS (FACEBOOK STYLE)
   ========================================================================== */
.fb-comments-style {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.comment-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e1e4e8;
  text-align: left;
  transition: var(--transition);
}

.comment-card:hover {
  border-left: 5px solid var(--disney-blue);
  transform: translateX(5px);
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.user-info strong {
  display: block;
  font-size: 1rem;
  color: #365899; /* Azul característico de FB */
  cursor: pointer;
}

.user-info strong:hover {
  text-decoration: underline;
}

.user-info span {
  font-size: 0.8rem;
  color: #90949c;
}

.comment-text {
  font-size: 0.95rem;
  color: #1c1e21;
  line-height: 1.5;
}

/* Contenedor de botones del formulario */
.btn-footer {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Estilo para el botón Atrás (UX Secundaria) */
.btn-back {
  display: inline-block;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--white);
}
/* BARRA DE PROGRESO */
.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--disney-gold);
  width: 25%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FORMULARIO */
.form-section-premium {
  padding: 80px 5%;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
}
.form-container-card {
  background: linear-gradient(
    135deg,
    var(--disney-dark) 0%,
    var(--disney-blue) 100%
  );
  width: 100%;
  max-width: 600px;
  padding: 50px;
  border-radius: 10px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-step {
  display: none;
}
.step-active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PASO 1: CAJAS SELECCIONABLES */
.radio-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.custom-selection-box {
  cursor: pointer;
  width: 100%;
}
.custom-selection-box input {
  display: none;
}
.box-content {
  display: block;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.custom-selection-box input:checked + .box-content {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--disney-gold);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* INPUTS GENERALES */
.input-container {
  margin-bottom: 20px;
  text-align: left;
}
.input-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.input-container input,
.input-container select {
  width: 100%;
  padding: 14px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}
.input-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* BOTONES FORM */
.btn-next,
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--disney-gold);
  color: var(--disney-dark);
  border: none;
  border-radius: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-back {
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  cursor: pointer;
}
.btn-footer {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
