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

:root {
  --alig-bg: #050608;
  --alig-bg-alt: #0d1015;
  --alig-surface: #11141c;
  --alig-surface-light: #181c25;
  --alig-accent: #f53b57;
  --alig-accent-soft: rgba(245, 59, 87, 0.12);
  --alig-text: #f5f5f5;
  --alig-muted: #9ca3af;
  --alig-border: #1f242f;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.6);
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--alig-text);
  background: radial-gradient(circle at top, #151922, #050608 55%);
}

/* Generic elements */
img {
  max-width: 100%;
  display: block;
}

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

main {
  min-height: 60vh;
}

/* Top bar */
.top-bar {
  background: #020308;
  color: var(--alig-muted);
  font-size: 13px;
  padding: 6px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--alig-border);
}

.top-bar strong {
  color: var(--alig-text);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,6,8,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--alig-border);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.header-logo-text {
  display: flex;
  flex-direction: column;
}

.header-logo-text span {
  font-size: 11px;
  color: var(--alig-muted);
}

.header-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.header-nav a {
  color: var(--alig-muted);
  position: relative;
  padding-bottom: 3px;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--alig-text);
}

.header-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--alig-accent);
}

/* Layout generic */
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

/* Hero (home) */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 26px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(17,24,39,0.9);
  border: 1px solid var(--alig-border);
  font-size: 12px;
  color: var(--alig-muted);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--alig-accent);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--alig-muted);
  max-width: 520px;
}

.hero-list {
  font-size: 14px;
  color: var(--alig-muted);
  list-style: none;
}

.hero-list li::before {
  content: "• ";
  color: var(--alig-accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-metadata {
  font-size: 12px;
  color: var(--alig-muted);
}

.hero-right-card {
  background: radial-gradient(circle at top left, #1e2533, #090b11);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--alig-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-right-title {
  font-size: 15px;
  margin-bottom: 4px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  font-size: 12px;
}

.metric-label {
  color: var(--alig-muted);
}

.metric-value {
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--alig-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(245,59,87,0.45);
}

.btn-primary:hover {
  background: #ff4b6b;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--alig-text);
  border-color: var(--alig-border);
}

.btn-ghost:hover {
  background: rgba(148,163,184,0.08);
}

.btn-tag {
  background: var(--alig-accent-soft);
  color: var(--alig-accent);
  border-color: transparent;
  font-size: 12px;
  padding: 6px 12px;
}

/* WhatsApp / email / phone variants */
.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  border-color: transparent;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

.btn-email {
  background: var(--alig-surface-light);
  color: var(--alig-text);
  border-color: var(--alig-border);
}

.btn-email:hover {
  background: #111827;
}

.btn-phone {
  background: #020617;
  color: #f9fafb;
  border-color: var(--alig-border);
}

.btn-phone:hover {
  background: #020617;
  opacity: .9;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Sections */
.section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.section-kicker {
  font-size: 12px;
  color: var(--alig-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 22px;
}

.section-desc {
  font-size: 14px;
  color: var(--alig-muted);
  max-width: 540px;
}

.section-header.center {
  text-align: center;
  align-items: center;
  margin-bottom: 20px;
}

/* grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--alig-surface);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid var(--alig-border);
  font-size: 13px;
}

.feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--alig-surface);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid var(--alig-border);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card h3 {
  font-size: 15px;
}

.service-card p {
  color: var(--alig-muted);
}

.service-card ul {
  margin-left: 16px;
  color: var(--alig-muted);
}

.service-card ul li::marker {
  color: var(--alig-accent);
}

/* strip simple */
.strip {
  margin-top: 36px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--alig-border);
  background: rgba(15,23,42,0.8);
  font-size: 13px;
  color: var(--alig-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* testimonials / clients */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--alig-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--alig-border);
  padding: 14px 14px 16px;
  font-size: 13px;
  color: var(--alig-muted);
}

.testimonial-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--alig-text);
}

/* logos grid */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.logos-grid img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
}

/* contact section */
.contact-section {
  background: linear-gradient(135deg, #0b1120, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid var(--alig-border);
  padding: 22px 20px 20px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 22px;
}

.contact-section p {
  font-size: 14px;
  color: var(--alig-muted);
}

.contact-details {
  font-size: 14px;
  margin-top: 8px;
}

.contact-details p {
  margin-bottom: 4px;
}

/* pages generic */
.page-hero {
  margin-top: 32px;
  margin-bottom: 10px;
}

.page-hero-title {
  font-size: 26px;
}

.page-hero-subtitle {
  font-size: 14px;
  color: var(--alig-muted);
  max-width: 520px;
}

.page-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 26px;
  margin-top: 26px;
}

.page-block {
  background: var(--alig-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--alig-border);
  padding: 18px 18px 16px;
  font-size: 14px;
}

.page-block h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.page-block p {
  color: var(--alig-muted);
  margin-bottom: 8px;
}

.page-block ul {
  margin-left: 18px;
  color: var(--alig-muted);
}

.side-block {
  background: var(--alig-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--alig-border);
  padding: 16px 16px 14px;
  font-size: 13px;
}

.side-block h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

/* breadcrumb */
.breadcrumb {
  margin-top: 18px;
  font-size: 12px;
  color: var(--alig-muted);
}

.breadcrumb a {
  color: var(--alig-muted);
}

.breadcrumb a:hover {
  color: var(--alig-accent);
}

/* contact page specific */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 26px;
  margin-top: 26px;
}

.contact-card {
  background: var(--alig-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--alig-border);
  padding: 18px;
  font-size: 14px;
}

.contact-card p {
  color: var(--alig-muted);
}

.map-placeholder {
  background: #020617;
  border-radius: var(--radius-md);
  border: 1px dashed var(--alig-border);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--alig-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--alig-border);
  background: #020308;
  margin-top: 36px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 20px;
  font-size: 12px;
  color: var(--alig-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .metrics-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-columns,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-inline: 16px;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-nav {
    flex-wrap: wrap;
  }
  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .strip {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== Animações leves ===== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover suave para cartões, blocos e botões */
.btn,
.feature-card,
.service-card,
.testimonial-card,
.contact-card,
.page-block,
.side-block,
.hero-right-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.page-block:hover,
.side-block:hover,
.hero-right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  border-color: rgba(148,163,184,0.4);
}

.btn:hover {
  transform: translateY(-1px);
}

/* Logos dos clientes: altura padronizada, proporção preservada */
.logos-grid img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header mais clean com blur e sombra leve */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 4, 7, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--alig-border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.header-logo-text {
  display: flex;
  flex-direction: column;
}

.header-logo-text span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--alig-muted);
}

.header-logo:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
