    /* ==========================================
IMPORTAR FUENTE BRESSAY
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Bressay&display=swap');

/* ==========================================
TIPOGRAFÍA GLOBAL
========================================== */
body, h1, h2, h3, h4, h5, h6, p, a, li, span, div {
  font-family: 'Bressay', sans-serif;
}
    /* ---------- RESET Y VARIABLES ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #ffffff; /* blanco predominante */
      color: #1e1e1e; /* casi negro para textos */
      line-height: 1.5;
      font-weight: 300;
    }

    /* Colores de la paleta */
    :root {
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --dark-gray: #2e2e2e;
      --black: #121212;
      --accent: #2c2c2c; /* para líneas y detalles */
    }

    /* Líneas separadoras gris oscuro (se usarán en bordes superiores o hr) */
    hr {
      border: 0;
      border-top: 2px solid #2e2e2e;
      width: 80px;
      margin: 2rem auto;
    }

    .section-divider {
      width: 100%;
      height: 1px;
      background-color: #d0d0d0;
      margin: 2rem 0;
    }

    /* Tipografías jerarquía SEO */
    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    h2:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--dark-gray);
      margin-top: 0.5rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    /* Contenedor principal */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

header {
  background-color: #000;
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.nav-menu ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #5a5a5a;
}

.nav-reserva {
  border: 2px solid #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-reserva:hover {
  background-color: #fff;
  color: #000;
}

/* Botón hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ====== MEDIA QUERIES ====== */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
  }

  .nav-menu li {
    border-bottom: 1px solid #333;
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
  }

  /* Mantener logo y hamburguesa en la misma línea */
  .header-inner {
    justify-content: space-between;
  }
}

    /* ---------- HERO ---------- */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                  url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
      min-height: 90vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      font-weight: 300;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    /* Botones (CTA) */
    .btn {
      display: inline-block;
      background-color: var(--black);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 2px solid var(--black);
      transition: 0.2s;
      font-size: 1rem;
      cursor: pointer;
    }

    .btn-light {
      background-color: transparent;
      color: white;
      border-color: white;
    }

    .btn-light:hover {
      background-color: white;
      color: var(--black);
    }

    .btn:hover {
      background-color: transparent;
      color: var(--black);
      background-color: white;
      color: var(--black);
    }

    /* ---------- SECCIÓN SOBRE NOSOTROS ---------- */
    .about {
      padding: 5rem 0;
      background-color: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text p {
      font-size: 1.2rem;
      color: #333;
      margin-top: 1rem;
    }

    .about-image {
      background-color: var(--light-gray);
      height: 350px;
     background-image: url('../assets/img/leon.jpg');
      border-radius: 8px;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
    }

    /* ---------- SERVICIOS DESTACADOS ---------- */
    .services {
      padding: 4rem 0;
      background-color: var(--light-gray);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      margin-top: 2rem;
    }

    .service-card {
      background: white;
      padding: 2.5rem 1.5rem;
      text-align: center;
      border-radius: 12px;
      transition: transform 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      border: 1px solid var(--medium-gray);
    }

    .service-card:hover {
      transform: translateY(-6px);
    }

    .service-card i {
      font-size: 2.8rem;
      color: var(--dark-gray);
      margin-bottom: 1.2rem;
    }

    .service-card h3 {
      font-weight: 600;
    }

    .service-card p {
      color: #555;
      font-size: 0.95rem;
    }

    /* ---------- EXPERIENCIA ---------- */
    .experience {
      padding: 5rem 0;
      background-color: var(--white);
      text-align: center;
    }

    .experience-block {
      max-width: 900px;
      margin: 0 auto;
      background: var(--light-gray);
      padding: 3rem;
      border-radius: 24px;
      border: 1px solid var(--medium-gray);
    }

    .experience p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      font-weight: 300;
    }

    .experience-highlights {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .exp-item {
      font-weight: 600;
      font-size: 1.2rem;
      border-bottom: 2px solid var(--dark-gray);
      padding-bottom: 0.5rem;
    }

    /* ---------- RESERVA (BOOKSY) ---------- */
    .reserva-booksy {
      padding: 4rem 0;
      background: var(--light-gray);
      text-align: center;
    }

    .btn-booksy {
      background-color: var(--black);
      color: white;
      font-size: 2rem;
      padding: 1.5rem 3rem;
      border-radius: 80px;
      display: inline-block;
      text-decoration: none;
      font-weight: 700;
      border: 3px solid var(--black);
      transition: 0.2s;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn-booksy:hover {
      background-color: white;
      color: var(--black);
    }

    /* ---------- REDES SOCIALES ---------- */
    .social {
      padding: 4rem 0;
      text-align: center;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 2rem;
    }

    .social-icons a {
      color: var(--black);
      font-size: 3rem;
      transition: color 0.2s, transform 0.2s;
    }

    .social-icons a:hover {
      color: #4a4a4a;
      transform: scale(1.1);
    }

    /* ---------- CONTACTO (extra para el menú, pero lo añadimos sutil) ---------- */
    .contact-mini {
      padding: 3rem 0;
      background-color: var(--white);
      border-top: 1px solid var(--medium-gray);
    }

    .contact-mini .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .contact-info {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      font-size: 1.1rem;
    }

    .contact-info i {
      margin-right: 0.5rem;
      color: var(--dark-gray);
    }

    /* ---------- CTA FINAL ---------- */
    .cta-final {
      padding: 5rem 0;
      background-color: var(--black);
      color: white;
      text-align: center;
    }

    .cta-final h2 {
      color: white;
    }

    .cta-final h2:after {
      background-color: white;
    }

    .cta-final .btn {
      background-color: white;
      color: var(--black);
      border-color: white;
      font-size: 1.5rem;
      padding: 1.2rem 3rem;
      margin-top: 2rem;
    }

    .cta-final .btn:hover {
      background-color: transparent;
      color: white;
    }

    /* ---------- FOOTER ---------- */
    footer {
      background-color: #1a1a1a;
      color: #ccc;
      padding: 3rem 0 2rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #555;
    }

    .footer-links a:hover {
      color: white;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 2rem;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        gap: 1rem;
        justify-content: flex-start;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-image {
        height: 250px;
      }

      .btn-booksy {
        font-size: 1.3rem;
        padding: 1rem 2rem;
      }

      .contact-info {
        flex-direction: column;
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 1.2rem;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
    }

    /*QUIENES*/

    /* ---------- RESET Y VARIABLES (mismo estilo que páginas anteriores) ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1e1e1e;
      line-height: 1.5;
      font-weight: 300;
    }

    :root {
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --dark-gray: #2e2e2e;
      --black: #121212;
    }

    /* Línea divisoria gris oscuro */
    .section-divider {
      width: 100%;
      height: 1px;
      background-color: #2e2e2e;
      margin: 3rem 0;
    }

    hr {
      border: 0;
      border-top: 2px solid #2e2e2e;
      width: 80px;
      margin: 2rem auto;
    }

    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }

    h2:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--dark-gray);
      margin-top: 0.5rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    

    /* ---------- HERO (servicios) ---------- */
    .hero-simple {
      background-color: var(--light-gray);
      padding: 5rem 0;
      text-align: center;
      border-bottom: 1px solid var(--dark-gray);
    }

    .hero-simple h1 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero-simple p {
      font-size: 1.3rem;
      color: #333;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ---------- SECCIÓN SERVICIOS (categorías) ---------- */
    .servicios-categoria {
      padding: 5rem 0 2rem;
    }

    .categoria {
      margin-bottom: 5rem;
    }

    .categoria:last-of-type {
      margin-bottom: 2rem;
    }

    .categoria-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .categoria-header i {
      font-size: 2.5rem;
      color: var(--dark-gray);
    }

    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .servicio-card {
      background: var(--white);
      padding: 2rem 1.5rem;
      border-radius: 16px;
      border: 1px solid var(--medium-gray);
      transition: transform 0.2s, box-shadow 0.2s;
      text-align: left;
    }

    .servicio-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
      border-color: var(--dark-gray);
    }

    .servicio-icono {
      font-size: 2.2rem;
      color: var(--dark-gray);
      margin-bottom: 1.2rem;
    }

    .servicio-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .servicio-descripcion {
      color: #555;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .servicio-detalle {
      font-weight: 400;
      color: var(--black);
      border-top: 1px dashed var(--medium-gray);
      padding-top: 0.8rem;
      margin-top: 0.8rem;
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .servicio-detalle span {
      background-color: var(--light-gray);
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      font-weight: 500;
    }

    /* Categorías específicas para agrupar visualmente */
    .categoria-titulo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* ---------- CTA FINAL ---------- */
    .cta-servicios {
      padding: 5rem 0;
      background-color: var(--black);
      color: white;
      text-align: center;
      margin-top: 3rem;
    }

    .cta-servicios h2 {
      color: white;
    }

    .cta-servicios h2:after {
      background-color: white;
    }

    .btn {
      display: inline-block;
      background-color: white;
      color: var(--black);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 2px solid white;
      transition: 0.2s;
      font-size: 1.2rem;
      margin-top: 2rem;
    }

    .btn:hover {
      background-color: transparent;
      color: white;
    }

    /* ---------- FOOTER ---------- */
    footer {
      background-color: #1a1a1a;
      color: #ccc;
      padding: 3rem 0 2rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #555;
    }

    .footer-links a:hover {
      color: white;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 2rem;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      nav ul {
        gap: 1rem;
      }
      .categoria-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
      }
    }
    @media (max-width: 480px) {
      .container {
        padding: 0 1.2rem;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }
    }
  

    /*SEVICIOS*/
    /* ---------- RESET Y VARIABLES (mismo estilo que páginas anteriores) ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1e1e1e;
      line-height: 1.5;
      font-weight: 300;
    }

    :root {
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --dark-gray: #2e2e2e;
      --black: #121212;
    }

    /* Línea divisoria gris oscuro */
    .section-divider {
      width: 100%;
      height: 1px;
      background-color: #2e2e2e;
      margin: 3rem 0;
    }

    hr {
      border: 0;
      border-top: 2px solid #2e2e2e;
      width: 80px;
      margin: 2rem auto;
    }

    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }

    h2:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--dark-gray);
      margin-top: 0.5rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }


    /* ---------- HERO (servicios) ---------- */
    .hero-simple {
      background-color: var(--light-gray);
      padding: 5rem 0;
      text-align: center;
      border-bottom: 1px solid var(--dark-gray);
    }

    .hero-simple h1 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero-simple p {
      font-size: 1.3rem;
      color: #333;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ---------- SECCIÓN SERVICIOS (categorías) ---------- */
    .servicios-categoria {
      padding: 5rem 0 2rem;
    }

    .categoria {
      margin-bottom: 5rem;
    }

    .categoria:last-of-type {
      margin-bottom: 2rem;
    }

    .categoria-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .categoria-header i {
      font-size: 2.5rem;
      color: var(--dark-gray);
    }

    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .servicio-card {
      background: var(--white);
      padding: 2rem 1.5rem;
      border-radius: 16px;
      border: 1px solid var(--medium-gray);
      transition: transform 0.2s, box-shadow 0.2s;
      text-align: left;
    }

    .servicio-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
      border-color: var(--dark-gray);
    }

    .servicio-icono {
      font-size: 2.2rem;
      color: var(--dark-gray);
      margin-bottom: 1.2rem;
    }

    .servicio-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .servicio-descripcion {
      color: #555;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .servicio-detalle {
      font-weight: 400;
      color: var(--black);
      border-top: 1px dashed var(--medium-gray);
      padding-top: 0.8rem;
      margin-top: 0.8rem;
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .servicio-detalle span {
      background-color: var(--light-gray);
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      font-weight: 500;
    }

    /* Categorías específicas para agrupar visualmente */
    .categoria-titulo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* ---------- CTA FINAL ---------- */
    .cta-servicios {
      padding: 5rem 0;
      background-color: var(--black);
      color: white;
      text-align: center;
      margin-top: 3rem;
    }

    .cta-servicios h2 {
      color: white;
    }

    .cta-servicios h2:after {
      background-color: white;
    }

    .btn {
      display: inline-block;
      background-color: white;
      color: var(--black);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 2px solid white;
      transition: 0.2s;
      font-size: 1.2rem;
      margin-top: 2rem;
    }

    .btn:hover {
      background-color: transparent;
      color: white;
    }

    /* ---------- FOOTER ---------- */
    footer {
      background-color: #1a1a1a;
      color: #ccc;
      padding: 3rem 0 2rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #555;
    }

    .footer-links a:hover {
      color: white;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 2rem;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      nav ul {
        gap: 1rem;
      }
      .categoria-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
      }
    }
    @media (max-width: 480px) {
      .container {
        padding: 0 1.2rem;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }
    }
  

    /* contacto */ 
    /* ---------- RESET Y VARIABLES (mismo estilo) ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1e1e1e;
      line-height: 1.5;
      font-weight: 300;
    }

    :root {
      --white: #ffffff;
      --light-gray: #f5f5f5;
      --medium-gray: #e0e0e0;
      --dark-gray: #2e2e2e;
      --black: #121212;
    }

    /* Línea divisoria gris oscuro */
    .section-divider {
      width: 100%;
      height: 1px;
      background-color: #2e2e2e;
      margin: 3rem 0;
    }

    hr {
      border: 0;
      border-top: 2px solid #2e2e2e;
      width: 80px;
      margin: 2rem auto;
    }

    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }

    h2:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--dark-gray);
      margin-top: 0.5rem;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }


    /* ---------- HERO (contacto) ---------- */
    .hero-simple {
      background-color: var(--light-gray);
      padding: 5rem 0;
      text-align: center;
      border-bottom: 1px solid var(--dark-gray);
    }

    .hero-simple h1 {
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero-simple p {
      font-size: 1.3rem;
      color: #333;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ---------- SECCIÓN INFORMACIÓN Y HORARIOS ---------- */
    .contact-info {
      padding: 5rem 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .datos-contacto p {
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .datos-contacto i {
      width: 30px;
      color: var(--dark-gray);
      font-size: 1.4rem;
    }

    .horarios {
      background-color: var(--light-gray);
      padding: 2rem 2rem 1.5rem;
      border-radius: 24px;
      border: 1px solid var(--medium-gray);
    }

    .horarios h3 {
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
    }

    .tabla-horarios {
      width: 100%;
    }

    .tabla-horarios tr td {
      padding: 0.6rem 0;
      border-bottom: 1px dashed var(--medium-gray);
    }

    .tabla-horarios tr:last-child td {
      border-bottom: none;
    }

    .dia {
      font-weight: 600;
      width: 40%;
    }

    .hora {
      text-align: right;
      color: #333;
    }

    .cerrado {
      color: #b00;
      font-weight: 500;
    }

    /* ---------- MAPA ---------- */
    .mapa-section {
      padding: 2rem 0 5rem;
    }

    .mapa-container {
      width: 100%;
      height: 400px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      border: 1px solid var(--medium-gray);
    }

    .mapa-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ---------- REDES SOCIALES ---------- */
    .redes-contacto {
      padding: 3rem 0;
      text-align: center;
      background-color: var(--light-gray);
      border-top: 1px solid var(--dark-gray);
      border-bottom: 1px solid var(--dark-gray);
    }

    .redes-icons {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin: 2rem 0;
    }

    .redes-icons a {
      color: var(--black);
      font-size: 3rem;
      transition: color 0.2s, transform 0.2s;
    }

    .redes-icons a:hover {
      color: #4a4a4a;
      transform: scale(1.1);
    }

    /* ---------- BOTÓN RESERVAR ---------- */
    .cta-reserva-contacto {
      padding: 4rem 0;
      text-align: center;
    }

    .btn {
      display: inline-block;
      background-color: var(--black);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 2px solid var(--black);
      transition: 0.2s;
      font-size: 1.2rem;
      margin-top: 1rem;
    }

    .btn:hover {
      background-color: transparent;
      color: var(--black);
    }

    /* ---------- FOOTER ---------- */
    footer {
      background-color: #1a1a1a;
      color: #ccc;
      padding: 3rem 0 2rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px dotted #555;
    }

    .footer-links a:hover {
      color: white;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 2rem;
    }
.contact-mini {
  padding: 4rem 2rem;
  background-color: var(--light-gray);
  border-top: 1px solid var(--dark-gray);
  border-bottom: 1px solid var(--dark-gray);
}

.contact-mini-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info, .horarios-contacto {
  flex: 1 1 280px;
}

.contact-info h3, .horarios-contacto h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-gray);
}

.lista-horarios {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-horarios li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--medium-gray);
}

.lista-horarios li:last-child {
  border-bottom: none;
}

.dia {
  font-weight: 600;
  color: var(--black);
}

.hora {
  text-align: right;
  color: #333;
}

.cerrado {
  color: #b00;
  font-weight: 500;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999; /* Muy alto para que esté encima de todo */
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
#publi {
  background-color: #000; /* O el fondo que quieras */
  padding: 1rem 0;
  text-align: center;
}

.flex-logos img.logo-inicio {
  max-height: 100px; /* Ajusta según tu preferencia */
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-mini-grid {
    flex-direction: column;
  }

  .contact-info, .horarios-contacto {
    flex: 1 1 100%;
  }
}
    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      nav ul {
        gap: 1rem;
      }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
      }
    }
    @media (max-width: 480px) {
      .container {
        padding: 0 1.2rem;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }
      .redes-icons {
        gap: 2rem;
      }
    }
