* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #2d2d2d;
  overflow-x: hidden;
}

/* ── STORE BAR ── */
.store-bar {
  background: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fde8c8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(30,58,138,0.3);
}

.store-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #2d2d2d;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.store-btn img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.store-btn.instagram    { border-left: 4px solid #e1306c; color: #e1306c; font-weight: 700; }
.store-btn.mercadolivre { border-left: 4px solid #ffe600; }
.store-btn.shopee       { border-left: 4px solid #ee4d2d; }
.store-btn.tiktok       { border-left: 4px solid #555; }

.lang-switcher {
  margin-left: auto;
  display: flex;
  gap: 4px;
}

.lang-switcher button {
  background: transparent;
  border: 2px solid rgba(249,115,22,0.5);
  color: #fdba74;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.lang-switcher button.active,
.lang-switcher button:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

/* ── HERO ── */
.hero {
  min-height: 85vh;
  background: linear-gradient(to top, #dbeafe 0%, #eff6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(30,58,138,0.2);
  border: 4px solid #f97316;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(30,58,138,0.2); }
  50%       { box-shadow: 0 8px 48px rgba(249,115,22,0.35); }
}

.logo-name {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: #3b82f6;
  font-weight: 400;
  max-width: 480px;
  line-height: 1.7;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f97316;
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(249,115,22,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23fff' d='M4.9 43.3l2.7-9.9C5.9 30.8 5 27.5 5 24 5 13.5 13.5 5 24 5s19 8.5 19 19-8.5 19-19 19c-3.3 0-6.5-.8-9.3-2.4L4.9 43.3z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(249,115,22,0.5);
}

/* Background shapes */
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.shape.s1 {
  width: 420px; height: 420px;
  background: rgba(30,58,138,0.08);
  top: -110px; right: -110px;
}
.shape.s2 {
  width: 260px; height: 260px;
  background: rgba(249,115,22,0.1);
  bottom: -70px; left: -70px;
}
.shape.s3 {
  width: 160px; height: 160px;
  background: rgba(30,58,138,0.07);
  bottom: 80px; right: 15%;
}

/* ── FEATURES ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 64px 48px;
  background: #eff6ff;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30,58,138,0.08);
  border-top: 3px solid #f97316;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30,58,138,0.14);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f2460 100%);
  padding: 80px 48px;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fdba74;
}

.cta-section p {
  color: rgba(253,186,116,0.65);
  margin-bottom: 40px;
  font-size: 1rem;
}

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

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 140px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.25);
}

.cta-btn img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.cta-btn.ml { border-bottom: 4px solid #ffe600; }
.cta-btn.sp { border-bottom: 4px solid #ee4d2d; }
.cta-btn.tt { border-bottom: 4px solid #2d2d2d; }

/* ── FOOTER ── */
.footer {
  background: #0f1f4a;
  color: rgba(253,186,116,0.4);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}

/* ── WHATSAPP WIDGET ── */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-bounce 3s infinite;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.whatsapp-widget:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .store-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
  .lang-switcher {
    margin-left: 0;
  }
  .features {
    padding: 40px 20px;
  }
  .cta-section {
    padding: 60px 20px;
  }
  .whatsapp-widget .wa-label {
    display: none;
  }
  .whatsapp-widget {
    padding: 14px;
    border-radius: 50%;
  }
}
