/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.5;
}

/* ------------------------ */
/*      HEADER              */
/* ------------------------ */
.header {
  background-color: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eaeaea;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Estilo para el teléfono en el header */
.telefono p {
  font-size: 2rem;     /* Tamaño grande, ajustable según necesidad */
  color: #1f4d67;      /* Azul oscuro (ajusta el código de color según el estilo de la web) */
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.logo img {
  height: 50px;
}

/* Botón del header */
.nav-demo .btn-demo {
  background: #f05a28;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-demo .btn-demo:hover {
  background: #d94f21;
}

/* ------------------------ */
/*      HERO SECTION        */
/* ------------------------ */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1f4d67;
  color: #fff;
  padding: 3rem 2rem;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-image img {
  max-width: 50%;
  height: auto;
}

/* ------------------------ */
/*  FEATURES SECTION        */
/* ------------------------ */

.features-section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fff;
}

.features-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.features-section .subtitle {
  color: #f05a28;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Container de features (grid de 3 columnas en desktop) */
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Cada feature item (tarjeta) */
.feature-item {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;  
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Icono de feature */
.feature-icon {
  font-size: 2rem;
  color: #f05a28;
  margin-bottom: 0.5rem;
}

/* Títulos y párrafos en features */
.feature-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA Demo en features */
.cta-demo {
  margin-top: 2rem;
}

.cta-demo .btn-demo {
  background: #f05a28;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-demo .btn-demo:hover {
  background: #d94f21;
}

/* ------------------------ */
/*  RESERVAS SECTION        */
/* ------------------------ */
.reservas-section {
  background: url('../images/background-reservas.jpg') no-repeat center center;
  background-size: cover;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.reservas-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ------------------------ */
/*  BENEFITS SECTION        */
/* ------------------------ */
.benefits-section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f8f8f8;
}

.benefits-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Container para beneficios: dos columnas en desktop */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Botón final en benefits */
.cta-footer .btn-primary {
  display: inline-block;
  background: #f05a28;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-footer .btn-primary:hover {
  background: #d94f21;
}

/* ------------------------ */
/*       FOOTER             */
/* ------------------------ */
.footer {
  text-align: center;
  padding: 1rem 2rem;
  background-color: #eee;
  font-size: 0.9rem;
}

/* Footer */
.footer-nav {
  background-color: #19445B; /* Ajusta al color que uses en la captura */
  color: #ffffff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Columna izquierda */
.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  max-width: 150px; /* Ajusta según lo requieras */
  margin-bottom: 1rem;
}

.footer-left p {
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.footer-left a {
  color: #ffffff;
  text-decoration: underline; /* visible subrayado */
}

/* Columna central */
.footer-middle {
  flex: 1 1 200px;
}

.footer-middle h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-middle li {
  margin: 0.3rem 0;
}

.footer-middle a {
  color: #ffffff;
  text-decoration: none;
}

.footer-middle a:hover {
  text-decoration: underline;
}

/* Columna derecha */
.footer-right {
  flex: 1 1 200px;
}

.footer-right h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right li {
  margin: 0.3rem 0;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Fila inferior */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
}


/* ------------------------ */
/*     RESPONSIVE           */
/* ------------------------ */
@media (max-width: 768px) {

  /* Header: centrar logo y botón */
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  
  /* Hero: pasar a columna */
  .hero {
    flex-direction: column;
  }
  
  .hero-image img {
    max-width: 80%;
    margin-top: 2rem;
  }
  
  /* Features: una columna */
  .features-container {
    grid-template-columns: 1fr;
  }

  /* Benefits: pasar a lista vertical */
  .benefits-container {
    grid-template-columns: 1fr;
  }
}

