/* =====================
   RESET GENERAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #333;
  background: #fff;
}

/* =====================
   FRASE
===================== */
.frase {
  padding: 50px 20px;
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: auto;
}

/* =====================
   SERVICIOS
===================== */

section h2 {
    letter-spacing: 2px;
}

section p {
    line-height: 1.7;
}

section i {
    color: rgba(84, 21, 19, 1);
}

.servicio-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: inherit;
}

.servicio-icon {
    width: 46px;
    height: 46px;
    border: 2px solid rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servicio-icon i {
    font-size: 20px;
    color: inherit;
}

.servicio-item span {
    font-size: 15px;
}


/* =====================
   SERVICIOS ()
===================== */
.servicios {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.servicios h2 {
  font-size: 28px;
  font-weight: normal;
}

.decoracion {
  display: block;
  margin: 10px 0;
  color: #b98b40;
  font-size: 18px;
}

.subtitulo {
  font-size: 14px;
  margin-bottom: 60px;
  color: #777;
}

/* GRID */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CUADRADO */
.servicio-box {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* TEXTO */
.servicio-box span {
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.justify-text {
    text-align: justify;
}

/* ESCALONADO */
.servicio-box.offset {
  transform: translateY(40px);
}

/* HOVER */
.servicio-box:hover {
  filter: brightness(0.85);
  transform: scale(1.02);
}

/* =====================
   HABITACIONES
===================== */
.habitaciones {
  padding: 70px 20px;
  text-align: center;
  background: #f8f8f8;
}

.habitaciones h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.precio {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #8b2c2c;
  color: white;
  padding: 10px;
  font-size: 13px;
}

/* =====================
   SOBRE NOSOTROS
===================== */
.nosotros {
  display: flex;
  padding: 70px 20px;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.nosotros .col {
  flex: 1;
}

.nosotros img {
  width: 100%;
}

.nosotros h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.nosotros p {
  line-height: 1.6;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicio-box.offset {
    transform: translateY(20px);
  }

  .nosotros {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .hero h2 {
    font-size: 32px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicio-box,
  .servicio-box.offset {
    transform: none;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
}