*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top, #e0f2fe 0, #f9fafb 40%, #eef2ff 100%);
  -webkit-font-smoothing: antialiased;
}

/* LAYOUT BASE */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
  font-size: 0.98rem;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .3rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand-tagline {
  font-size: 0.78rem;
  color: #6b7280;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-lead strong {
  color: #111827;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out,
    border-color 0.15s ease-out, color 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: #e5f0ff;
  border-color: rgba(59, 130, 246, 0.7);
}

.btn-large {
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-dot 1.6s infinite;
}

/* HERO VISUAL + ANIMAÇÕES */
.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: 260px;
  height: 260px;
}

.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 14px 45px rgba(15, 23, 42, 0.45));
}

.orbit-dot {
  animation: orbit 14s linear infinite;
}

.dot-a {
  animation-delay: 0s;
}

.dot-b {
  animation-delay: 0.4s;
}

.dot-c {
  animation-delay: 0.8s;
}

.hero-card {
  position: absolute;
  width: 160px;
  padding: 0.6rem 0.75rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(10px);
  animation: float-card 6s ease-in-out infinite alternate;
}

.hero-card .card-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.2rem;
}

.hero-card .card-text {
  font-size: 0.8rem;
  color: #6b7280;
}

.card-1 {
  top: 4px;
  right: -12px;
}

.card-2 {
  bottom: 22px;
  left: -8px;
  animation-delay: 0.4s;
}

.card-3 {
  bottom: -6px;
  right: 18px;
  animation-delay: 0.8s;
}

/* CARDS SERVIÇOS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.info-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.2rem 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  border-color: rgba(59, 130, 246, 0.5);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e0f2fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.info-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* LOJA VIRTUAL */
.section-store {
  background: linear-gradient(135deg, #e0f2fe, #eff6ff);
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.store-text h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.1rem);
  margin-bottom: 0.7rem;
}

.store-text p {
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.store-text strong {
  color: #111827;
}

.store-list {
  margin: 0.6rem 0 1.1rem;
  padding-left: 1.1rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.store-list li {
  margin-bottom: 0.25rem;
}

.store-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

/* VISUAL LOJA + ANIMAÇÃO */
.store-visual {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-card {
  width: 230px;
  border-radius: 1.4rem;
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.1rem 1rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), transparent 55%);
  opacity: 0.9;
}

.store-tag {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.store-lines {
  position: relative;
  height: 70px;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

.store-footer {
  position: relative;
  margin-top: 0.85rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.pill-safe {
  background: rgba(22, 163, 74, 0.18);
  border-color: rgba(34, 197, 94, 0.8);
}

.pill-fast {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.9);
}

.store-badge {
  position: absolute;
  right: 10px;
  top: 12px;
  transform: translateY(-50%);
  background: #22c55e;
  color: #ecfdf3;
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.55);
  animation: float-badge 4s ease-in-out infinite alternate;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-grid h2 {
  font-size: clamp(1.6rem, 2.2vw, 1.9rem);
  margin-bottom: 0.6rem;
}

.about-grid p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.97rem;
}

.about-grid p + p {
  margin-top: 0.5rem;
}

.about-highlight {
  border-radius: 1.1rem;
  background: #f1f5f9;
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: #e0f2fe;
  color: #1d4ed8;
  margin-bottom: 0.55rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(248, 250, 252, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-note {
  font-size: 0.84rem;
}

/* ANIMAÇÕES */
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    transform: scale(1);
  }
}

@keyframes orbit {
  from {
    transform-origin: 130px 130px;
    transform: rotate(0deg);
  }
  to {
    transform-origin: 130px 130px;
    transform: rotate(360deg);
  }
}

@keyframes float-card {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes float-badge {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(-62%);
  }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .hero-grid,
  .store-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .store-grid {
    gap: 1.8rem;
  }

  .topbar-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-end;
    font-size: 0.86rem;
  }

  .brand-logo {
    height: 60px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .store-card {
    width: 100%;
    max-width: 260px;
  }

  .about-highlight {
    margin-top: 0.5rem;
  }

  .topbar-inner {
    justify-content: space-between;
  }

  .nav {
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .brand-logo {
    height: 54px;
  }
}

@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }
}