/* ==========================================================================
   AVATAR TRAVEL AGENCY - ESTILO MAESTRO Y SISTEMA DE DISEÑO
   Concepto: "Viajes que se convierten en recuerdos"
   ========================================================================== */

:root {
  /* Paleta Oficial Avatar */
  --primary: #0099B4;          /* Turquesa Avatar */
  --primary-dark: #00768C;
  --primary-light: #E6F7FA;
  --primary-rgb: 0, 153, 180;
  
  --secondary: #FF8C00;        /* Naranja Aventura */
  --secondary-hover: #E07B00;
  --secondary-light: #FFF4E6;
  --secondary-rgb: 255, 140, 0;

  --accent-green: #7DBA2E;     /* Verde Amazonía */
  --accent-green-dark: #629620;
  --accent-green-light: #F2F9EA;
  --accent-green-rgb: 125, 186, 46;

  /* Neutros y Fondos */
  --white: #FFFFFF;
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;        /* Gris grafito legible */
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE5D;

  /* Sombras y Elevación */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(0, 153, 180, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 20px 30px -10px rgba(0, 153, 180, 0.2);

  /* Radios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Tipografías: Arial sin negrilla en titulares de marca */
  --font-main: Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-serif: "Georgia", "Cambria", "Times New Roman", serif;
  --font-slogan: "Brush Script MT", "Brush Script Std", "Segoe Script", cursive, sans-serif;

  /* Transición */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reseteo y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Contenedor */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 900px;
}

/* ==========================================================================
   TIPOGRAFÍA Y ENCABEZADOS
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 400; /* Estilo limpio Arial sin negrilla pesada */
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-tag.orange {
  color: var(--secondary);
  background: var(--secondary-light);
}

.section-tag.green {
  color: var(--accent-green);
  background: var(--accent-green-light);
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-title span.highlight-turq {
  color: var(--primary);
}

.section-title span.highlight-orange {
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   BOTONES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.45);
}

.btn-turq {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 153, 180, 0.35);
}

.btn-turq:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 153, 180, 0.45);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-turq {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-turq:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ==========================================================================
   HEADER Y BARRA DE NAVEGACIÓN
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 80px;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.site-header.scrolled .logo-img {
  height: 42px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.86rem;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO PRINCIPAL
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  background-color: #0d2830;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.70);
  transform: scale(1.03);
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 40, 48, 0.45) 0%, rgba(13, 40, 48, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 840px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #E6F7FA;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--white);
}

.hero-slogan,
.brand-slogan,
.slogan-brush {
  font-family: "Brush Script MT", "Brush Script Std", "Segoe Script", cursive, sans-serif !important;
  font-size: 2.1rem;
  font-weight: 400;
  color: #F8FAFC;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.hero-slogan span,
.brand-slogan span {
  color: #FFB347;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-item h4 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
}

.trust-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   SECCIONES COMUNES Y ESPACIADO
   ========================================================================== */

.section {
  padding: 90px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-alt);
}

/* ==========================================================================
   SECCIÓN: NUESTRA FILOSOFÍA
   ========================================================================== */

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

.philosophy-text h2 {
  font-size: 2.3rem;
  margin-bottom: 22px;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.5;
  margin-bottom: 24px;
  border-left: 4px solid var(--secondary);
  padding-left: 20px;
}

.philosophy-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pillars-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}

.pillar-icon {
  font-size: 1.4rem;
}

.pillar-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.pillar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.philosophy-image-wrap {
  position: relative;
}

.philosophy-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.badge-experience {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-light);
}

.badge-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.badge-experience p {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
}

/* ==========================================================================
   SECCIÓN: EXPERIENCIAS
   ========================================================================== */

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.experience-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 153, 180, 0.3);
}

.exp-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .exp-img-wrap img {
  transform: scale(1.08);
}

.exp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.exp-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.exp-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-block;
}

.exp-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.exp-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exp-link:hover {
  color: var(--secondary);
  gap: 10px;
}

/* ==========================================================================
   SECCIÓN: DESTINOS (FILTROS Y TARJETAS)
   ========================================================================== */

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 153, 180, 0.25);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.destination-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.dest-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .dest-img-wrap img {
  transform: scale(1.06);
}

.dest-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--text-dark);
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.dest-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.dest-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-body h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.dest-tagline {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.dest-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.dest-highlights {
  list-style: none;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.dest-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.dest-highlights li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

.dest-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.dest-footer .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   SECCIÓN: ESPECIAL PERÚ
   ========================================================================== */

.peru-section {
  background: linear-gradient(135deg, #0b252d 0%, #004d5a 100%);
  color: var(--white);
}

.peru-section .section-title,
.peru-section h3 {
  color: var(--white);
}

.peru-section .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.peru-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.peru-feature-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.peru-feature-box h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #FFB347;
}

.peru-feature-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.peru-circuits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.peru-circuit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.peru-circuit-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.peru-circuit-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.peru-circuit-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================================================
   SECCIÓN: VIAJES A MEDIDA (TU VIAJE. TU HISTORIA.)
   ========================================================================== */

.custom-trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.custom-trip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 153, 180, 0.15);
}

.experience-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exp-chip {
  cursor: pointer;
}

.exp-chip input {
  display: none;
}

.exp-chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.exp-chip input:checked + span {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 500;
}

/* ==========================================================================
   SECCIÓN: CRUCEROS
   ========================================================================== */

.cruises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cruise-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cruise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.cruise-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.cruise-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cruise-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cruise-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ==========================================================================
   SECCIÓN: HERMANA DE MARCA - AVATAR AMAZON LODGE
   ========================================================================== */

.lodge-banner {
  background: linear-gradient(135deg, #173824 0%, #2e593a 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.lodge-content h3 {
  font-size: 1.8rem;
  color: #A8E063;
  margin-bottom: 14px;
}

.lodge-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lodge-img-box img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  height: 280px;
  width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   SECCIÓN: TESTIMONIOS (ESTRUCTURA HONESTA)
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #FFB347;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   SECCIÓN: BLOG E INSPIRACIÓN
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #0d1e24;
  color: #E2E8F0;
  padding: 80px 0 30px;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.footer-desc {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 14px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   WIDGET FLOTANTE DE WHATSAPP
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  animation: pulseWhatsapp 2.5s infinite;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-dark);
  transform: scale(1.08);
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--whatsapp);
}

/* ==========================================================================
   PÁGINAS INTERNAS (HEADER DE PÁGINA)
   ========================================================================== */

.page-header {
  position: relative;
  padding: 150px 0 70px;
  background-color: #0b252d;
  color: var(--white);
  text-align: center;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.page-header-content h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 14px;
}

.page-header-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE FIRST & MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .philosophy-grid,
  .peru-grid,
  .lodge-banner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }
  
  .site-header.scrolled {
    height: 60px;
  }

  .header-inner {
    padding: 0 10px;
    gap: 8px;
  }

  .logo-brand {
    flex-shrink: 0;
    max-width: 135px;
  }

  .logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
  }

  .site-header.scrolled .logo-img {
    height: 33px;
  }

  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .header-actions .btn-whatsapp {
    padding: 6px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .lang-selector {
    padding: 2px 3px;
    font-size: 0.76rem;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.75rem;
    gap: 3px;
  }

  .hero-title {
    font-size: 2.4rem;
  }
  .hero-slogan {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .section {
    padding: 60px 0;
  }
  
  .mobile-toggle {
    display: block;
    font-size: 1.5rem;
    padding: 2px;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .custom-trip-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-bottom: 90px;
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    padding: 0 4px;
    gap: 4px;
  }

  .logo-brand {
    max-width: 120px;
  }

  .logo-img {
    height: 35px;
  }

  .site-header.scrolled .logo-img {
    height: 30px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .btn-whatsapp {
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .lang-selector {
    padding: 1px 2px;
  }

  .lang-btn {
    padding: 2px 4px;
    font-size: 0.7rem;
    gap: 2px;
  }

  .mobile-toggle {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   TIPOGRAFÍA DEL SLOGAN OFICIAL: Brush Script MT
   "Viajes que se convierten en recuerdos"
   ========================================================================== */
.brand-slogan,
.slogan-brush,
.hero-slogan {
  font-family: var(--font-slogan), "Brush Script MT", "Brush Script Std", "Segoe Script", cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   BARRA DE CERTIFICACIONES Y RESPALDO OFICIAL
   ========================================================================== */
.certifications-section {
  background: #F8FAFC;
  padding: 45px 0 35px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.certifications-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 25px;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 36px;
}

.cert-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: var(--transition);
  height: 68px;
}

.cert-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.cert-logo-item img {
  max-height: 48px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Redes Sociales */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  border-color: var(--primary);
}

.footer-contact-item a {
  color: #CBD5E1;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}

.footer-contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
  transform: translateX(2px);
}

/* Selector de Idioma */
.lang-selector {
  display: inline-flex;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 2px 4px;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.lang-btn:hover {
  background: rgba(0, 153, 180, 0.12);
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: #FFFFFF;
}