/* =======================================================
   ESTILO UNIFICADO — ALEJANDRO BARBER
======================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}

/* -------------------- HEADER -------------------- */

.header{
  position:fixed;
  top:0;left:0;right:0;
  height:72px;
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 36px;
  z-index:1500;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

/* LOGO */
.logo img{
  height:70px;
  width:70px;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
  padding:4px;
  border:2px solid #ff6e33;
}

/* MENU */
.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav a{
  font-weight:600;
  color:#e7e7e7;
  font-size:16px;
  transition:0.18s ease;
}

.nav a:hover,
.nav a.active{
  color:#ff6e33;
  transform:translateY(-2px);
}

.spacer {
  height: 90px;
}

/* -------------------- SERVICIOS -------------------- */

.servicios {
  padding: 60px 40px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.intro {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* TARJETAS */
.servicio-card {
  background: #1b1b1b;
  padding: 28px;
  border-radius: 14px;
  transition: 0.25s ease;
  border: 1px solid #242424;

  animation: fadeIn .7s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  background: #222;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.servicio-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.price {
  color: #ff6e33;
  font-size: 18px;
  font-weight: 700;
}

/* BOTÓN RESERVAR */
.btn-reservar {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background:#ff6e33;
  color:#fff;
  border-radius: 10px;
  font-weight: 600;
  transition: .2s;
}

.btn-reservar:hover {
  background:#ff824f;
  transform: translateY(-3px);
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* -------------------- FOOTER -------------------- */

.footer {
  text-align: center;
  padding: 25px 0;
  margin-top: 40px;
  color: #888;
  font-size: 14px;
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 600px) {
  .header {
    padding: 0 20px;
    height: 68px;
  }

  .logo img {
    height: 58px;
    width: 58px;
  }

  .spacer { height: 80px; }

  .section-title {
    font-size: 32px;
  }
}
