/* ==========================================================================
   ALO MOBILE - STORE HOMEPAGE STYLESHEET
   Identity: Light Premium (Direção A) — off-white, laranja da marca + azul royal
   ========================================================================== */

:root {
  --bg-dark: #fafaf8;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --royal-blue: #1e3a8a;
  --royal-light: #2563eb;
  --cyan-accent: #2563eb;
  --cyan-glow: rgba(37, 99, 235, 0.18);
  
  --orange-accent: #ea580c;
  --orange-hover: #c2410c;
  --orange-glow: rgba(234, 88, 12, 0.25);
  
  --text-white: #0f172a;
  --text-muted: #475569;
  --border-color: rgba(15, 23, 42, 0.09);
  --border-cyan: rgba(37, 99, 235, 0.35);
  
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ================= Top Banner Lojista ================= */
.top-banner {
  background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
  border-bottom: 1px solid rgba(234, 88, 12, 0.3);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
}
.top-banner a {
  color: #fb923c;
  font-weight: 700;
  margin-left: 8px;
  text-decoration: underline;
}
.top-banner a:hover {
  color: #fdba74;
}

/* ================= Navbar (Fixed Alignment) ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--cyan-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  font-family: var(--font-heading);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-orange {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--orange-glow);
}
.btn-orange:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.32);
}

.btn-cyan {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--cyan-glow);
}
.btn-cyan:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.btn-outline-cyan {
  background: transparent;
  border: 1px solid var(--border-cyan);
  color: var(--royal-light);
}
.btn-outline-cyan:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: var(--royal-light);
  color: var(--royal-blue);
  transform: translateY(-2px);
}

/* ================= Hero Section ================= */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid var(--border-cyan);
  color: var(--royal-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-white);
}

.gradient-text-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= Cards Grid ================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.icon-orange { background: rgba(234, 88, 12, 0.1); color: var(--orange-accent); }
.icon-cyan { background: rgba(37, 99, 235, 0.1); color: var(--cyan-accent); }
.icon-blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-white);
}

.card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ================= Section Headers ================= */
.section {
  padding: 90px 0;
  border-top: 1px solid var(--border-color);
}

.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= Local SEO & Contact Bar ================= */
.seo-bar {
  background: #ffffff;
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.07);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px auto 0;
}
.seo-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.seo-item i {
  color: var(--orange-accent);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ================= Footer — escuro para contraste premium ================= */
.footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #94a3b8;
}
.footer-links a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: var(--orange-accent);
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .navbar-content {
    justify-content: space-between;
  }
}
