:root{
  --bg:#f6f8fc;
  --surface:#ffffff;
  --text:#0b1220;
  --muted:#5b667a;
  --border:rgba(15,23,42,.10);

  --primary:#0b5fff;
  --primary2:#063a9e;
  --whatsapp:#16a34a;

  --shadow: 0 18px 50px rgba(2, 10, 26, .10);
  --shadow2: 0 10px 30px rgba(2, 10, 26, .08);

  --r16:16px;
  --r22:22px;
}

html { scroll-behavior: smooth; }

/* =========================
   Material Symbols
   ========================= */
.ms{
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  user-select:none;
  -webkit-font-smoothing: antialiased;
}
.ms.filled{
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
}
.icon-muted{ color: var(--muted); }
.icon-primary{ color: var(--primary2); }

/* =========================
   Base + Background
   ========================= */
*{ box-sizing:border-box; }
html, body { min-height:100%; }

html{ background: var(--bg); }

/* Continuous background */
html::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 12% 10%, rgba(11,95,255,.14), transparent 62%),
    radial-gradient(1200px 700px at 88% 14%, rgba(22,163,74,.10), transparent 62%),
    radial-gradient(1200px 700px at 18% 82%, rgba(11,95,255,.10), transparent 65%),
    radial-gradient(1200px 700px at 85% 86%, rgba(22,163,74,.08), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: transparent;
  position: relative;
  z-index: 1;

  min-height: 100vh;
  display:flex;
  flex-direction:column;
}
main{ flex: 1 0 auto; }
footer{ margin-top:auto; }

a{ color:inherit; text-decoration:none; }
a:hover { opacity: 1; }

.container{ width:min(1120px, 92vw); margin:0 auto; }

/* Better keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 3px solid rgba(11,95,255,.25);
  outline-offset: 2px;
  border-color: rgba(11,95,255,.35);
}

/* =========================
   Header / Navbar
   ========================= */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  height:60px;
  width:auto;
  object-fit:contain;
}

.brand-title{
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.brand-name{
  font-family: "Fugaz One", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-weight:400;
  font-size: clamp(18px, 1.2vw + 14px, 28px);
  line-height:1.05;
  text-align:center;
}

/* Hide tagline if present */
.brand-title span{ display:none !important; }

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  font-weight:850;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
}

.nav a:hover{ background:rgba(2,10,26,.05); }
.nav a.active{
  background:rgba(11,95,255,.10);
  color:var(--primary2);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Mobile header centering */
@media (max-width: 620px){
  .navbar{ flex-wrap:wrap; justify-content:center; }
  .brand{ width:100%; justify-content:center; }
  .nav{ width:100%; justify-content:center; }
  .header-cta{ width:100%; justify-content:center; }
}

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn:active{ transform: translateY(0); }

.btn-primary{
  color:#fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.btn-outline{
  background:rgba(255,255,255,.9);
  border-color: var(--border);
  color:var(--text);
}
.btn-whatsapp{
  color:#fff;
  background: linear-gradient(135deg, var(--whatsapp), #0c7a33);
}

/* =========================
   Sections / Card
   ========================= */
.section{ padding:48px 0; }
.section-sm{ padding:34px 0; }

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r22);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* Kicker */
.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.kdot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--whatsapp);
  box-shadow:0 0 0 6px rgba(22,163,74,.12);
}

.hero-split-section{ padding-top:22px; }

.hero-split{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap:18px;
  align-items:stretch;
}

@media (max-width: 980px){
  .hero-split{ grid-template-columns:1fr; }
  .hero-split-section{ padding-top:16px; }
}

/* Left slideshow card (border/radius match .card) */
.hero-slider{
  position:relative;
  min-height: 620px;
  overflow:hidden; /* forces image to respect rounded corners */
}
@media (max-width: 980px){
  .hero-slider{ min-height: 380px; }
}

.hero-slides{
  position:absolute;
  inset:0;
}

.hero-slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
  animation: heroFade 30s infinite;
}

.hero-slides img:nth-child(1){ animation-delay: 0s; }
.hero-slides img:nth-child(2){ animation-delay: 6s; }
.hero-slides img:nth-child(3){ animation-delay: 12s; }
.hero-slides img:nth-child(4){ animation-delay: 18s; }
.hero-slides img:nth-child(5){ animation-delay: 24s; }

@keyframes heroFade{
  0%   { opacity:0; }
  5%   { opacity:1; }
  28%  { opacity:1; }
  34%  { opacity:0; }
  100% { opacity:0; }
}

/* Subtle overlay so badges are readable */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
  pointer-events:none;
}

.hero-badges{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(15,23,42,.45);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:900;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 380px;
}
.hero-badge .ms{ color:#fff; font-size:20px; }

/* Right hero copy card */
.hero-copy{ padding:34px; }
@media (max-width: 980px){
  .hero-copy{ padding:26px; }
}

.hero-title{
  margin:14px 0 10px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height:1.04;
  letter-spacing:-.8px;
}

.hero-lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
  max-width: 70ch;
}

/* bullets: prevents ugly “broken” wrapping */
.hero-points{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:10px;
}
.hero-points li{
  display:grid;
  grid-template-columns: 22px 1fr;
  gap:10px;
  align-items:flex-start;
  font-weight:900;
  line-height:1.35;
}
.hero-points li .ms{ margin-top:2px; }

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.chip-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:12.5px;
  font-weight:900;
  color:var(--primary2);
  background: rgba(11,95,255,.10);
  border:1px solid rgba(11,95,255,.16);
}
.chip-link:hover{
  box-shadow: var(--shadow2);
  transform: translateY(-1px);
}

/* =========================
   Products grid/cards
   ========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
@media (max-width: 980px){ .grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 620px){ .grid{ grid-template-columns:1fr; } }

.p-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r22);
  overflow:hidden;
  box-shadow:var(--shadow2);
  transition: transform .12s ease, box-shadow .12s ease;
}
.p-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }

.p-media{
  position:relative;
  display:block;
  height:190px;
  background:
    radial-gradient(380px 220px at 18% 0%, rgba(11,95,255,.18), transparent 55%),
    radial-gradient(380px 220px at 85% 15%, rgba(22,163,74,.14), transparent 55%),
    #eef2ff;
}
.p-media img{ width:100%; height:100%; object-fit:cover; }

.p-body{ padding:18px 18px 20px; }
.p-title{ margin:0 0 6px; font-size:18px; }
.p-short{ margin:0 0 12px; color:var(--muted); font-size:14px; }

.p-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; }
.chip{
  font-size:12px;
  font-weight:900;
  color:var(--primary2);
  background: rgba(11,95,255,.10);
  border:1px solid rgba(11,95,255,.14);
  padding:7px 10px;
  border-radius:999px;
}
.chip-more{
  color:var(--muted);
  background: rgba(2,10,26,.05);
  border-color: rgba(2,10,26,.08);
}

.p-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* =========================
   Content blocks
   ========================= */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width: 980px){ .two-col{ grid-template-columns:1fr; } }

.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.bullets li{ margin:8px 0; }

/* =========================
   Forms
   ========================= */
.form{ padding:22px; }
label{ display:block; margin:12px 0 6px; font-weight:900; font-size:13px; }

input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.9);
  font-size:14px;
  outline:none;
  transition: box-shadow .12s ease, border-color .12s ease;
}
input:focus,select:focus,textarea:focus{
  border-color: rgba(11,95,255,.35);
  box-shadow: 0 0 0 6px rgba(11,95,255,.10);
}
textarea{ min-height:110px; resize:vertical; }
.hint{ margin-top:10px; color:var(--muted); font-size:12.5px; }

/* Contact rows */
.contact-block{ display:grid; gap:10px; margin-top:10px; }
.c-row{ display:flex; gap:10px; align-items:flex-start; }
.c-text{ white-space:pre-line; color:var(--muted); font-weight:700; }
.c-link{ color:var(--primary2); font-weight:900; }

/* =========================
   Footer
   ========================= */
.footer{
  margin-top:auto;
  padding:18px 0;
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-left strong{
  font-weight:950;
  color:var(--text);
  letter-spacing:-.2px;
}
.footer-sub{
  font-size:12.5px;
  color:var(--muted);
  font-weight:700;
}

.footer-right{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.footer-link{
  font-size:13px;
  font-weight:900;
  color:var(--primary2);
  padding:8px 10px;
  border-radius:12px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(15,23,42,.08);
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.footer-link .ms{ font-size:18px; }
.footer-link:hover{
  box-shadow: var(--shadow2);
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* =========================
   Toast
   ========================= */
.toast{
  position:fixed;
  right:16px;
  bottom:16px;
  max-width:320px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:var(--shadow2);
  padding:12px 14px;
  display:none;
  font-weight:900;
}
.toast.show{ display:block; }

/* =========================
   Flow blocks
   ========================= */
.flow{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

/* each block */
.flow-card{
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* icon bubble */
.flow-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,95,255,.10);
  border: 1px solid rgba(11,95,255,.14);
  margin-bottom: 10px;
}

.flow-card h3{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 950;
}

.flow-card p{
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

/* arrow between blocks */
.flow-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow .ms{
  font-size: 28px;
}

/* ✅ Mobile: stack vertically + turn arrows downward */
@media (max-width: 620px){
  .flow{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-card{
    padding: 16px;
  }

  .flow-arrow .ms{
    transform: rotate(90deg);
  }
}

/* =========================
   Floating WhatsApp button (matches site theme)
   ========================= */
.wa-float{
  text-decoration: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 620px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
}
