@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-ink: #17304a;
  --color-ink-soft: #3e5870;
  --color-sunrise: #f4b860;
  --color-coral: #d66a4a;
  --color-cream: #fff8ee;
  --color-blush: #ffe9d2;
  --color-sand: #dcc4a7;
  --color-line: rgba(23, 48, 74, 0.15);
  --color-surface: rgba(255, 249, 240, 0.86);
  --color-surface-strong: #fffef9;
  --color-texto: #243343;
  --color-texto-suave: #5d6b7a;
  --color-primario: #17304a;
  --color-secundario: #d66a4a;
  --color-fondo: #fff8ee;
  --sombra-xl: 0 34px 90px rgba(23, 48, 74, 0.17);
  --sombra-lg: 0 22px 54px rgba(23, 48, 74, 0.14);
  --sombra-md: 0 13px 30px rgba(23, 48, 74, 0.1);
  --radio-xl: 34px;
  --radio-lg: 26px;
  --radio-md: 18px;
  --fuente-base: 'Plus Jakarta Sans', sans-serif;
  --fuente-display: 'Fraunces', Georgia, serif;
  --fuente-script: 'Caveat', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fuente-base);
  background:
    radial-gradient(circle at top left, rgba(244, 184, 96, 0.25), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(214, 106, 74, 0.15), transparent 28%),
    linear-gradient(180deg, #fff7eb 0%, #fffef8 53%, #fbf0e1 100%);
  color: var(--color-texto);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 48, 74, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 48, 74, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 25% 20%, rgba(214, 106, 74, 0.12) 0%, transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(244, 184, 96, 0.12) 0%, transparent 32%);
  background-size: 32px 32px, 32px 32px, 420px 420px, 420px 420px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 85%);
  pointer-events: none;
  opacity: 0.46;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 8px
  );
  opacity: 0.24;
}

main,
section,
header,
footer {
  position: relative;
}

a {
  color: var(--color-ink);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--fuente-display);
  color: var(--color-ink);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

p,
li,
label,
input,
select,
textarea,
button {
  font-family: inherit;
}

.contenedor {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--color-ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-coral), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
  box-shadow: var(--sombra-md);
}

@media (max-width: 480px) {
  .btn {
    min-height: 3rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primario {
  background: linear-gradient(135deg, #f6c36f 0%, #e08054 100%);
  color: #11263a;
  border-color: rgba(17, 38, 58, 0.12);
}

.btn-secundario {
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-ink);
  border-color: rgba(23, 48, 74, 0.14);
  backdrop-filter: blur(12px);
}

.saltar-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.saltar-nav:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  display: block;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  z-index: 9999;
}

:focus-visible {
  outline: 3px solid #d97a4a;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal {
  display: none;
}

.modal.activo {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(12, 22, 36, 0.58);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-contenido {
  background: var(--color-surface-strong);
  border: 1px solid rgba(23, 48, 74, 0.12);
  border-radius: var(--radio-lg);
  padding: 2rem;
  max-width: 540px;
  width: 90%;
  box-shadow: var(--sombra-xl);
}

.modal-acciones {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.form-pagina,
.form-wrapper {
  max-width: 560px;
  margin: 3.5rem auto;
  padding: 2rem;
  background: rgba(255, 254, 249, 0.78);
  border: 1px solid rgba(23, 48, 74, 0.11);
  border-radius: var(--radio-xl);
  box-shadow: var(--sombra-lg);
  backdrop-filter: blur(10px);
}

.form-grupo {
  margin-bottom: 1.2rem;
}

.form-grupo label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(23, 48, 74, 0.14);
  border-radius: 16px;
  font-size: 1rem;
  color: var(--color-texto);
  background: rgba(255, 255, 255, 0.84);
}

@media (max-width: 480px) {
  .form-grupo input,
  .form-grupo select,
  .form-grupo textarea {
    min-height: 48px;
    padding: 0.95rem 1.1rem;
    font-size: 16px;
  }
}

.form-grupo.invalido input,
.form-grupo.invalido select,
.form-grupo.invalido textarea {
  border-color: #d25a4a;
}

.error-msg {
  display: none;
  color: #c34b3f;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.form-grupo.invalido .error-msg {
  display: block;
}

.form-fila {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-fila .form-grupo {
  flex: 1;
  min-width: 160px;
}

.form-pie {
  margin-top: 1rem;
  text-align: center;
  color: var(--color-texto-suave);
}

.form-acciones {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.error-pagina {
  text-align: center;
  padding: 5rem 1rem;
}

.error-pagina h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
}

.error-acciones {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.zona-subida {
  border: 1.5px dashed rgba(24, 49, 83, 0.24);
  border-radius: var(--radio-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.hero-editorial {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-subtitulo {
  max-width: 42rem;
  font-size: 1.08rem;
  color: var(--color-texto-suave);
  margin-bottom: 1.7rem;
}

.hero-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-datos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-datos li {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid rgba(23, 48, 74, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--sombra-md);
}

.hero-datos strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-ink);
  font-size: 0.98rem;
}

.hero-datos span {
  color: var(--color-texto-suave);
  font-size: 0.9rem;
}

.hero-composicion {
  position: relative;
  min-height: 34rem;
}

.hero-resplandor {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
}

.hero-resplandor-uno {
  width: 26rem;
  height: 26rem;
  right: 8%;
  top: 3%;
  background: radial-gradient(circle, rgba(255, 179, 102, 0.36) 0%, rgba(255, 179, 102, 0) 70%);
}

.hero-resplandor-dos {
  width: 20rem;
  height: 20rem;
  left: -4rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(239, 117, 82, 0.22) 0%, rgba(239, 117, 82, 0) 75%);
}

.sol-disc {
  position: absolute;
  right: 3rem;
  top: 0.5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe6b4 0%, var(--color-sunrise) 42%, var(--color-coral) 100%);
  box-shadow: 0 0 0 20px rgba(255, 179, 102, 0.09);
}

.hero-postal,
.hero-tarjeta,
.hero-sello {
  position: absolute;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(23, 48, 74, 0.1);
  box-shadow: var(--sombra-lg);
  backdrop-filter: blur(14px);
}

.hero-postal {
  left: 1rem;
  top: 4rem;
  width: min(100%, 26rem);
  padding: 2rem;
  border-radius: 28px;
  transform: rotate(-5deg);
  animation: entrar-postal 0.8s ease both;
}

.postal-kicker {
  margin-bottom: 0.7rem;
  color: var(--color-coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-postal h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.9rem;
}

.hero-postal p:last-child {
  color: var(--color-texto-suave);
}

.hero-sello {
  right: 0;
  top: 12rem;
  display: grid;
  place-items: center;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border-style: dashed;
  color: var(--color-ink);
  font-family: var(--fuente-display);
  font-size: 1.55rem;
  line-height: 1;
  text-align: center;
  transform: rotate(11deg);
  font-family: var(--fuente-script);
  letter-spacing: 0.02em;
}

.hero-ruta {
  position: absolute;
  left: 3rem;
  bottom: 5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-ruta::before {
  content: '';
  width: 8rem;
  border-top: 2px dashed rgba(24, 49, 83, 0.34);
}

.hero-ruta span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--color-coral);
  box-shadow: 0 0 0 0.35rem rgba(239, 117, 82, 0.12);
}

.hero-tarjeta {
  width: 15rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
}

.hero-tarjeta p {
  margin-bottom: 0.35rem;
  color: var(--color-coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-tarjeta strong {
  color: var(--color-ink);
  font-size: 1rem;
}

.hero-tarjeta-superior {
  right: 3rem;
  bottom: 6rem;
}

.hero-tarjeta-inferior {
  left: 4rem;
  bottom: 0;
}

.franja-manifiesto {
  padding: 0 0 4.5rem;
}

.manifiesto-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2rem 2.2rem;
  background: linear-gradient(135deg, rgba(23, 48, 74, 0.95) 0%, rgba(67, 92, 113, 0.92) 100%);
  border-radius: var(--radio-xl);
  color: #fff6ee;
  box-shadow: var(--sombra-xl);
}

.manifiesto-grid p {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-family: var(--fuente-display);
  line-height: 1.08;
}

.manifiesto-firma {
  align-self: end;
  color: rgba(255, 246, 238, 0.82);
  font-size: 0.96rem;
}

.seccion-destacados,
.propuesta-valor,
.sello-marca,
.catalogo-shell {
  padding: 1rem 0 5rem;
}

.seccion-encabezado {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.seccion-encabezado h2,
.bloque-editorial h2,
.sello-grid h2,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.propuesta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.bloque-editorial {
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 48, 74, 0.08);
  border-radius: var(--radio-xl);
  box-shadow: var(--sombra-lg);
}

.bloque-editorial > p {
  color: var(--color-texto-suave);
  margin: 1rem 0 1.2rem;
}

.bloque-editorial blockquote {
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--color-coral);
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  background: rgba(255, 241, 226, 0.8);
  border-radius: 0 18px 18px 0;
}

.ventajas {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.ventajas li {
  min-height: 16rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 243, 226, 0.98) 100%);
  border: 1px solid rgba(23, 48, 74, 0.08);
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-md);
}

.ventajas h3 {
  margin-bottom: 0.8rem;
  font-size: 1.9rem;
}

.ventajas p {
  color: var(--color-texto-suave);
}

.sello-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(23, 48, 74, 0.08);
  border-radius: var(--radio-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 241, 226, 0.92) 100%);
  box-shadow: var(--sombra-lg);
}

.sello-grid p:last-child {
  color: var(--color-texto-suave);
  align-self: end;
}

.page-hero {
  padding: 4rem 0 1.5rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 2rem;
  align-items: end;
}

.page-hero-texto {
  max-width: 44rem;
  color: var(--color-texto-suave);
  font-size: 1.08rem;
}

.page-hero-card {
  padding: 1.5rem;
  border-radius: var(--radio-lg);
  background: linear-gradient(160deg, rgba(23, 48, 74, 0.98) 0%, rgba(66, 90, 109, 0.94) 100%);
  color: #fff6ee;
  box-shadow: var(--sombra-lg);
}

.page-hero-card p {
  margin-bottom: 0.55rem;
  color: rgba(255, 246, 238, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalogo-shell {
  padding-top: 0.5rem;
}

.estado-panel {
  display: grid;
  gap: 0.55rem;
  padding: 1.45rem;
  border-radius: 24px;
  border: 1px solid rgba(23, 48, 74, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--sombra-md);
}

.estado-panel h3 {
  font-size: 1.8rem;
}

.estado-panel p:last-child {
  color: var(--color-texto-suave);
}

.estado-panel-calido {
  background: linear-gradient(135deg, rgba(255, 241, 226, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.estado-eyebrow {
  color: var(--color-coral);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.estado-feedback {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 48, 74, 0.08);
  font-size: 0.94rem;
  font-weight: 700;
}

@keyframes entrar-postal {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-5deg);
  }
}

.estado-feedback-info {
  background: rgba(255, 250, 244, 0.86);
  color: var(--color-ink-soft);
}

.estado-feedback-exito {
  background: rgba(233, 249, 239, 0.92);
  color: #266144;
  border-color: rgba(38, 97, 68, 0.18);
}

.estado-feedback-error {
  background: rgba(255, 239, 235, 0.92);
  color: #9e3f34;
  border-color: rgba(158, 63, 52, 0.18);
}

.centrar {
  text-align: center;
  margin-top: 2rem;
}

/* =====================
   Viajes destacados — página de inicio
   ===================== */
#viajes-destacados {
  padding: 4rem 0;
}
#viajes-destacados h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* =====================
   Propuesta de valor — página de inicio
   ===================== */
.propuesta-valor {
  padding: 4rem 0;
  background: #f0f4f8;
}
.propuesta-valor h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
