/* ============================================
   NATALEXPERIENCE TOURS — Design System
   Premium Travel Agency | Natal, Brasil
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --color-navy: #0a1628;
  --color-navy-light: #132240;
  --color-navy-mid: #1a2d4a;
  --color-gold: #c9a84c;
  --color-gold-light: #d4b96a;
  --color-gold-dark: #a8872e;
  --color-white: #ffffff;
  --color-pearl: #f5f0e8;
  --color-pearl-dark: #e8dfd0;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-text-on-dark: #c8c8d0;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1da851;
  --color-overlay: rgba(10, 22, 40, 0.7);
  --color-overlay-light: rgba(10, 22, 40, 0.4);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8d5a0 50%, #c9a84c 100%);
  --gradient-navy: linear-gradient(180deg, #0a1628 0%, #132240 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.8) 100%);
  --gradient-card: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.95) 100%);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Sizes */
  --container-max: 1280px;
  --container-narrow: 960px;
  --nav-height: 180px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
}

.gold-text { color: var(--color-gold); }
.navy-text { color: var(--color-navy); }
.pearl-text { color: var(--color-pearl); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  vertical-align: middle;
  margin-right: 12px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--gradient-navy);
  color: var(--color-pearl);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--pearl {
  background-color: var(--color-pearl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header p {
  max-width: 640px;
  margin: var(--space-sm) auto 0;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.section--dark .section-header p {
  color: var(--color-text-on-dark);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 var(--space-md);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar--transparent {
  background: transparent;
}

.navbar--solid {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.navbar__logo img {
  height: 150px;
  width: auto;
  filter: none; /* Eliminada la "nube" blanca por completo */
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__link {
  font-size: 0.95rem; /* Un poco más grande */
  font-weight: 700; /* Más marcado */
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  padding: 4px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Sombra para resaltar sobre imágenes */
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--color-gold);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
}

.navbar__cta:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video,
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 900px;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 0.9rem;
  padding: 12px 28px;
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-gold);
}

.btn--outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn svg,
.btn i {
  font-size: 1.2em;
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 0 0 1.5px rgba(0,0,0,0.12);
  z-index: 2;
}

.card__body {
  padding: var(--space-md);
}

.card__category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.card__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.sticky-cta .card__pricing {
  align-items: flex-start;
  gap: 1px;
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}

.card__price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-installment {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-gold-dark);
  font-weight: 700;
  padding: 3px 8px;
  background: var(--color-pearl);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 2px solid var(--color-gold);
}

/* Overlay card (for experiences) */
.card--overlay {
  height: 420px;
  background: var(--color-navy);
}

.card--overlay .card__image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.card--overlay .card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--gradient-card);
  z-index: 1;
}

.card--overlay .card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-lg);
  color: var(--color-white);
}

.card--overlay .card__title {
  color: var(--color-white);
  font-size: 1.5rem;
}

.card--overlay .card__text {
  color: var(--color-text-on-dark);
}

.card--overlay .card__category {
  text-shadow: 0 0 10px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8), 1px 1px 0 rgba(0,0,0,0.6), -1px -1px 0 rgba(0,0,0,0.6);
}

/* ---------- Grid Layouts ---------- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Category Cards ---------- */
.category-card {
  position: relative;
  display: block;
  height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: background var(--transition-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10,22,40,0.95) 100%);
}

.category-card__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  text-shadow: 0 0 10px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8), 1px 1px 0 rgba(0,0,0,0.6), -1px -1px 0 rgba(0,0,0,0.6);
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.category-card__desc {
  color: var(--color-text-on-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 400px;
}

/* ---------- Why Choose Us / Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.95rem;
  color: var(--color-text-on-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.testimonial__stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 4px;
}

.testimonial__text {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial__origin {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  cursor: pointer;
  transition: color var(--transition-base);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-item__question:hover {
  color: var(--color-gold);
}

.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 1rem;
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-navy);
  color: var(--color-text-on-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr; /* 5 Columnas para que todo quepa */
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
  color: var(--color-text-on-dark); /* Revertido a azulado/grisáceo anterior */
}

.footer__logo {
  height: 130px;
  width: auto;
  margin-bottom: 20px;
  filter: none; /* Sin resplandor */
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 10px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--color-gold);
}

.footer__links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--color-text-on-dark); /* Revertido a azulado/grisáceo anterior */
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer__links a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy-light);
  color: var(--color-white); /* Cambiado de pearl para mayor contraste */
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-on-dark); /* Revertido a azulado/grisáceo anterior */
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 60px; /* Bajando la posición del texto */
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-gold);
  font-style: italic;
}

/* ---------- Bento Grid Gallery ---------- */
.bento-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px 160px;
  gap: 8px;
  margin-top: calc(var(--nav-height) + var(--space-sm));
  margin-bottom: var(--space-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.bento-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bento-gallery__item img,
.bento-gallery__item .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-gallery--contain .bento-gallery__item img {
  object-fit: cover; /* Switched back to cover for full fill as requested */
  object-position: center;
  background-color: var(--color-navy-mid);
}

.bento-gallery__item:hover img,
.bento-gallery__item:hover .placeholder-img {
  transform: scale(1.06);
}

/* Grid placement (Defaults) */
.bento-gallery__main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.bento-gallery__side-top {
  grid-column: 2;
  grid-row: 1;
}

.bento-gallery__side-bottom {
  grid-column: 2;
  grid-row: 2;
}

.bento-gallery__bottom-left {
  grid-column: 1;
  grid-row: 3;
}

.bento-gallery__bottom-right {
  grid-column: 2;
  grid-row: 3;
}

/* Portrait Main Layout Variant (Optimized for 3:4 / 16:9 mix) */
.bento-gallery--portrait {
  grid-template-columns: 1fr 1.6fr;
  grid-template-rows: 310px 310px 200px;
  max-height: 840px; /* Constrain total height */
}

.bento-gallery--portrait .bento-gallery__main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.bento-gallery--portrait .bento-gallery__side-top {
  grid-column: 2;
  grid-row: 1;
}

.bento-gallery--portrait .bento-gallery__side-bottom {
  grid-column: 2;
  grid-row: 2;
}

.bento-gallery--portrait .bento-gallery__bottom-left {
  grid-column: 1;
  grid-row: 3;
}

.bento-gallery--portrait .bento-gallery__bottom-right {
  grid-column: 2;
  grid-row: 3;
}

/* Hover zoom overlay */
.bento-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  z-index: 2;
}

.bento-gallery__overlay svg {
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-base);
  color: var(--color-white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.bento-gallery__item:hover .bento-gallery__overlay {
  background: rgba(10, 22, 40, 0.35);
}

.bento-gallery__item:hover .bento-gallery__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* "See all photos" button */
.bento-gallery__see-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bento-gallery__see-all:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.bento-gallery__see-all svg {
  color: var(--color-navy);
}

.detail-info {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
  align-self: start;
}

.detail-sidebar__card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid #eee;
}

.detail-sidebar__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 2px;
  line-height: 1.1;
}

.detail-sidebar__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light);
  font-family: var(--font-body);
}

.detail-sidebar .price-installment {
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  margin-top: 4px;
}

/* Structured Lists */
.tour-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}

.tour-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.tour-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
}

.tour-list__icon--check {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.tour-list__icon--cross {
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}

.tour-list__icon--info {
  background: rgba(0, 119, 182, 0.1);
  color: #0077b6;
}

.tour-list__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin: var(--space-xs) 0;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap var(--transition-base);
}

.blog-card__link:hover {
  gap: 12px;
}

/* ---------- Sobre / Team ---------- */
.about-founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-founder__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-founder__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--border-radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumbs a {
  color: var(--color-gold);
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 8px;
  color: var(--color-text-light);
}

/* ---------- Custom Experiences Section ---------- */
.custom-experience {
  position: relative;
  width: 100%;
}

.custom-experience__overlay {
  display: none;
}

.custom-experience__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-xl) 0;
}

.custom-experience__content {
  color: var(--color-navy);
  flex-grow: 1;
}

.custom-experience__cta {
  flex-shrink: 0;
  margin-left: var(--space-xl);
}

.custom-experience .section-label {
  margin-bottom: var(--space-xs);
}

.custom-experience h2 {
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  font-size: 1.8rem;
}

.custom-experience p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 600px;
}

.custom-experience__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.custom-experience__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-pearl);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-navy);
  border: 1px solid var(--color-gray-200);
}

/* ---------- Sticky CTA Mobile ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: var(--space-sm) var(--space-md);
  z-index: 800;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.sticky-cta__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.1;
}

.sticky-cta__price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.sticky-cta__price .price-installment {
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: none;
  transition: all var(--transition-base);
  z-index: 2001;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition-base);
  z-index: 2001;
  line-height: 1;
  font-weight: 300;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  z-index: 2001;
}

/* ---------- Placeholder Images (solid color blocks) ---------- */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.6);
}

.placeholder-img--ocean { background: linear-gradient(135deg, #0077b6, #00b4d8); }
.placeholder-img--sunset { background: linear-gradient(135deg, #e76f51, #f4a261); }
.placeholder-img--jungle { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.placeholder-img--sand { background: linear-gradient(135deg, #c9a84c, #e8d5a0); }
.placeholder-img--luxury { background: linear-gradient(135deg, #0a1628, #1a2d4a); }
.placeholder-img--coral { background: linear-gradient(135deg, #e63946, #f4a261); }

/* ---------- Tour Cards (Veja Também / Recommendations) ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tour-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tour-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.05);
}

.tour-card__body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-card__title {
  font-size: 1.25rem;
  font-family: var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tour-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.tour-card__duration {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card__price {
  font-weight: 700;
  color: var(--color-accent);
}

.tour-card .btn {
  margin-top: 1rem;
}

/* ---------- Custom Experience (Sob Medida) ---------- */
.custom-experience {
  position: relative;
  background: #000; /* Fondo negro base para cuando la imagen carga */
  border-radius: var(--border-radius-lg, 24px);
  overflow: hidden;
  color: var(--color-white, #fff);
  box-shadow: var(--shadow-xl);
}

/* Removido el overlay ::before sólido */


.custom-experience__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  min-height: 450px;
}

.custom-experience__content {
  padding: var(--space-2xl, 80px);
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.custom-experience__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.8; /* Una leve opacidad general ayuda a la legibilidad del texto blanco sin necesidad de cuadros azules */
}

.custom-experience__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md, 24px);
  margin-top: 2rem;
}

.custom-experience__feature {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold, #c9a84c);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(5px);
}

.custom-experience__cta {
  padding: var(--space-2xl, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Button Refinements */
.btn--premium {
  background: var(--color-gold);
  color: var(--color-navy);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  animation: premium-glow 3s infinite alternate;
}

@keyframes premium-glow {
  from { box-shadow: 0 0 10px rgba(201, 168, 76, 0.3); transform: scale(1); }
  to { box-shadow: 0 0 30px rgba(201, 168, 76, 0.7); transform: scale(1.05); }
}

@media (max-width: 991px) {
  .custom-experience__wrapper {
    grid-template-columns: 1fr;
  }
  .custom-experience__content {
    background: none;
    padding: var(--space-xl, 48px);
  }
  .custom-experience__cta {
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
  }
  .custom-experience::before {
    display: none;
  }
}

/* ---------- Legal Content Pages ---------- */
.container--narrow {
  max-width: 800px;
}

.legal-content {
  line-height: 1.8;
  color: var(--color-text);
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
}

.legal-date {
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 4rem !important;
  border-top: 1px solid var(--color-pearl);
  padding-top: 2rem;
}

/* Utilidad para activar/desactivar excursiones */
.is-hidden {
  display: none !important;
}

/* Estado "No Disponible" para excursiones */
.card--inactive {
  opacity: 0.7;
  pointer-events: none;
  filter: grayscale(0.5);
  cursor: not-allowed;
}

.card--inactive::before {
  content: 'Temporariamente Indisponível';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  background: var(--color-navy);
  color: var(--color-gold);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  white-space: nowrap;
}

/* ---------- Blog Post Styles ---------- */
.post-header {
  position: relative;
  height: 75vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 120px;
}

.post-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.9) 100%);
  z-index: 1;
}

.post-header__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 var(--space-md);
  animation: fadeInUp 1s ease forwards;
}

.post-header h1 {
  color: var(--color-white) !important;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  line-height: 1.1;
}

.post-category {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  display: block;
}

.post-meta {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 500;
}

.post-content {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--color-text);
}

.post-body h2 {
  font-size: 2.2rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-navy);
}

.post-body p {
  margin-bottom: 0.75rem;
}

.post-cta {
  background: var(--gradient-navy);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--color-white);
  border: 1px solid var(--color-gold-dark);
  box-shadow: var(--shadow-xl);
}

.post-cta h3 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.post-cta p {
  color: var(--color-text-on-dark);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-size: 1.15rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .post-header { height: 60vh; padding-top: 80px; }
  .post-header h1 { font-size: 2.2rem; }
  .post-meta { flex-direction: column; gap: 10px; }
}
