:root {
  --naranja:#E74E0F;
  --verde:#76B72A;
  --celeste:#009EE2;
  --magenta:#E5007E;
  --bg:#f9f9f9;
  --text:#222;
  --muted:#555;
  --border:#ddd;
  --radius:14px;
  --container:1200px;
  --shadow:0 8px 24px rgba(0,0,0,0.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
}
.container{width:92%; max-width:var(--container); margin:0 auto}

/* HEADER */
.site-header{
  background:#000;
  border-bottom:8px solid;
  border-image: linear-gradient(to right, var(--naranja), var(--verde), var(--celeste), var(--magenta)) 1;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  padding:28px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{height:120px}
.brand-name{
  color:#fff;
  font-weight:700;
  font-size:22px;
  line-height:1.2;
  text-align:center;
}
.nav-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.nav-links a{
  background:var(--naranja);
  color:#fff;
  padding:14px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav-links a:hover{background:#c63f0d}

/* TABLERO DE INFO */
.info-board-light{
  background:var(--bg);
  color:var(--text);
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:28px;
  border-bottom:1px solid var(--border);
  align-items:center;
  text-align:center;
}
.info-board-light .info-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:18px;
}

/* SECCIONES */
.section{padding:70px 20px}
.section-alt{background:#fff}
.grid{display:grid; gap:24px}

/* CATÁLOGO (cards) */
.grid-3-fixed{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.grid-2-fixed{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
  text-align:center;
}
.card i{font-size:40px; margin-bottom:12px}
.card h3{margin:12px 0 8px}
.card p{color:var(--muted); margin:0}

/* HORARIOS */
.hours-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hours-head{
  background:#000;
  color:#fff;
  font-weight:700;
  font-size:18px;
  padding:12px;
  text-align:center;
}
.hours-body{
  padding:20px;
  text-align:center;
  font-weight:700;
  font-size:16px;
}
.hours-card.open .hours-body{color:#000}
.hours-card.closed .hours-body{color:#999}

/* MÉTODOS DE PAGO */
.pagos-board{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:24px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:30px 20px;
}
.pagos-board .info-item{
  font-size:18px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}

/* PARTNERS */
.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:28px;
  margin-top:30px;
  justify-items:center;
}
.partner-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow);
  width:100%;
  max-width:320px;
}
.partner-logo{
  height:80px;
  margin-bottom:14px;
  object-fit:contain;
}
.partner-card h4{
  margin:10px 0 6px;
  font-size:18px;
  font-weight:700;
}
.partner-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

/* UBICACIÓN */
.location-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.location-card h3{
  margin:0 0 12px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
}
.location-card p{
  margin:0 0 14px;
  font-weight:400;
  color:var(--text);
}

/* BOTONES */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
}
.btn-ghost{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
}
.btn-ghost:hover{background:#f2f2f2}

/* CONTACTO */
.contact-section form{
  max-width:640px;
  margin:20px auto 0;
  display:grid;
  gap:14px;
}
input, textarea{
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  font-family:inherit;
}
button{
  background:var(--celeste);
  color:#fff;
  padding:14px;
  border:none;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}
button:hover{background:#007bb8}

.estado-envio{
  display:none;
  margin-top:20px;
  font-weight:700;
  font-size:18px;
  color:var(--text);
}

/* FOOTER */
.site-footer{
  background:#000;
  border-top:8px solid;
  border-image: linear-gradient(to right, var(--naranja), var(--verde), var(--celeste), var(--magenta)) 1;
  padding:28px;
  color:#fff;
}
.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-logo{height:60px}
.footer-name{font-size:18px; font-weight:600}
.social a{
  color:#fff;
  font-size:28px;
  margin:0 10px;
}
.copy{
  font-size:14px;
  color:#ccc;
  margin-top:12px;
  text-align:right;
  width:100%;
}

/* BOTONES FLOTANTES */
.float-btn{
  position:fixed;
  bottom:24px;
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:50%;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  color:#fff;
  cursor:pointer;
}
.float-whatsapp{right:24px; background:var(--verde)}
.float-top{
  right:100px;
  background:#000;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
}
.float-top i{font-size:22px}
.float-top.show{
  opacity:1;
  pointer-events:auto;
}

/* RESPONSIVE */
@media(max-width:800px){
  .grid-3-fixed{grid-template-columns:repeat(2,1fr)}
  .grid-2-fixed{grid-template-columns:1fr}
  .partners-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .nav-links{flex-direction:column; gap:10px}
  .brand-name{font-size:18px}
  .logo{height:80px}
  .footer-logo{height:40px}
  .footer-name{font-size:16px}
}

/* Carrusel de partners */
.partners-carousel .slick-slide {
    padding: 10px;
    text-align: center;
}
.partners-carousel img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}
.partners-carousel a:hover img {
    filter: grayscale(0%);
    opacity: 0.9;
}
.partners-carousel .slick-prev:before,
.partners-carousel .slick-next:before {
    color: var(--naranja);
}
/* ===== MENÚ HAMBURGUESA ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s;
  z-index: 1000;
}

.hamburger:hover {
  color: var(--naranja);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    flex-wrap: wrap;
    position: relative;
  }

  /* Forzar ocultamiento del menú en móvil cuando no tiene clase show */
  .site-header .nav-links {
    display: none !important;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    gap: 10px;
  }

  .site-header .nav-links.show {
    display: flex !important;
  }

  .site-header .nav-links a {
    margin: 0;
    text-align: center;
    justify-content: center;
    width: 100%;
  }