:root{
  --bg:#0b0f14;
  --white:#ffffff;
  --muted: rgba(255,255,255,.82);
  --muted2: rgba(255,255,255,.65);
  --navLink: rgba(130, 90, 255, .95); /* morado similar */
  --btnDark:#141a24;
  --btnDarkBorder: rgba(255,255,255,.16);
  --outline: rgba(255,255,255,.42);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: #06090d;
}

/* NAVBAR */
.topbar{
  position: fixed;
  top: 0; left:0; right:0;
  z-index: 50;
  padding: 18px 24px;
}


.topbar__inner{
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.logo img{
  height: 80px;
  width: auto;
  display: block;
  transition: height .25s ease;
}

.navlinks{
  display:none;
  gap: 22px;
  align-items:center;
}

.navlinks a{
  text-decoration:none;
  color: var(--navLink);
  font-weight: 600;
  font-size: 14px;
}

.navlinks a.active{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.cart{
  width: 44px; height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  text-decoration:none;
}

/* mostrar menú en pantallas grandes */
@media (min-width: 900px){
  .navlinks{ display:flex; }
}

/* HERO */
.hero{
  min-height: 100vh;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding: 120px 18px 72px;
}

.hero__bg{
  position:absolute; inset:0;
  background:
    url("assets/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.04);
  filter: blur(2px);
}

.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 25% 10%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(900px 520px at 75% 10%, rgba(255,255,255,.16), transparent 62%),
    linear-gradient(180deg, rgba(7,10,14,.12), rgba(7,10,14,.42));
}

.hero__content{
  position:relative;
  max-width: 980px;
  text-align:center;
  color: var(--white);
  padding: 18px;
}

/* pill */
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 22px;
}

.pill__icon{ filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }

.hero__title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 18px;
  text-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.hero__subtitle{
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
}

/* botones */
.hero__actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
}

.btn--solid{
  background: rgba(20,26,36,.92);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.btn--outline{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.38);
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}

/* flecha abajo */
.scrollHint{
  position:absolute;
  bottom: -40px;
  left: 51.4%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: rgba(255,255,255,.90);
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

/* WhatsApp flotante */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 52px; height: 52px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background: #25D366;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  z-index: 60;
}

/* Chat flotante (placeholder) */
.chatFloat{
  position: fixed;
  right: -24px;
  bottom: 96px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(17,22,30,.88);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  cursor: pointer;
  z-index: 60;
}

/* placeholders secciones */
.section{
  padding: 70px 18px;
  background: #0b0f14;
  color: rgba(255,255,255,.85);
}
.section--alt{ background: #0e1420; }
/* NAV: mejoras pro */
.navlinks a{
  position: relative;
  padding: 10px 6px;
  transition: transform .15s ease, opacity .15s ease, color .15s ease;
}

.navlinks a:hover{
  opacity: 1;
  color: rgba(150, 120, 255, 1);
  transform: translateY(-1px);
}

/* subrayado estilo moderno (sin depender de underline clásico) */
.navlinks a::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: rgba(150, 120, 255, .9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .9;
}

.navlinks a:hover::after{
  transform: scaleX(1);
}

/* Estado activo */
.navlinks a.active{
  color: rgba(150, 120, 255, 1);
  text-decoration: none;
}
.navlinks a.active::after{
  transform: scaleX(1);
}

/* Carrito más “glass” y con hover */
.cart{
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.cart:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.28);
}
/* Navbar compacta al hacer scroll */


/* --- NAVBAR COMPACTA AL SCROLL --- */
.topbar.scrolled .logo img{
  height: 52px;
}
/* ====== CATALOGO TIPO "PILLS + GRID" ====== */
.catalog{
  padding: 64px 18px;
  background: #f4fbff; /* más limpio / claro */
}

.catalog__head{
  max-width: 1100px;
  margin: 0 auto 22px;
  text-align: center;
}

.catalog__title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 10px;
  color: #111827;
}

.catalog__subtitle{
  margin: 0 auto;
  max-width: 760px;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.6;
}

.catalog__filters{
  max-width: 1100px;
  margin: 26px auto 28px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill{
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  color: #111827;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.pill:hover{ transform: translateY(-1px); }

.pill.is-active{
  background: #14b87a; /* verde estilo pill activa */
  border-color: rgba(20,184,122,.35);
  color: #fff;
}

.catalog__grid{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 820px){
  .catalog__grid{ grid-template-columns: repeat(3, 1fr); }
}

.pCard{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.pCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.10);
}

.pCard__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  font-size: 12px;
  color:#0f766e;
  margin-bottom: 10px;
}

.pCard__img{
  border-radius: 16px;
  overflow:hidden;
  background: #f3f4f6;
  aspect-ratio: 16 / 10;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.pCard__title{
  margin: 14px 0 6px;
  font-size: 18px;
  color:#111827;
}

.pCard__desc{
  margin: 0 0 12px;
  color:#4b5563;
  line-height: 1.5;
  font-weight: 600;
}

.pCard__bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  color:#374151;
}

.pCard__actions{
  display:flex;
  gap: 10px;
}

.pBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(17,24,39,.10);
}

.pBtn--dark{
  background: #111827;
  color: #fff;
}

.pBtn--ghost{
  background: #fff;
  color: #111827;
}
/* ====== PAGINA PRODUCTOS (LIMPIA) ====== */
.lightPage{ background:#f4fbff; }

.productPage{
  padding: 130px 18px 70px;
  max-width: 1100px;
  margin: 0 auto;
}

.productPage__head{
  text-align: center;
  margin-bottom: 26px;
}

.backLink{
  display:inline-block;
  color:#111827;
  opacity:.75;
  font-weight:800;
  text-decoration:none;
  margin-bottom: 12px;
}
.backLink:hover{ opacity:1; }

.mutedText{ color:#4b5563; font-weight:600; max-width:760px; margin:0 auto; }

.productGrid{
  display:grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px){
  .productGrid{ grid-template-columns: repeat(3, 1fr); }
}

.prodCard{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  overflow:hidden;
}

.prodCard__img{
  border-radius: 16px;
  overflow:hidden;
  background:#f3f4f6;
  aspect-ratio: 16 / 10;
}
.prodCard__img img{ width:100%; height:100%; object-fit:cover; display:block; }

.prodCard__title{ margin:14px 0 6px; color:#111827; font-size:18px; }
.prodCard__sub{ margin:0 0 12px; color:#6b7280; font-weight:700; }

.prodCard__feat{
  margin:0 0 14px;
  padding-left: 18px;
  color:#374151;
  font-weight:600;
}

.prodCard__actions{ display:flex; gap:10px; }

.emptyBox{
  grid-column: 1 / -1;
  background:#fff;
  border: 1px dashed rgba(17,24,39,.18);
  border-radius: 18px;
  padding: 18px;
  text-align:center;
  color:#4b5563;
  font-weight:700;
}
/* ====== SERVICIOS ====== */
.svc{
  padding: 70px 18px;
  background: #0b0f14;
  color: rgba(255,255,255,.9);
}

.svc__head{
  max-width: 1100px;
  margin: 0 auto 26px;
  text-align: center;
}

.svc__title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 50px);
  margin: 0 0 10px;
}

.svc__subtitle{
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-weight: 600;
  line-height: 1.6;
}

.svc__grid{
  max-width: 1100px;
  margin: 28px auto 26px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 820px){
  .svc__grid{ grid-template-columns: repeat(3, 1fr); }
}

.svcCard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.svcCard h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.svcCard p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-weight: 600;
}

.svcCard ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

.svc__cta{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
/* ====== CONTACTO ====== */
.contact{
  padding: 70px 18px;
  background: #f4fbff;
}

.contact__wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 920px){
  .contact__wrap{ grid-template-columns: 1.05fr .95fr; align-items: start; }
}

.contact__title{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 50px);
  margin: 0 0 10px;
  color: #111827;
}

.contact__subtitle{
  margin: 0 0 18px;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.6;
  max-width: 680px;
}

.contact__cards{
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.cInfo{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.cInfo__k{
  font-weight: 900;
  color:#111827;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 6px;
}

.cInfo__v{
  color:#111827;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.4;
}

.contact__wa{
  display: inline-flex;
  margin-top: 6px;
}

.formCard{
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.formCard__title{
  margin: 0 0 6px;
  color:#111827;
  font-size: 18px;
}

.formCard__desc{
  margin: 0 0 14px;
  color:#6b7280;
  font-weight: 700;
}

.form{
  display:grid;
  gap: 12px;
}

.field span{
  display:block;
  font-weight: 900;
  font-size: 12px;
  color:#111827;
  opacity: .85;
  margin-bottom: 6px;
}

.field input, .field select, .field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  padding: 12px 12px;
  font-weight: 700;
  outline: none;
}

.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(20,184,122,.65);
  box-shadow: 0 0 0 4px rgba(20,184,122,.18);
}

.form__submit{
  width: 100%;
  padding: 12px 14px;
}

.formNote{
  margin: 8px 0 0;
  color:#6b7280;
  font-weight: 650;
  font-size: 12px;
  line-height: 1.4;
}
.about{font-family:system-ui;background:#fff;}

.aboutHero{
  background:#e9f6f9;
  text-align:center;
  padding:90px 20px 70px;
}

.aboutHero h1{
  font-size:48px;
  font-weight:900;
  margin-bottom:12px;
}

.aboutHero p{
  color:#4b5563;
  font-weight:600;
}

.aboutStory{
  max-width:1100px;
  margin:80px auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:0 20px;
  align-items:center;
}

.aboutText h2{
  font-size:42px;
  font-weight:900;
  margin:10px 0;
}

.aboutText p{
  color:#4b5563;
  line-height:1.7;
  margin-bottom:12px;
  font-weight:600;
}

.aboutImage img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.pillGreen{
  background:#e6fbf3;
  color:#0fb;
  padding:6px 14px;
  border-radius:30px;
  font-weight:700;
}

.aboutValues{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
  gap:20px;
}

.valueCard{
  text-align:center;
  padding:20px;
}

.valueCard h3{
  font-weight:900;
}

.teamSection{text-align:center;padding:80px 20px;}
.teamGrid{display:flex;justify-content:center;gap:20px;margin-top:40px;}

.teamCard{
  background:#fff;
  border-radius:20px;
  padding:20px;
  width:220px;
  box-shadow:0 10px 40px rgba(0,0,0,.1);
}

.avatar{
  width:100%;
  height:160px;
  background:#f3f4f6;
  border-radius:12px;
  margin-bottom:12px;
}

.aboutStats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1000px;
  margin:80px auto;
  text-align:center;
}

.aboutStats strong{
  font-size:40px;
  color:#10b981;
}

.aboutCTA{
  background:linear-gradient(90deg,#10b981,#3b82f6);
  color:#fff;
  text-align:center;
  padding:70px 20px;
}

.aboutCTA h2{font-size:36px;font-weight:900;}
.ctaBtn{
  display:inline-block;
  background:#fff;
  color:#10b981;
  padding:14px 30px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  margin-top:20px;
}
/* ====== QUIÉNES SOMOS ====== */
.about{font-family:system-ui;background:#fff;}

.aboutHero{
  background:#e9f6f9;
  text-align:center;
  padding:120px 20px 70px;
}

.aboutHero h1{
  font-size:48px;
  font-weight:900;
  margin-bottom:12px;
  color:#111827;
}

.aboutHero p{
  color:#4b5563;
  font-weight:650;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.aboutStory{
  max-width:1100px;
  margin:80px auto;
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  padding:0 20px;
  align-items:center;
}

@media (min-width: 920px){
  .aboutStory{ grid-template-columns:1fr 1fr; }
}

.aboutText h2{
  font-size:42px;
  font-weight:900;
  margin:10px 0;
  color:#111827;
}

.aboutText p{
  color:#4b5563;
  line-height:1.7;
  margin-bottom:12px;
  font-weight:650;
}

.aboutImage img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
  display:block;
}

.pillGreen{
  display:inline-block;
  background:#e6fbf3;
  color:#0f766e;
  padding:6px 14px;
  border-radius:30px;
  font-weight:800;
}

.aboutValues{
  display:grid;
  grid-template-columns:1fr;
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
  gap:20px;
}

@media (min-width: 920px){
  .aboutValues{ grid-template-columns:repeat(4,1fr); }
}

.valueCard{
  text-align:center;
  padding:20px;
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.valueCard h3{ font-weight:900; margin: 0 0 8px; color:#111827; }
.valueCard p{ margin:0; color:#4b5563; font-weight:650; line-height:1.6; }

.teamSection{
  text-align:center;
  padding:80px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.teamSection h2{ color:#111827; font-weight:900; font-size:42px; margin: 0 0 8px; }
.teamSection p{ color:#4b5563; font-weight:650; margin: 0 0 28px; }

.teamGrid{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap: wrap;
}

.teamCard{
  background:#fff;
  border-radius:20px;
  padding:18px;
  width:240px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow:0 10px 40px rgba(0,0,0,.08);
  text-align:left;
}

.avatar{
  width:100%;
  height:180px;
  background:#f3f4f6;
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.teamCard h4{ margin: 0 0 6px; font-weight:900; color:#111827; }
.teamCard span{ display:block; font-weight:800; color:#10b981; margin-bottom:6px; }
.teamCard p{ margin:0; color:#4b5563; font-weight:650; line-height:1.5; }

.aboutStats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap: 16px;
  max-width:1000px;
  margin:60px auto 80px;
  text-align:center;
  padding: 0 20px;
}

@media (min-width: 920px){
  .aboutStats{ grid-template-columns:repeat(4,1fr); }
}

.aboutStats strong{
  font-size:40px;
  color:#10b981;
  font-weight:900;
}

.aboutStats span{
  display:block;
  color:#4b5563;
  font-weight:750;
  margin-top: 6px;
}

.aboutCTA{
  background:linear-gradient(90deg,#10b981,#3b82f6);
  color:#fff;
  text-align:center;
  padding:70px 20px;
}

.aboutCTA h2{font-size:36px;font-weight:900;margin:0 0 8px;}
.aboutCTA p{margin:0 0 18px; font-weight:650; opacity:.95;}

.ctaBtn{
  display:inline-block;
  background:#fff;
  color:#0f766e;
  padding:14px 30px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
}
/* ====== PLACEHOLDERS QUIÉNES SOMOS ====== */

.placeholderImage{
  background: linear-gradient(135deg,#e5e7eb,#f3f4f6);
  min-height: 320px;
  border-radius: 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  color:#6b7280;
  font-size:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
}

.placeholderAvatar{
  background: linear-gradient(135deg,#e5e7eb,#f3f4f6);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  color:#6b7280;
  font-size:14px;
}
/* ====== SCROLL REVEAL ====== */

.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.65,.3,1);
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* ===== HERO INTERNO (PÁGINAS) ===== */

.pageHero{
  background:#e9f6f9;
  padding:160px 20px 80px; /* 👈 CLAVE */
  text-align:center;
}

.pageHero h1{
  font-size:48px;
  font-weight:900;
  margin:0 0 12px;
  color:#111827;
}

.pageHero p{
  max-width:900px;
  margin:0 auto;
  color:#4b5563;
  font-weight:650;
  line-height:1.6;
}
/* ===== HERO INTERNO (PÁGINAS) ===== */
.pageHero{
  background:#e9f6f9;
  padding:120px 20px 80px;
  text-align:center;
}

.pageHero h1{
  font-size:48px;
  font-weight:900;
  margin:0 0 12px;
  color:#111827;
}

.pageHero p{
  max-width:900px;
  margin:0 auto;
  color:#4b5563;
  font-weight:650;
  line-height:1.6;
}
/* ===== TOPBAR UNIFICADA (GRIS OSCURO) ===== */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 88px; /* MISMO TAMAÑO EN TODAS */
  background: rgba(32, 34, 37, 0.95); /* GRIS OSCURO */
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 9999;
}

/* Contenedor interno */
.topbar__inner{
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo SIEMPRE igual */
.brand__logo{
  height: 56px;
  width: auto;
  display: block;
}

/* Menú */
.navlinks{
  display: flex;
  gap: 28px;
  align-items: center;
}

.navlinks a{
  color: #8b5cf6; /* morado Novus */
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}

/* Activo */
.navlinks a.active{
  text-decoration: none;          /* 🔥 quita el underline nativo */
  position: relative;
}

.navlinks a.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #8b5cf6;            /* morado Novus */
  border-radius: 2px;
}

/* Carrito */
.cart{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
body{
  padding-top: 88px; /* mismo alto que la topbar */
}
/* En el HOME, el hero debe partir desde arriba (sin empuje del header fijo) */
body.home{ padding-top: 0 !important; }
/* ===== LOGO NOVUS UNIFICADO ===== */
.nav-logo{
  height: 56px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

/* Evita escalados raros */
header img{
  transform: none !important;
}
/* ===== TOPBAR COLOR DEFINITIVO (TODAS LAS PÁGINAS) ===== */
.topbar{
  background: rgba(32, 34, 37, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.internal .topbar,
body.lightPage .topbar,
.about .topbar{
  background: rgba(32, 34, 37, 0.95) !important;
}
/* HERO INTERNO MÁS COMPACTO */
.pageHero{
  background:#e9f6f9;
  padding: 30px 20px 42px;  /* ⬅️ menos alto, más elegante */
  text-align:center;
}
.pageHero h1{
  margin: 0 0 10px;
  line-height: 1.05;
}
.pageHero p{
  margin: 0 auto;
  max-width: 920px;
}
/* BOTÓN WHATSAPP FIJO */
.whatsapp-float{
  position: fixed;        /* 🔥 CLAVE */
  right: 24px;
  bottom: 96px;            /* distancia desde la derecha */
  width: 58px;
  height: 58px;
  background: #25D366;    /* verde oficial WhatsApp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  z-index: 9999;          /* siempre encima */
}

/* Ícono */
.whatsapp-float img{
  width: 30px;
  height: 30px;
}

/* ===== HEADER: transparente SOLO en el primer hero del HOME, oscuro al hacer scroll ===== */
/* Nota: requiere que el HOME tenga <body class="home"> y que tu JS agregue/quite .scrolled en .topbar */

/* Estado base del HOME (arriba del todo): sin barra visible */
body.home .topbar{
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Cuando scrolleas: aparece la barra gris oscura (igual a todas) */
body.home .topbar.scrolled{
  background: rgba(32, 34, 37, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* En páginas internas: SIEMPRE oscuro */
body.internal .topbar,
body.lightPage .topbar,
.about .topbar{
  background: rgba(32, 34, 37, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
/* ================================
   HEADER DEFINITIVO – NOVUS
   ================================ */

/* BASE */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  z-index: 9999;
  background: transparent;
  transition: background .25s ease, height .25s ease;
}

.topbar__inner{
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img{
  height: 88px;          /* GRANDE EN INICIO */
  width: auto;
  transition: height .25s ease;
}

/* HOME – SCROLL */
body.home .topbar.scrolled{
  background: rgba(32,34,37,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.home .topbar.scrolled .logo img{
  height: 56px;          /* CHICO AL SCROLL */
}

/* PÁGINAS INTERNAS */
body.internal .topbar{
  background: rgba(32,34,37,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.internal .logo img{
  height: 56px;
}

/* BODY OFFSET */
body{
  padding-top: 88px;
}

body.home{
  padding-top: 0;
}
/* ===== FLOATERS (FORZADOS) ===== */
.whatsapp-float{
  position: fixed !important;
  right: 24px !important;
  bottom: 96px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #25D366 !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.35) !important;
  z-index: 99999 !important;
  text-decoration: none !important;
}

.whatsapp-float img,
.whatsapp-float svg{
  width: 26px !important;
  height: 26px !important;
  display: block !important;
}

.chatFloat{
  position: fixed !important;
  right: 16px !important;
  bottom: 24px !important;
  z-index: 99999 !important;
}
/* ================================
   FLOATERS (WHATSAPP + CHARLEMOS) – DEFINITIVO
   ================================ */
.whatsapp-float{
  position: fixed !important;
  right: 24px !important;
  bottom: 96px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #25D366 !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.35) !important;
  z-index: 99999 !important;
  text-decoration: none !important;
}

.whatsapp-float img,
.whatsapp-float svg{
  width: 26px !important;
  height: 26px !important;
  display: block !important;
}

.chatFloat{
  position: fixed !important;
  right: 16px !important;
  bottom: 24px !important;
  padding: 12px 18px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: rgba(17,22,30,.88) !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

@media (max-width: 520px){
  .whatsapp-float{ right: 16px !important; bottom: 86px !important; }
  .chatFloat{ right: 12px !important; bottom: 16px !important; }
}
/* Offset para anclas con header fijo */
section[id]{
  scroll-margin-top: 100px;
}
