:root {
    --primary-color: #fbb03b;
    --primary-dark: #e19a2e;
    --text-color: #333333;
    --nav-color: #656565;
    --heading-color: #474747;
    --bg-color: #f4f4f4;
    --font-ui: Arial, Helvetica, sans-serif;
    --font-body: Roboto, Arial, Helvetica, sans-serif;
    --bh-shell-gutter: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

header {
    background-color: var(--primary-color);
    padding: 0;
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-ui);
    margin: var(--bh-shell-gutter) var(--bh-shell-gutter) 0;
    box-sizing: border-box;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

header h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--heading-color);
    padding: 0 1rem 1rem;
}

.tour-container {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tour-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    padding: 1rem;
}

.tour-content h2 {
    font-size: 24px;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 700;
}

.tour-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn,
.pay-link {
    display: inline-block;
    margin-right: 0.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn {
    background-color: var(--primary-color);
    color: #fff;
}

.btn:hover {
    background-color: #e69e2e;
}

.pay-link {
    background-color: #000;
    color: #fff;
}

.pay-link:hover {
    background-color: #333;
}

footer {
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 1.25rem 1rem;
    margin: 24px var(--bh-shell-gutter) 8px;
    font-family: var(--font-body);
    box-sizing: border-box;
}

footer .footer-logotipo {
    height: 44px;
    width: auto;
    margin: 0 auto 10px;
}

footer p {
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
}

/* Estilos para la barra de navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--primary-color);
    font-family: var(--font-ui);
  }

  .navbar img,
  .navbar .brand-logo {
    height: 50px;
    width: auto;
    max-height: 50px;
    display: block;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--nav-color);
    font-weight: 700;
    font-size: 16px;
    padding: 0.5rem 0.75rem;
    border-radius: 0;
    transition: background-color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.08);
  }
  
  .nav-links a.active {
    background-color: rgba(0, 0, 0, 0.12);
  }
  
  /* Responsive para móviles */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      padding: 1rem;
    }
    
    .nav-links {
      margin-top: 1rem;
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }
    
    .nav-links a {
      text-align: center;
      padding: 0.75rem;
    }
  }
/* ===== BuenoHotel button standard ===== */
.btn,
.cta .btn,
.tour-info .btn,
a.btn,
button.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-right: 0.5rem;
  text-decoration: none !important;
  background: #fbb03b !important;
  color: #222 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  padding: 10px 22px !important;
  border-radius: 20px !important;
  border: 0 !important;
  cursor: pointer;
  line-height: 1.2;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}
.btn:hover,
.cta .btn:hover,
.tour-info .btn:hover,
a.btn:hover,
button.btn:hover {
  background: #e19a2e !important;
  color: #222 !important;
}

/* BuenoHotel shared footer */
.bh-site-footer {
  background: #fbb03b;
  color: #000;
  text-align: center;
  padding: 1.25rem 1rem 1rem;
  margin: 24px var(--bh-shell-gutter, 8px) 8px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
.bh-site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bh-site-footer .footer-logotipo {
  height: 48px;
  width: auto;
  margin: 0 0 4px;
  display: block;
}
.bh-site-footer .footer-tagline,
.bh-site-footer .footer-contact,
.bh-site-footer .footer-copy {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(0,0,0,0.85);
}
.bh-site-footer a {
  color: rgba(0,0,0,0.88);
  font-weight: 700;
  text-decoration: none;
}
.bh-site-footer a:hover { text-decoration: underline; }
.navbar a.brand-link { display: inline-flex; align-items: center; }
