/* =========================
   PYQ - common.css
   ========================= */
:root{
  --nav-color:#0088C7;
  --nav-hover-color:#73A533;

  --background-color:#ffffff;
  --default-color:#666666;
  --heading-color:#0088C7;
  --accent-color:#73A533;
  --surface-color:#ffffff;
  --contrast-color:#ffffff;

  --default-font:"Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --heading-font:"Raleway", sans-serif;
  --nav-font:"Poppins", sans-serif;
}

html, body{ height:100%; }
body{
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--background-color);
}

h1,h2,h3,h4,h5{
  font-family: var(--heading-font);
  color: var(--heading-color);
  letter-spacing: .2px;
}

a{ color: var(--nav-color); }
a:hover{ color: var(--nav-hover-color); }

.navbar-brand img{ height:54px; width:auto; }

.btn-brand{
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-radius: 14px;
}
.btn-brand:hover,
.btn-brand:focus{
  background: #5f8f2e; /* leve oscurecido */
  border-color: #5f8f2e;
  color: var(--contrast-color);
}

.btn-outline-brand{
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  border-radius: 14px;
}
.btn-outline-brand:hover{
  background: var(--accent-color);
  color: var(--contrast-color);
}

.section{
  padding: 44px 0 64px 0;
}
.section-sm{
  padding: 40px 0;
}
.section-title{
  margin-bottom: 10px;
}
.section-lead{
  max-width: 760px;
  margin: 0 auto;
  color: var(--default-color);
}

.card-soft{
  border: 0;
  border-radius: 22px;
  background: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.badge-accent{
  background: rgba(115,165,51,.12);
  color: var(--accent-color);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-weight: 600;
}

.hero{
  padding: 64px 0 64px;
  background:
    radial-gradient(1100px 600px at 20% 20%, rgba(0,136,199,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(115,165,51,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,136,199,.10), rgba(255,255,255,1));
}

.hero h1{ font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem); }
.hero p{ font-size: .8rem; }

/* HERO thumbs */
.hero-thumbs{
  gap: 14px;
}

.hero-thumbs .thumb{
  display: flex;
  flex-direction: column;        /* 👈 texto abajo */
  align-items: center;
  gap: .4rem;
  padding: .6rem .7rem;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  width: 120px;                  /* ancho controlado */
}

.hero-thumbs .thumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,.08);
}

.hero-thumbs .thumb img{
  width: 100px;                  /* 👈 100x100 */
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
}

.hero-thumbs .thumb span{
  font-weight: 600;
  color: var(--heading-color);
  font-size: .95rem;
  text-align: center;
  line-height: 1.1;
}

/* fin thumbs */

.form-control, .form-select{
  border-radius: 14px;
  padding: .45rem .95rem;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(0,136,199,.45);
  box-shadow: 0 0 0 .25rem rgba(0,136,199,.12);
}


/* PRODUCT thumbs */
/* Specs cards (Productos) */
.spec-card{
  border-radius: 22px;
}

.spec-icon{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(115,165,51,.10);
  color: var(--accent-color);
  font-size: 1.5rem;
}

.spec-list{
  display: grid;
  gap: 12px;
}

.spec-item{
  display: grid;
  gap: 4px;
}

.spec-label{
  font-weight: 700;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spec-label i{
  color: var(--accent-color);
}

.spec-value{
  color: var(--default-color);
}


/* fin productos */


/* filtros estilo PyQ */
.pyq-filters .filter-btn{
  border: 0;
  background: transparent;
  font-weight: 500;
  color: #333;
  padding: .45rem .35rem;
  border-bottom: 2px solid transparent;
}
.pyq-filters .filter-btn.active{
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* cards grilla */
.gallery-card{
  display: block;
  text-decoration: none;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}
.gallery-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-cap{
  padding: 14px 16px 16px;
}
.gallery-title{
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
}

/* modal imgs */
.pyq-modal-img{
  max-height: 75vh;
  object-fit: contain;
  background: #fff;
}
/* fin filtros */

 /* Sticky WhatsApp - flotante */
.sticky-cta{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
}

.sticky-cta a{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.sticky-cta a:hover{
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
}
 /* fin Sticky WhatsApp - flotante */

.small-muted{ color: #8a8a8a; font-size: .92rem; }
.hr-soft{ border-top: 1px solid rgba(0,0,0,.07); }

.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
