/* ===== SHAMAN TRAVEL - ESTILOS PRINCIPALES ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ===== VARIABLES — Paleta del Logo ===== */
:root {
  /* Colores primarios extraídos del logo */
  --primary:      #2BBFB3;   /* Teal/turquesa del logo */
  --primary-dark: #1A8A80;   /* Teal oscuro */
  --orange:       #F07240;   /* Naranja coral del logo */
  --orange-dark:  #C95830;   /* Naranja oscuro */
  --yellow:       #F5C842;   /* Amarillo vibrante del logo */
  --yellow-light: #FFE07A;   /* Amarillo claro */
  --terracota:    #C0513A;   /* Rojo terracota del logo */
  --dark:         #2A0F05;   /* Casi negro para fondo oscuro */
  --dark-2:       #1A0800;   /* Marrón muy oscuro */
  --light:        #FFF8F0;   /* Crema cálido */
  --light-2:      #FEF0E4;   /* Beige suave */
  --text:         #2A1810;   /* Texto principal marrón oscuro */
  --text-light:   #7A5C50;   /* Texto secundario */
  --white:        #FFFFFF;

  /* Gradientes de la marca */
  --gradient:        linear-gradient(135deg, #1A8A80 0%, #2BBFB3 40%, #F07240 100%);
  --gradient-warm:   linear-gradient(135deg, #C0513A 0%, #F07240 50%, #F5C842 100%);
  --gradient-dark:   linear-gradient(135deg, #1C1C1C 0%, #2A1810 100%);
  --gradient-hero:   linear-gradient(135deg, #C0513A 0%, #E06030 30%, #F07240 65%, #F5A030 100%);
  --teal-gradient:   linear-gradient(90deg, #2BBFB3, #F5C842, #F07240);

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:    0 20px 60px rgba(192,81,58,0.18);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { padding: 90px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: #f07240;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(192,81,58,0.25);
}

.navbar.transparent { background: transparent; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

/* LOGO IMAGE */
.logo-img {
  height: 67px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(240,114,64,0.3));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(240,114,64,0.5));
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }

.btn-cotizar {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(231, 120, 76, 0.63) !important;
}

.btn-cotizar:hover {
  background: var(--yellow) !important;
  color: var(-- --orange-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(245,200,66,0.5) !important;
}

.btn-cotizar::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */

 .hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Imagen real de fondo */
  background-image: 
    linear-gradient(
      135deg,
      rgba(26,138,128,0.85) 0%,     /* primary-dark */
      rgba(43,191,179,0.75) 30%,    /* primary */
      rgba(240,114,64,0.75) 70%,    /* orange */
      rgba(192,81,58,0.85) 100%     /* terracota */
    ),
    url('../img/logoSinfondo.png'); /* <-- coloca aquí tu imagen */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,15,5,0.3),
    rgba(42,15,5,0.6)
  );
  z-index: 1;
} */

/* .hero-logo-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/logo-light.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70%;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
} */

/* .hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(245,200,66,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(245,200,66,0.15) 0%, transparent 40%);
} */

/* Aztec pattern overlay */
/* .hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23F5C842'%3E%3Cpath d='M40 0L50 20H30L40 0z'/%3E%3Cpath d='M40 80L30 60h20L40 80z'/%3E%3Cpath d='M0 40L20 30v20L0 40z'/%3E%3Cpath d='M80 40L60 50V30L80 40z'/%3E%3Crect x='32' y='32' width='16' height='16' fill='none' stroke='%23F5C842' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
} */

/* .hero-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.5);
  color: var(--yellow);
  padding: 7px 22px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border-radius: 30px;
  animation: fadeInDown 0.8s ease both;
}

.hero-logo {
  width: 120px;
  margin: 0 auto 20px;
  animation: fadeInDown 0.8s ease 0.1s both;
  filter: drop-shadow(0 4px 20px rgba(240,114,64,0.5));
} */

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 15px 36px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(240,114,64,0.4);
}

.btn-primary:hover {
  background: var(--yellow);
  color: var(-- --orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,200,66,0.5);
}

.btn-outline {
  border: 2px solid rgba(245,200,66,0.6);
  color: var(--yellow);
  padding: 15px 36px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--yellow);
  background: rgba(245,200,66,0.15);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,200,66,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
}

.divider {
  width: 60px; height: 3px;
  background: var(--teal-gradient);
  margin: 14px auto;
  border-radius: 2px;
}

/* ===== MISSION/VISION ===== */
.mvision {
  background: #3A1A0A;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mvision::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.mvision::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mvision .section-header h2 { color: var(--white); }
.mvision .section-tag { color: var(--yellow); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--teal-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.mv-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.mv-card:hover::before { transform: scaleX(1); }

.mv-icon { font-size: 2.8rem; margin-bottom: 20px; }

.mv-card h3 {
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 16px;
}

.mv-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; }

/* ===== ABOUT (HOME SUMMARY) ===== */
.about-home { background: var(--light); }

.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient( 135deg,#f07240,#c0513a  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,191,179,0.2), rgba(240,114,64,0.15));
}

/* Logo centered in the about visual */
.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* mantiene proporción */
  padding: 40px;         /* espacio interno elegante */
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(240,114,64,0.4);
}

.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text h2 { font-size: 2.5rem; color: var(--text); margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.9; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-item::before {
  content: '✦';
  color: var(--orange);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== DESTINATIONS ===== */
.destinations { background: var(--white); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* DETALLES DEL CARD IMAGENES */
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f3723e;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.dest-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.dest-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.dest-card:hover .dest-img { transform: scale(1.07); }

/* OPACIDAD IMAGENES DE DESTINO */
.dest-overlay {
  position: absolute; inset: 0;
  /* background: linear-gradient(to top, rgba(185, 57, 18, 0.411) 0%, rgba(199, 125, 105, 0.26) 50%, transparent 100%); */
}

.dest-body { padding: 24px; }

.dest-country {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}

.dest-body h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }

.dest-body p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.7; }

.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(245,200,66,0.35);
  padding: 10px 20px;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-details:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateX(3px);
}

/* IMAGENES DESTINOS */
.dest-bg-cabos    { background-image: url('../img/destinos/loscabos.jpg'); }
.dest-bg-cancun   { background-image: url('../img/destinos/cancun2.webp'); }
.dest-bg-vallarta { background-image: url('../img/destinos/puertoVallarta.webp'); }
.dest-bg-mazatlan { background-image: url('../img/destinos/mazatlan.jpg'); }
.dest-bg-tulum    { background-image: url('../img/destinos/TULUM-1.webp'); }
.dest-bg-escondido{ background-image: url('../img/destinos/PUERTO\ ESCONDIDO-1.webp') }
.dest-bg-colombia { background-image: url('../img/destinos/COLOMBIA-1.webp'); }

/* ===== COTIZAR ===== */
.cotizar {
  background: #fcd5bfb7;
  position: relative;
  overflow: hidden;
}

.cotizar::before {
  content: '';
  position: absolute; inset: 0;
  /* --background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23F5C842' fill-opacity='0.04'%3E%3Cpath d='M40 0L50 20H30L40 0z'/%3E%3Cpath d='M40 80L30 60h20L40 80z'/%3E%3Cpath d='M0 40L20 30v20L0 40z'/%3E%3Cpath d='M80 40L60 50V30L80 40z'/%3E%3C/g%3E%3C/svg%3E"); */
}

.cotizar .section-header h2 { color: var(--white); }
.cotizar .section-tag { color: var(--yellow); }
.cotizar .section-header p { color: rgba(255,255,255,0.65); }

.form-container {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(240,114,64,0.08);
  box-shadow: 0 0 0 3px rgba(240,114,64,0.1);
}

.form-group select option { background: #3D1205; color: var(--white); }

.menores-section { grid-column: 1 / -1; }

.menores-section h4 {
  color: var(--yellow);
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.edades-grid { display: flex; flex-wrap: wrap; gap: 12px; }

.edad-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 10px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.edad-input input {
  width: 50px;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  text-align: center;
  box-shadow: none !important;
}

.form-submit { text-align: center; margin-top: 36px; }

.form-submit .btn-primary {
  font-size: 0.9rem;
  padding: 18px 60px;
  box-shadow: 0 10px 30px rgba(240,114,64,0.4);
}

/* ===== FAQ ===== */
.faq { background: var(--light-2); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(43,191,179,0.2);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: var(--transition);
  gap: 20px;
}

.faq-question h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.faq-question:hover h4 { color: var(--orange); }

.faq-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(43,191,179,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer p {
  color: var(--text-light);
  line-height: 1.9;
  padding-bottom: 24px;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { font-size: 2rem; color: var(--text); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 36px; line-height: 1.9; }

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.c-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(43,191,179,0.12), rgba(240,114,64,0.08));
  border: 1px solid rgba(43,191,179,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.c-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }

.social-links { display: flex; gap: 12px; margin-top: 32px; }

.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(43,191,179,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--primary);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240,114,64,0.4);
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  border-top: 4px solid var(--orange);
}

.contact-form h4 { font-size: 1.5rem; color: var(--text); margin-bottom: 28px; }

.cf-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.cf-group label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }

.cf-group input,
.cf-group textarea {
  background: var(--white);
  border: 1px solid rgba(43,191,179,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  resize: none;
  width: 100%;
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,114,64,0.1);
}

.btn-send {
  background: linear-gradient(135deg, var(--orange), var(--terracota));
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  box-shadow: 0 6px 20px rgba(240,114,64,0.35);
}

.btn-send:hover {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,200,66,0.4);
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 45vh;
  min-height: 300px;
  background: linear-gradient(135deg, #C0513A 0%, #E06030 45%, #F5A030 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23F5C842' fill-opacity='0.04'%3E%3Cpath d='M40 0L50 20H30L40 0z'/%3E%3Cpath d='M40 80L30 60h20L40 80z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-tag {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); font-weight: 300; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.team-card { text-align: center; }

.team-avatar {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(240,114,64,0.3);
}

.team-card h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--orange); font-weight: 500; }

/* ===== DESTINATION DETAIL PAGE ===== */
.dest-hero {
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.dest-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(60,18,5,0.95) 0%, rgba(60,18,5,0.35) 60%, transparent 100%);
}

.dest-hero .container { position: relative; z-index: 1; }

.dest-hero-tag {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dest-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white); font-weight: 300; margin-bottom: 16px; }

.dest-meta { display: flex; gap: 24px; flex-wrap: wrap; }

.dest-meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.dest-content { background: var(--white); }

.dest-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.dest-section { margin-bottom: 48px; }

.dest-section h2 { font-size: 1.8rem; color: var(--text); margin-bottom: 8px; }

.dest-section::after {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  margin: 12px 0 20px;
  border-radius: 2px;
}

.dest-section p { color: var(--text-light); line-height: 1.9; margin-bottom: 12px; }

.places-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.places-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--light);
  border-radius: 12px;
  border-left: 3px solid var(--orange);
  transition: var(--transition);
}

.places-list li:hover { background: var(--light-2); transform: translateX(4px); }

.places-list li .place-icon { font-size: 1.3rem; flex-shrink: 0; }
.places-list li .place-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.places-list li .place-desc { font-size: 0.83rem; color: var(--text-light); margin-top: 2px; }

.tips-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.tips-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.tips-list li::before {
  content: '✦';
  color: var(--orange);
  font-size: 0.65rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Sidebar */
.dest-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--light);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  border-top: 3px solid var(--orange);
}

.sidebar-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 20px; font-family: 'Jost', sans-serif; font-weight: 600; }

.climate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.climate-item {
  background: var(--white);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(43,191,179,0.15);
}

.climate-icon { font-size: 1.4rem; margin-bottom: 6px; }
.climate-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.climate-value { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-top: 4px; }

.btn-cotiza-dest {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--terracota));
  color: var(--white);
  text-align: center;
  padding: 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(240,114,64,0.4);
}

.btn-cotiza-dest:hover {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,200,66,0.4);
}

/* ===== NOSOTROS PAGE ===== */
.nosotros-content { background: var(--white); }

.nosotros-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.nosotros-flex.reverse { direction: rtl; }
.nosotros-flex.reverse > * { direction: ltr; }

/* .nosotros-img {
  height: 420px;
  background: linear-gradient(135deg, #C0513A, #F07240);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
} */
 .nosotros-img {
  flex: 1;
  position: relative;
 
}
.nosotros-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s ease;
   background: linear-gradient(135deg, #C0513A, #F07240);
}
.nosotros-img img:hover {
  transform: scale(1.03);
}
.nosotros-text h2 { font-size: 2.2rem; color: var(--text); margin-bottom: 16px; }

.nosotros-text .sub-tag {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.nosotros-text p { color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }

.valores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

.valor-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--light);
  border-radius: 16px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.valor-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(240,114,64,0.15);
  border-bottom-color: var(--orange);
}

.valor-icon { font-size: 2rem; margin-bottom: 12px; }
.valor-item h4 { font-size: 1rem; color: var(--text); margin-bottom: 8px; font-family: 'Jost', sans-serif; font-weight: 600; }
.valor-item p { font-size: 0.85rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer { background: #f07240; color: var(--white); padding: 70px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p { color: rgb(255, 255, 255); font-size: 0.88rem; line-height: 1.8; max-width: 280px; }

.footer-col h5 {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgb(255, 255, 255); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  border-left: 4px solid var(--yellow);
  box-shadow: 0 10px 40px rgba(43,191,179,0.3);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #f98f65;
  transition: 0.4s ease;
  z-index: 9999;
  padding: 40px 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--yellow); }

.mobile-nav .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav.active {
  right: 0;
}

@media (max-width: 992px) {

  .nav-links {
    display: none; /* ocultamos el menú desktop */
  }

  .mobile-nav {
    display: grid; /* mostramos el menú como lista */
  }

}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; transform: scaleY(0.5); transform-origin: top; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .about-flex { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-layout { grid-template-columns: 1fr; }
  .dest-sidebar { position: static; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 16px 20px; }
  .dest-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nosotros-flex { grid-template-columns: 1fr; gap: 40px; }
  .nosotros-flex.reverse { direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-container { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { width: 90px; }
}

/* GRID */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* CARD */
.place-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.place-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.place-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.place-card:hover .place-img img {
  transform: scale(1.1);
}

/* INFO */
.place-info {
  padding: 20px;
}

.place-info h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.place-info p {
  font-size: 0.95rem;
  color: var(--text-light);
}
/* ===== HERO SLIDER ESTILO PREMIUM ===== */

.hero-slider {
  padding: 120px 0 60px;
  display: flex;
  justify-content: center;
  background-color: #eb8d5ef6;
}

.slider-container {
  width: 95%;
  max-width: 1600px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide img {
  width: 100%;
  height: 380px; /* más delgado */
  object-fit: cover;
  border-radius: 30px;
}

/* Overlay suave */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.4)
  );
}

/* Círculo central */
.slide-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  /* background: rgba(255,255,255,0.9); */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* backdrop-filter: blur(6px); */
  z-index: 2;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.25); */
}

.slide-center img {
  /*width: 100px; */
  margin-bottom: 10px;
}

.slide-center span {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Flechas */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.8);
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 3;
}

.slider-btn:hover {
  background: white;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}
/* ===== COTIZAR HORIZONTAL ===== */

.quote-section {
  padding: 80px 0;
  background: #f7f7f7;
}

.quote-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 1400px;
  margin: auto;
}

.quote-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr 0.8fr 1.2fr;
  gap: 20px;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.field input {
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,191,179,0.15);
}

.quote-button {
  margin-top: 25px;
}

.quote-button .btn-primary {
  padding: 12px 40px;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  .slide img {
    height: 250px;
  }

  .slide-center {
    width: 140px;
    height: 140px;
  }

  .slide-center img {
    width: 70px;
  }

}

/* BOTON WHATSAPP */
.whatsapp-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-footer-btn i {
  font-size: 1.2rem;
}

.whatsapp-footer-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
/* BOTON FACEBOOK */
.facebook-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #254ed3;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.facebook-footer-btn i {
  font-size: 1.2rem;
}

.facebook-footer-btn:hover {
  background: #254ed3;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* BOTON instagram */
.instagram-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d325c4;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.instagram-footer-btn i {
  font-size: 1.2rem;
}

.instagram-footer-btn:hover {
  background: #d325c4;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
/* BOTON tiktok */
.tiktok-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tiktok-footer-btn i {
  font-size: 1.2rem;
}

.tiktok-footer-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}