* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #faf7f2;
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      color: #2c3e50;
      line-height: 1.5;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 1.5rem;
    }

    /* Navegación elegante */
    .header-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      border-radius: 60px;
      margin-bottom: 2.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(255,255,255,0.9);
      position: sticky;
      top: 20px;
      z-index: 100;
    }

    .logo h1 {
      font-size: 2rem;
      letter-spacing: 4px;
      color: #3a2c25;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      text-decoration: none;
      color: #4a3f39;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 400;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #a7896b;
    }

    /* Hero */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .hero-content h2 {
      font-size: 3.8rem;
      font-weight: 300;
      color: #3a2c25;
      line-height: 1.1;
    }

    .hero-content h2 span {
      font-style: italic;
      color: #a7896b;
    }

    .hero-content p {
      font-size: 1rem;
      margin: 1.5rem 0 2rem;
      color: #5b4e45;
      max-width: 500px;
    }

    .hero-image {
      height: 550px;
      background: url('img/salon1.jpg') center/cover;
      border-radius: 40px;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.15);
    }

    .btn {
      background: #a7896b;
      color: white;
      border: none;
      padding: 1rem 2.8rem;
      border-radius: 50px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
      display: inline-block;
      border: 1px solid transparent;
    }

    .btn:hover {
      background: #8e6f53;
    }

    /* Swiper Carrusel */
    .swiper {
      width: 100%;
      height: 500px;
      border-radius: 40px;
      margin: 4rem 0;
      box-shadow: 0 30px 50px -20px rgba(0,0,0,0.2);
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      padding: 3rem;
      color: white;
      font-size: 1.8rem;
      font-family: 'Cormorant Garamond', serif;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .swiper-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
      border-radius: 40px;
    }

    /* Menú colapsable */
    .menu-category {
      margin: 3rem 0;
    }

    .category-title {
      font-size: 2.8rem;
      color: #3a2c25;
      border-bottom: 2px solid #e5d9d0;
      padding-bottom: 0.5rem;
      margin-bottom: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color 0.2s;
    }
    .category-title:hover {
      color: #a7896b;
    }
    .category-title i {
      font-size: 2rem;
      transition: transform 0.3s;
      color: #a7896b;
    }
    .category-title .icon-collapse {
      margin-left: 1rem;
    }
    .category-content {
      overflow: hidden;
      transition: max-height 0.4s ease;
      max-height: 0; /* comenzar plegado */
      margin: 0 !important;
      padding: 0 !important;
      border: none;
    }
    .category-content.expanded {
      max-height: 8000px; /* valor grande para expandir */
      margin: initial !important;
      padding: initial !important;
      border: initial;
    }

    .subcategory-title {
      font-size: 2rem;
      color: #a7896b;
      margin: 2rem 0 1.5rem;
      font-style: italic;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 1.5rem;
    }

    .menu-item-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      border-radius: 30px;
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.9);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .menu-item-card:hover {
      background: white;
      box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
    }

    .item-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .item-header h4 {
      font-size: 1.3rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .item-header h4 i {
      color: #c9b037;
      font-size: 0.9rem;
      margin-left: 0.5rem;
    }

    .item-price {
      font-size: 1.4rem;
      font-family: 'Cormorant Garamond', serif;
      color: #5f5249;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    .item-price i {
      font-size: 1.2rem;
      color: #a7896b;
    }
    .price-icon {
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      background: rgba(167, 137, 107, 0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 30px;
      font-size: 0.9rem;
    }

    .item-desc {
      font-size: 0.9rem;
      color: #7b6e66;
      font-style: italic;
      line-height: 1.4;
    }

    /* Promociones con imagen */
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .promo-card {
      background: white;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .promo-card:hover {
      transform: scale(1.02);
    }
    .promo-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .promo-content {
      padding: 1.5rem;
      text-align: center;
    }
    .promo-content h4 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }
    .promo-content .badge {
      background: #3a2c25;
      color: white;
      padding: 0.3rem 1.5rem;
      border-radius: 50px;
      width: fit-content;
      margin: 0.8rem auto;
      font-weight: 500;
    }

    /* Galería ampliada */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 3rem 0;
    }

    .gallery-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 30px;
      transition: transform 0.4s;
    }

    .gallery-grid img:hover {
      transform: scale(1.02);
    }

    .reservation-form {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      max-width: 1000px;
      margin: 2rem auto;
    }

    .reservation-form input,
    .reservation-form select,
    .reservation-form button {
      padding: 1rem 1.5rem;
      border: 1px solid #e5d9d0;
      border-radius: 60px;
      font-family: 'Montserrat', sans-serif;
      background: white;
    }
    .reservation-form input::placeholder {
      color: #aaa;
      font-style: italic;
    }

    .reservation-form button {
      background: #a7896b;
      color: white;
      border: none;
      cursor: pointer;
      font-weight: 500;
      transition: background 0.3s;
    }
    .reservation-form button:hover {
      background: #8e6f53;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .contact-card {
      background: rgba(255,255,255,0.7);
      padding: 2rem;
      border-radius: 30px;
    }

    .footer {
      text-align: center;
      padding: 2rem;
      border-top: 1px solid #e5d9d0;
      margin-top: 3rem;
      color: #7b6e66;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .hero-image {
        height: 350px;
      }
      .header-nav {
        flex-direction: column;
        gap: 1rem;
        position: relative;
        top: 0;
      }
      .nav-links {
        justify-content: center;
      }
      .category-title {
        font-size: 2.2rem;
      }
    }
    
    /* Redes sociales en footer */
.footer .social-links {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer .social-links a {
  color: #a7896b;
  font-size: 1.8rem;
  transition: color 0.3s, transform 0.2s;
}

.footer .social-links a:hover {
  color: #8e6f53;
  transform: scale(1.1);
}

.footer p a {
  color: #a7896b;
  text-decoration: none;
  font-weight: 400;
}

.footer p a:hover {
  text-decoration: underline;
}