/* --- RESETEO BÁSICO --- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  scroll-behavior: smooth;
}

/* --- HEADER FIJO --- */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 80px;  /* antes era 50px */
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffb347;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

header h1 {
  font-size: 1.5rem;
  color: #ff7b00;
  font-weight: 700;
  margin: 0;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #ffb347;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 5%;
  z-index: 9999; /* 👈 MUY IMPORTANTE */
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #ff7b00;
}

/* --- MENÚ MÓVIL --- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 50%;
    text-align: center;
    border-left: 2px solid #ffb347;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* --- HERO --- */
.hero {
  background: url("images/travel-hd-4zjwrepl0mzn70nd.jpg") center/cover no-repeat;
  height: 81vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 80px; /* espacio por el header */
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 90vh;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.btn-hero {
  display: inline-block;
  background: #ff7b00;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #ff9a33;
}

/* --- SECCIONES --- */
.section {
  padding: 80px 5%;
  text-align: center;
  animation: fadeIn 1s ease;
}

.reseñas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  flex: 1 1 calc(30% - 1rem);
  background: #fffaf3;
  border: 2px solid #ffb347;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

/* --- REDES --- */
.redes .social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.social-links a {
  text-decoration: none;
  color: #ff7b00;
  font-weight: bold;
}

/* --- WHATSAPP --- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background: #20b857;
}

/* --- FOOTER --- */
footer {
  background: #ffb347;
  text-align: center;
  padding: 20px;
  color: white;
}

/* --- ANIMACIÓN --- */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
