/* ---------- Tokens ---------- */
:root {
  --navy-1000: #333844;
  --navy-950: #0b1220;
  --navy-900: #101a2e;
  --navy-800: #16233d;
  --navy-700: #1f3153;
  --ink: #eef2f8;
  --muted: #a9b4c7;
  --manuted: #6e6af1;
  --accent: #1477fe;      /* teal-mint */
  --accent-dark: #1477FE;
  --lime: #2EA3FF;        /* secondary accent for CTAs */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--muted); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--lime);
  color: var(--navy-950);
}
.btn--primary:hover { background: #d7ec7c; }
.btn--ghost {
  border-color: rgba(255,255,255,0.25);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--small { padding: 10px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; text-align: center; }
.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1ebe57; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.logo__icon { width: 32px; height: 32px; color: var(--accent); }
.logo em { font-style: normal; color: var(--accent); display: block; font-size: 0.7em; font-weight: 500; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(125, 214, 192, 0.15), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(200, 227, 90, 0.08), transparent 40%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero__text h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--ink);
}
.hero__text h1 span { color: var(--accent); }
.hero__subtitle { font-size: 1.05rem; max-width: 480px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

.hero__visual { display: flex; justify-content: center; }
.hero__card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow);
}
.hero__card-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.hero__card-row:last-child { border-bottom: none; }
.hero__card-row span { color: var(--muted); }
.hero__card-row strong { color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: 50px 0; }
.section--alt { background: var(--navy-900); }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 40px;
}

/* Cards (services) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.cards_manutencao {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card_manutencao {
  background: var(--navy-1000);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* ---------- Sections Manutenção ---------- */
/* .section_manutencao { padding: 50px 0; }
.section--alt { background: var(--navy-900); }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 40px;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { color: var(--ink); font-size: 1.1rem; }

/* Cards (manutencao) */
/*.cards_manutencao {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card_manutencao {
  background: var(--navy-1000);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { color: var(--ink); font-size: 1.1rem; } */

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(125, 214, 192, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { color: var(--ink); font-size: 1.05rem; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  margin: 0;
  background: var(--navy-800);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 24px;
}
.testimonial p { color: var(--ink); font-style: italic; }
.testimonial cite { color: var(--accent); font-size: 0.85rem; font-style: normal; }

/* Banner */
.banner {
  padding: 60px 0;
  background: linear-gradient(120deg, var(--navy-700), var(--navy-900));
  text-align: center;
}
.banner h2 {
  color: var(--ink);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 700px;
  margin: 0 auto;
}

/* Contact */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__block { margin-bottom: 28px; }
.contact__block h3 { color: var(--ink); font-size: 1rem; margin-bottom: 12px; }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
}
.hours li span:first-child { color: var(--muted); }
.hours li span:last-child { color: var(--ink); }

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: 12px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  transition: transform 0.15s ease, background 0.2s ease;
}
.contact__whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}
.contact__whatsapp-icon {
  width: 28px;
  height: 28px;
}

.contact__form {
  background: var(--navy-800);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}
.contact__form input,
.contact__form textarea {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form__status { font-size: 0.85rem; min-height: 1.2em; color: var(--accent); }

/* Store showcase */
.store-showcase__intro {
  max-width: 640px;
  font-size: 1.05rem;
  margin: -24px 0 48px;
}

.store-showcase {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.store-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.store-item--reverse .store-item__media { order: 2; }
.store-item--reverse .store-item__content { order: 1; }

.store-item__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.store-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.store-item:hover .store-item__media img {
  transform: scale(1.03);
}

.store-item__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20, 119, 254, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.store-item__content h3 {
  color: var(--ink);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.store-item__content p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* Footer */
.footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--navy-900);
}

.footer__showcase {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  max-width: 220px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  border-radius: 8px;
}

.footer__tagline {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__social { display: flex; gap: 20px; }
.footer__social a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav.nav--open { display: flex; }
  .nav a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .cards, .steps, .testimonials { grid-template-columns: 1fr; }
  .store-item,
  .store-item--reverse {
    grid-template-columns: 1fr;
  }
  .store-item--reverse .store-item__media,
  .store-item--reverse .store-item__content { order: unset; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 10px; text-align: center; }
}