:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6c757d;
  --soft: #f6f7fb;
  --card: #ffffff;
  --border: #e9ecef;
}

/* Global */
body{
  background: var(--bg);
  color: var(--text);
}

a{ text-decoration: none; }

.hero{ background: var(--soft); }

.section-title{
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle{ color: var(--muted); }

/* Navbar */
.navbar-brand img{
  border-radius: 8px;
}

/* Cards */
.card{
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.card.shadow-soft{
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Chips */
.chip{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .9rem;
  background: #fff;
  color: #111;
}

/* Botón flotante WhatsApp */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Imagen productos (por si después usamos cards con imágenes) */
.product-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f2f2f2;
  border-radius: 0.75rem;
}

/* Mobile tweaks */
@media (max-width: 576px){
  .display-5{
    font-size: 2rem;
    line-height: 1.15;
  }
  .btn-lg{
    width: 100%;
  }
  .product-img{
    height: 160px;
  }
}

/* ===== Logo (navbar) ===== */
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

@media (max-width: 576px) {
  .brand-logo {
    height: 30px;
  }
}

/* WhatsApp icon button (fix navbar alignment) */
.wa-icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  border: 0;
  padding: 0;
  line-height: 0;         /* clave: evita el “salto” raro */
  vertical-align: middle;
  flex: 0 0 auto;

  box-shadow: none;       /* en navbar suele verse raro */
}

.wa-icon-btn svg{
  width: 22px;
  height: 22px;
  display: block;         /* clave: centra el svg */
  fill: #fff;
}

/* ===== Marca en texto ===== */
.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main{
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(90deg, #2f9e44, #198754);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub{
  font-size: 0.75rem;
  color: #6c757d;
  letter-spacing: 0.02em;
}

@media (max-width: 576px){
  .brand-main{
    font-size: 1.1rem;
  }
  .brand-sub{
    font-size: 0.65rem;
  }
}