/* scss/base/_reset.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #F4F4F4;
  color: #333;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* scss/base/_base.scss */
body {
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: bold;
  color: #013D5A;
  line-height: 1.2;
}

h1 {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: bold;
  color: #F4F4F4;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

/* scss/layout/_header.scss */
header {
  background-color: #013D5A;
  padding: 1rem;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
header nav ul li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}
header nav ul li a:hover {
  color: #0090dd;
}
@media (max-width: 767px) {
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* scss/layout/_footer.scss */
footer {
  background-color: #013D5A;
  color: white;
  text-align: left;
  padding: 2rem;
}
footer p {
  font-size: 0.9rem;
  margin: 0;
}
footer h5 {
  color: white;
}
footer a {
  color: #0090dd;
}
footer a:hover {
  text-decoration: underline;
}

/* scss/layout/_grid.scss */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.col-2 {
  flex: 0 0 50%;
}

.col-3 {
  flex: 0 0 33.33%;
}

.col-4 {
  flex: 0 0 25%;
}

@media (max-width: 767px) {
  .col-2,
  .col-3,
  .col-4 {
    flex: 0 0 100%;
  }
}
/* scss/components/_buttons.scss */
.btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  background-color: #013D5A;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #0090dd;
  color: #333;
}
.btn--secundario {
  background-color: #F4F4F4;
  color: #013D5A;
  border: 1px solid #013D5A;
}
.btn--secundario:hover {
  background-color: #013D5A;
  color: white;
}
.btn--full {
  width: 100%;
  text-align: center;
}

.hero {
  background-image: url("../../Img-hotel/banner-principal.jpg");
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.hero .btn {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.habitaciones {
  padding: 4rem 1rem;
}
.habitaciones h2 {
  color: #013D5A;
  margin-bottom: 2rem;
}
.habitaciones .grid {
  gap: 2rem;
}
.habitaciones .card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.habitaciones .card:hover {
  transform: translateY(-5px);
}
.habitaciones .card img {
  width: 100%;
  height: auto;
}
.habitaciones .card .contenido {
  padding: 1rem;
  text-align: center;
}
.habitaciones .card .contenido h3 {
  margin-bottom: 0.5rem;
}
.habitaciones .card .contenido p {
  font-size: 0.95rem;
}
.habitaciones .card .contenido .btn {
  margin-top: 0.5rem;
}

#hero {
  min-height: 80vh;
}
#hero .carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
#hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero .carousel-item .carousel-caption {
  z-index: 2;
  position: relative;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.tour-card {
  height: 450px;
}
.tour-card .tour-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}
.tour-card .tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #013D5A;
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 20px;
}
.tour-card .tour-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
}
.tour-card .tour-footer {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(2px);
  color: white;
}
.tour-card .tour-footer h5 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.tour-card .tour-footer p.price {
  margin-bottom: 0;
  font-weight: 500;
}

.img-mosaico-small {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.img-mosaico-large {
  width: 260px;
  height: 260px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .img-mosaico-small,
  .img-mosaico-large {
    width: 100%;
    height: auto;
  }
}
.imagen-hotel {
  background-image: url("/Img-hotel/piscina_hotel_vertical.jpg");
  background-position: center;
  background-size: cover;
  height: 100%;
  min-height: 400px;
}

#habitaciones {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-color: #F4F4F4;
}

#hero-contacto {
  background-image: url("../../Img-otros/Moai_horizontal.jpeg");
  background-size: cover;
  background-position: center;
  height: 70vh;
}
#hero-contacto .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#hero-contacto .overlay h1 {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
#hero-contacto .overlay p {
  font-size: 1.2rem;
  color: white;
}
@media (max-width: 767px) {
  #hero-contacto .overlay h1 {
    font-size: 2rem;
  }
}

.contacto-wrapper {
  row-gap: 2rem;
}
@media (max-width: 767px) {
  .contacto-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .contacto-wrapper .formulario-contacto,
  .contacto-wrapper .contacto-info {
    width: 100%;
    text-align: left;
  }
}

.formulario-contacto h5 {
  color: #013D5A;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}
.formulario-contacto .form-label {
  color: #013D5A;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.formulario-contacto .form-control {
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}
.formulario-contacto textarea.form-control {
  resize: vertical;
}
.formulario-contacto button {
  margin-top: 1rem;
}

.contacto-info {
  color: #013D5A;
}
.contacto-info h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}
.contacto-info a {
  color: #013D5A;
}
.contacto-info a:hover {
  text-decoration: underline;
}
.contacto-info p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.titulo-seccion {
  color: #013D5A;
}

.enlace-primario {
  color: #013D5A;
}
.enlace-primario:hover {
  color: #0090dd;
  text-decoration: underline;
}

.cta-img-overlay {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-img-overlay .overlay-dark {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.cta-img-overlay .overlay-dark .p-5 {
  width: 100%;
}
@media (max-width: 768px) {
  .cta-img-overlay {
    min-height: 300px;
  }
}

.cta-contacto {
  color: #F4F4F4;
}

.cta-habitaciones {
  color: #F4F4F4;
}

/*# sourceMappingURL=style.css.map */
.btn-white-blue {
  background-color: #ffffff;
  color: #013D5A; 
  border: 1px solid #013D5A;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.btn-white-blue:hover {
  background-color: #013D5A;
  color: #ffffff;
}
