body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: white;
  color: black;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 2px solid #fade3d;
  background-color: white;
}

.logo {
  height: 60px;
}

.whatsapp-button {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

/* Hero (ya sin slogans) */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
  text-align: center;
  background-color: #fff;
}

/* Buscador Airbnb style */
.search-container {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}

.search-type {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
}
.search-type label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-type input[type="radio"] {
  accent-color: #444;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  background: #fade3d;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-bar input[type="text"],
.search-bar input[type="date"] {
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 2px solid #f1f500;
  border-radius: 10px;
  flex: 1 1 180px;
  box-shadow: 0 0 8px rgba(228, 106, 7, 0.815);
}

.guest-selector {
  display: flex;
  gap: 20px;
  flex: 1 1 240px;
  align-items: center;
}

.guest-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guest-group label {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
}
.counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.counter button {
  width: 30px;
  height: 30px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  background: #f0cd08;
  font-size: 1.1rem;
  cursor: pointer;
}
.counter span {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.edades-ninos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding-left: 5px;
}
.edades-ninos div {
  display: flex;
  flex-direction: column;
}
.edades-ninos label {
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.edades-ninos input {
  width: 60px;
  padding: 6px;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 1.5px solid #ccc;
}

.search-button {
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.search-button:hover {
  background: #000;
}
.destinos {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.hoteles-destacados h2,
.destinos h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.destino {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: #f9f9f9;
}

.destino:hover {
  transform: translateY(-5px);
}

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

.destino h3 {
  margin: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  color: #222;
}

.newsletter-container {
  background-color: #fff8e1;
  border-top: 2px solid #ffc107;
  padding: 40px 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.newsletter-container h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  padding: 12px;
  width: 70%;
  max-width: 400px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: #fa8907ea;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: #e0ac00;
}

.site-footer {
  background-color: #fade3d;
  color: #000000;
  padding: 30px 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-weight: 300;
  font-size: 14px;
  color: #000000;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: #;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #000000;
}

.footer-copy {
  text-align: center;
  margin-top: 25px;
  font-size: 12px;
  color: #000000;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

.navbar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.2s ease-in-out;
}

.navbar-links a:hover {
  color: #fade3d;
}

.navbar-links .whatsapp-button {
  color: white !important;
}
footer a {
  color: black !important;
}

.quienes-somos {
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Nunito", sans-serif;
  color: #333;
}

.quienes-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.quienes-imagen {
  flex: 1 1 300px;
}

.quienes-imagen img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.quienes-texto {
  flex: 2 1 600px;
  font-size: 18px;
  line-height: 1.7;
}

.quienes-texto h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000;
}

.firma {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 15px;
}

.foto-firma {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Estilos para tablets y celulares */
@media (max-width: 1024px) {
  body {
    padding: 0 20px;
    font-size: 16px;
  }

  .navbar,
  .navbar .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 16px;
  }

  .search-box,
  .form-box,
  .footer-container,
  .footer-brand,
  .footer-nav,
  .contact-container,
  .quienes-somos-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .search-box input,
  .search-box select,
  .search-box button,
  .form-box input,
  .form-box textarea {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .form-box {
    padding: 20px;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  .quienes-somos-container {
    flex-direction: column;
    gap: 20px;
  }

  .quienes-somos-container img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .quienes-somos-container .texto {
    width: 100%;
  }

  .firma-con-foto {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .firma-con-foto img {
    width: 100px;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-nav ul {
    padding-left: 0;
  }

  .footer-nav ul li {
    margin-bottom: 8px;
  }

  .footer-brand h2 {
    font-size: 20px;
  }

  /* Ajustes adicionales si hay grillas de destinos */
  .destinos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Más ajustes si se requiere para celulares más pequeños */
  body {
    padding: 0 15px;
    font-size: 15px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .footer-brand h2 {
    font-size: 18px;
  }

  .search-box input,
  .form-box input,
  .form-box textarea {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* NAVBAR */
  nav {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  nav a {
    margin: 5px 0;
    font-size: 16px;
  }

  /* BUSCADOR */
  .search-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }

  .search-box input,
  .search-box select,
  .search-box button {
    width: 100%;
    font-size: 16px;
  }

  /* FORMULARIO DE CONTACTO */
  .formulario-contacto {
    flex-direction: column;
    padding: 15px;
  }

  .formulario-contacto input,
  .formulario-contacto textarea {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .formulario-contacto button {
    width: 100%;
  }

  /* QUIÉNES SOMOS */
  .quienes-container {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
  }

  .quienes-container img {
    width: 80%;
    margin-bottom: 20px;
  }

  .quienes-container .texto {
    max-width: 100%;
    padding: 0;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer img {
    margin-bottom: 10px;
    max-width: 150px;
  }
}

.hoteles-destacados {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.hoteles-destacados h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 5px;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 20px;
}

.slider::-webkit-scrollbar {
  display: none;
}

.hotel-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hotel-card h3 {
  font-size: 1.2rem;
  margin: 10px;
}

.hotel-card p {
  font-size: 0.9rem;
  margin: 0 10px 5px 10px;
  color: #666;
}

.tags {
  font-size: 0.8rem;
  margin: 0 10px 10px 10px;
  color: #333;
}

.whatsapp-button {
  display: block;
  margin: 10px;
  background-color: #000;
  color: #fff;
  padding: 8px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #333;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.hotel-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hotel-card h3 {
  font-size: 1.1rem;
  margin: 10px;
}

.hotel-card p {
  font-size: 0.9rem;
  margin: 0 10px 5px;
  color: #666;
}

.tags {
  font-size: 0.8rem;
  margin: 0 10px 10px;
  color: #333;
}

.whatsapp-button {
  margin: 10px;
  background-color: #000;
  color: #fff;
  padding: 8px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #333;
}

.destacados-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 40px; /* margen a los costados */
  margin-bottom: 60px;
}
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}
.card-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stars {
  color: #f5c518;
  font-size: 16px;
}

.consultar-link {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
}

.consultar-link:hover {
  text-decoration: underline;
}

/* CONTENEDOR GENERAL */
.destacados-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 40px;
  max-width: 1400px;
  margin: auto;
}

/* TARJETAS DE HOTEL */
.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
}

/* IMAGEN DEL HOTEL */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* INFO DEL HOTEL */
.card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
}

.card-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

/* ESTRELLAS */
.stars {
  font-size: 1rem;
  color: #ffd700;
}

/* BOTÓN CONSULTAR */
.consultar-link {
  margin-top: 8px;
  align-self: flex-start;
  background-color: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.consultar-link:hover {
  background-color: #333;
}
/* CONTENEDOR GENERAL DE HOTELES DESTACADOS */
.destacados-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  background-color: #ff6600; /* Naranja fuerte C0 M100 Y60 K0 */
}

/* TARJETA DE HOTEL */
.hotel-card {
  background-color: #ffb62edc;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
}

/* IMAGEN */
.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENIDO */
.hotel-content {
  padding: 16px;
}

.hotel-content h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: bold;
}

.hotel-content p {
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* ESTRELLAS */
.hotel-content .stars {
  margin-bottom: 12px;
}

/* BOTÓN CONSULTAR */
.hotel-content .consultar-btn {
  background-color: white;
  color: #eeb946;
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.hotel-content .consultar-btn:hover {
  background-color: #ffe4d5;
  color: #ffe23b;
}

.search-large {
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.praediumsafe-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 60vh;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

/* RESPONSIVE ADAPTATIONS */
@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .navbar-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-type {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .search-bar input,
  .search-bar select,
  .search-button {
    width: 100%;
  }

  .guest-selector {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .destacados-container,
  .galeria {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .quienes-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .quienes-imagen img {
    width: 100%;
    height: auto;
  }

  .hotel-card,
  .card {
    max-width: 100%;
  }

  .slider {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .logo {
    height: 45px;
  }

  .search-type label {
    font-size: 0.85rem;
  }

  .search-bar input,
  .search-bar select {
    font-size: 0.9rem;
  }

  .search-button {
    padding: 12px;
    font-size: 0.95rem;
  }

  .hotel-card h3,
  .card-info h3 {
    font-size: 1rem;
  }

  .hotel-card p,
  .card-info p {
    font-size: 0.85rem;
  }

  .newsletter-container h3 {
    font-size: 1.5rem;
  }

  .footer-brand h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .search-type {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 12px;
  }

  .search-bar input[type="text"],
  .search-bar input[type="date"],
  .search-bar select,
  .search-button {
    width: 100%;
    font-size: 1rem;
  }

  .guest-selector {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .counter button {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .search-button {
    padding: 16px;
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .galeria,
  .hotel-grid,
  .destacados-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .destino img,
  .hotel-card img,
  .card img {
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }

  .card-info,
  .hotel-content {
    padding: 12px;
  }

  .hotel-card,
  .card {
    margin-bottom: 20px;
  }
}

/* ———————————RESPONSIVE BUSCADOR CHICO——————————— */
@media (max-width: 600px) {
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 12px;
  }

  .search-bar input[type="text"],
  .search-bar select,
  .search-bar input[type="date"],
  .search-button {
    width: 100%;
    font-size: 1rem;
  }

  .guest-selector {
    flex-direction: column;
    gap: 12px;
  }

  .guest-group {
    width: 100%;
  }
}

/* —————————RESPONSIVE GRILLAS DESTINOS Y HOTELES————————— */
@media (max-width: 600px) {
  .galeria,
  .destacados-container,
  .hotel-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    gap: 20px !important;
  }

  .hotel-card,
  .card,
  .destino {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hotel-card img,
  .card img,
  .destino img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  .card-info,
  .hotel-content {
    padding: 12px !important;
  }
}

/* ———————FULL WIDTH EMPTY PADDING FOR SEARCH-CONTAINER——— */
@media (max-width: 600px) {
  .search-container {
    padding: 20px !important;
  }
}

/* —————— ENSURE NAVBAR LINKS FIT MOBILE ————— */
@media (max-width: 600px) {
  .navbar-links {
    flex-direction: column !important;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
  }
  .navbar-links a,
  .whatsapp-button {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  .logo {
    height: 80px !important;
    max-width: 80% !important;
  }
}

@media (max-width: 600px) {
  .search-bar input[type="text"],
  .search-bar input[type="date"],
  .search-bar select {
    padding: 10px 12px !important;
    font-size: 0.95rem !important;
  }

  .search-button {
    padding: 12px !important;
    font-size: 1rem !important;
  }

  .guest-group label {
    font-size: 0.85rem !important;
  }

  .counter button {
    width: 28px !important;
    height: 28px !important;
    font-size: 1rem !important;
  }

  .counter span {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .search-container {
    padding: 20px 10px;
  }

  .search-bar {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background-color: #fade3d;
    max-width: 95%;
    margin: 0 auto;
  }

  .search-bar input[type="text"],
  .search-bar input[type="date"],
  .search-bar select {
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    width: 100%;
    height: 38px;
    line-height: 1.2;
  }

  .guest-selector {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .guest-group {
    width: 100%;
    align-items: flex-start;
  }

  .counter {
    justify-content: flex-start;
  }

  .search-button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .logo {
    margin: 0 auto;
    height: 50px;
  }
}

@media (max-width: 600px) {
  /* CENTRAR LOGO */
  .navbar {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  .logo {
    margin: 0 auto !important;
    height: 50px !important;
  }

  /* AJUSTES DE BUSCADOR */
  .search-container {
    padding: 10px !important;
  }

  .search-bar {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 15px !important;
    border-radius: 12px;
    background-color: #fade3d;
    max-width: 95% !important;
    margin: 0 auto;
  }

  .search-bar input[type="text"],
  .search-bar input[type="date"],
  .search-bar select {
    font-size: 14px !important;
    padding: 8px 12px !important;
    height: 40px !important;
    line-height: 1.2 !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .guest-selector {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .guest-group {
    width: 100% !important;
    align-items: flex-start !important;
  }

  .search-button {
    width: 100% !important;
    padding: 10px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
  }

  .navbar-links {
    display: none !important; /* Oculta siempre en móvil por defecto */
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 10px;
  }

  .navbar-links.show {
    display: flex !important; /* Muestra solo si se clickea el botón */
  }
}

@media screen and (max-width: 768px) {
  .logo {
    height: 40px !important; /* Podés ajustar a gusto */
    margin-left: 10px;
  }
}
.logo {
  max-width: none !important;
  width: auto;
}

@media screen and (max-width: 768px) {
  .search-box input,
  .search-box select,
  .search-box textarea {
    padding: 8px 10px !important;
    font-size: 14px !important;
    height: auto !important;
    line-height: 1.2;
  }

  .search-box {
    gap: 10px !important;
  }
}

@media (max-width: 768px) {
  .navbar img {
    max-height: 50px; /* Aumentá este valor si querés que el logo sea aún más grande */
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  input,
  select,
  textarea {
    height: 40px !important;
    padding: 8px 10px !important;
    font-size: 14px !important;
    box-sizing: border-box;
  }

  .search-box {
    gap: 10px !important;
  }
}

#navbar-safe img {
  display: block;
  margin: 0 auto;
  max-height: 50px;
}

<style > input,
select,
.search-button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.search-button {
  background-color: #f2c200;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #d6aa00;
}
</style > .contador-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-family: "Montserrat", sans-serif;
}

.contador-container button {
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
}

.contador-container input {
  width: 50px;
  text-align: center;
}

.testimonios {
  background: #fade3d;
  padding: 40px 20px;
  text-align: center;
  font-family: "montserrat", sans-serif;
}

.testimonios h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.opinion {
  background: white;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.quote {
  color: #333;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.quote::before {
  content: "“";
  font-size: 40px;
  color: #fda604e5;
  position: absolute;
  left: 0;
  top: -10px;
}

.cliente {
  font-weight: bold;
  margin-top: 15px;
  color: #666;
}
