/* ============================================================
   ShopCod — styles.css
   Brand palette: primary navy #1F2A44 · accent green #1E7A5A
   Font: Inter (loaded via Google Fonts in index.html)
   ============================================================ */

/* ---------- CSS Reset & Root ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1F2A44;
  --accent:     #1E7A5A;
  --accent-alt: #25a874;   /* hover shade */
  --destructive:#ef4444;
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-muted:   #f8fafc;
  --border:     #e2e8f0;
  --text:       #1F2A44;
  --muted:      #64748b;
  --green-50:   #f0fdf4;
  --green-200:  #bbf7d0;
  --green-700:  #15803d;
  --yellow-400: #facc15;
  --radius:     0.75rem;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Utilities ---------- */
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.text-destructive { color: var(--destructive); }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }

.tracking-tight { letter-spacing: -0.025em; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Pulse animation ---------- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pulse { animation: pulse 1.5s ease-in-out infinite; }

/* ---------- Urgency Bar ---------- */
#urgency-bar {
  background: var(--accent);
  color: var(--white);
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  max-height: 60px;
  opacity: 1;
}
#urgency-bar.hidden {
  max-height: 0;
  opacity: 0;
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.urgency-text {
  flex: 1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.urgency-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.urgency-close:hover { opacity: 1; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo svg { color: var(--primary); }
nav { display: flex; gap: 1.5rem; }
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-sm  { padding: 0.5rem 1rem; font-size: 0.875rem; height: 2.25rem; }
.btn-md  { padding: 0.75rem 1.5rem; font-size: 0.9rem; height: 2.75rem; }
.btn-lg  { padding: 0.875rem 2.25rem; font-size: 1.1rem; height: 3.5rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: 1.125rem; height: 3.75rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #2a3a5c;
  transform: scale(1.02);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,122,90,0.3);
}
.btn-accent:hover {
  background: var(--accent-alt);
  box-shadow: 0 6px 20px rgba(30,122,90,0.4);
  transform: scale(1.02);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }
.btn-pill { border-radius: 9999px; }

/* ---------- Hero ---------- */
#hero {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: 5rem 0 7rem;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(47,174,126,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(47,174,126,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(30,122,90,0.25);
  border: 1px solid rgba(30,122,90,0.4);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: var(--white);
}
.dot-green {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.star-icon { width: 20px; height: 20px; fill: var(--yellow-400); color: var(--yellow-400); }
.stars-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.countdown-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(8px);
}
@media (min-width: 576px) {
  .countdown-box { flex-direction: row; }
}
.countdown-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Courier New', monospace;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-alt);
}
.countdown-digit {
  background: rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 0.2rem 0.6rem;
}
.countdown-sep { color: rgba(255,255,255,0.4); }

/* ---------- Trust Badges ---------- */
#trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
}
.trust-icon {
  padding: 0.625rem;
  background: rgba(30,122,90,0.08);
  border-radius: 0.75rem;
}
.trust-icon svg { width: 28px; height: 28px; color: var(--accent); }
.trust-title { font-size: 0.8rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.trust-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.3; display: none; }
@media (min-width: 768px) { .trust-sub { display: block; } }

/* ---------- Products ---------- */
#produtos { padding: 5rem 0; background: #f8fafc; }

.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; tracking-tight: -0.03em; margin-bottom: 0.75rem; }
.section-sub { font-size: 1.125rem; color: var(--muted); }

.products-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

/* Tabs */
.tabs-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.tabs-list {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.25rem;
  border-radius: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}
.tab-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}
.tab-btn:hover { background: var(--bg-muted); }
.tab-btn.active { background: var(--primary); color: var(--white); }

.products-search {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  display: grid;
  gap: 0.75rem;
}
.search-field {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 1rem;
}
.search-field i {
  position: absolute;
  left: 1rem;
  color: var(--muted);
  font-size: 1rem;
}
.search-field input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text);
}
.search-help {
  color: var(--muted);
  font-size: 0.95rem;
}
.no-results {
  color: var(--destructive);
  font-weight: 700;
}
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  min-height: 500px;
}
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f5f9;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.badge-danger {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--destructive);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  z-index: 2;
}
.badge-viewers {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
}
.dot-sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.card-body { flex: 1; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }

.card-title { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.card-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }

.badge-delivery {
  display: inline-flex;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  width: fit-content;
}

.card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

.stock-row { display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 600; }
.stock-red { color: var(--destructive); }
.stock-gray { color: var(--muted); }
.stock-bar {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.375rem;
}
.stock-fill {
  height: 100%;
  background: var(--destructive);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.card-footer { padding: 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }

/* ---------- Testimonials ---------- */
#depoimentos { padding: 5rem 0; background: #f8fafc; }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.badge-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fefce8;
  border: 1px solid #fde68a;
  color: #a16207;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.badge-social svg { width: 14px; height: 14px; fill: #eab308; color: #eab308; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.stars-sm { display: flex; gap: 2px; }
.stars-sm svg { width: 14px; height: 14px; fill: var(--yellow-400); color: var(--yellow-400); }

.testimonial-text { font-size: 0.875rem; color: var(--text); line-height: 1.65; flex: 1; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.author-info { font-size: 0.72rem; color: var(--muted); }

/* ---------- How It Works ---------- */
#como-funciona { padding: 5rem 0; background: var(--primary); color: var(--white); overflow: hidden; }
.how-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.how-header h2 { color: var(--white); margin-bottom: 1rem; }
.how-header p { color: rgba(255,255,255,0.7); font-size: 1.125rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step-icon-wrap {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.step-icon-wrap svg { width: 40px; height: 40px; color: var(--accent-alt); }
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.step-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; }
.step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

.how-cta { text-align: center; margin-top: 3.5rem; }

/* ---------- FAQ ---------- */
#faq { padding: 5rem 0; background: #f8fafc; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }

.accordion { background: var(--white); border: 1px solid var(--border); border-radius: 1rem; box-shadow: var(--shadow-sm); padding: 1rem 1.5rem; max-width: 800px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  padding: 1.25rem 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
  gap: 1rem;
  transition: background 0.2s, color 0.2s;
}
.accordion-trigger:hover { background: #f8fafc; color: var(--accent); }
.accordion-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-item.open .accordion-trigger { color: var(--accent); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.accordion-item.open .accordion-content {
  max-height: 300px;
}
.accordion-body {
  padding: 0 1rem 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-cta { text-align: center; margin-top: 2.5rem; }
.faq-cta p { color: var(--muted); margin-bottom: 1rem; }

/* ---------- Footer ---------- */
footer { background: var(--primary); color: var(--white); padding: 4rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-logo svg { width: 32px; height: 32px; color: var(--accent-alt); }
.footer-logo span { font-size: 1.5rem; font-weight: 700; }
.footer-tagline { color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 300px; font-size: 0.9rem; }

.footer-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-contact-item { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-alt); }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.fab-whatsapp:hover {
  background: #1fb958;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.fab-whatsapp svg { width: 26px; height: 26px; }
@media (min-width: 768px) {
  .fab-whatsapp { bottom: 1.5rem; }
}

/* ---------- Sticky Mobile CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  gap: 10px;

  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  z-index: 999;
}

/* BOTÕES */
.sticky-btn {
  background: rgba(255,255,255,0.95);
  color: #111;
  border: 1px solid #e5e7eb;

  padding: 10px 16px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  gap: 6px;

  font-weight: 600;
  font-size: 13px;

  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Fade-in on scroll (IntersectionObserver) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .header-nav-hide { display: none !important; }
  .hero-pill-hide { display: none; }
}



.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.logo svg,
.logo i {
  width: 24px;
  height: 24px;
}





#searchInput {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 20px;
}















html {
  scroll-behavior: smooth;
}
