/* ── RESET & BASE ── */
:root {
  --azul: #1B44D4;
  --ciano: #00CFFF;
  --grad: linear-gradient(135deg, #1B44D4 0%, #00CFFF 100%);
  --preto: #000000;
  --noite: #0A0A1A;
  --escuro: #1A1A2E;
  --cinza: #6B7280;
  --claro: #F3F4F6;
  --branco: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--branco);
  color: var(--escuro);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* ── UTILIDADES ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-tag {
  display: inline-block;
  background: rgba(27, 68, 212, 0.08);
  color: var(--azul);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

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

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--escuro);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--cinza);
  max-width: 520px;
  margin: 0 auto;
}

/* ── BOTÕES ── */
.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: var(--branco);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-primary.large {
  font-size: 17px;
  padding: 18px 40px;
}

.btn-primary.full {
  width: 100%;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--branco);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--ciano);
  background: rgba(0, 207, 255, 0.08);
}

.btn-wpp {
  display: inline-block;
  background: var(--grad);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: opacity 0.2s;
}

.btn-wpp:hover {
  opacity: 0.85;
}

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0;
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 207, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 104px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
  color: var(--ciano);
  background: rgba(0, 207, 255, 0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.97);
  padding: 20px 24px 28px;
  gap: 4px;
  border-top: 1px solid rgba(0, 207, 255, 0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--ciano);
}

.nav-mobile .btn-wpp {
  margin-top: 8px;
  text-align: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--preto);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27, 68, 212, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 207, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 207, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 207, 255, 0.1);
  border: 1px solid rgba(0, 207, 255, 0.2);
  color: var(--ciano);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── SOBRE ── */
.sobre {
  padding: 100px 0;
  background: var(--branco);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--escuro);
  margin-bottom: 20px;
  line-height: 1.2;
}

.sobre-text p {
  font-size: 16px;
  color: var(--cinza);
  margin-bottom: 16px;
}

.sobre-text .btn-primary {
  margin-top: 8px;
}

.sobre-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre-card {
  background: var(--claro);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.sobre-card:hover {
  border-left-color: var(--azul);
  transform: translateX(4px);
}

.sobre-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.sobre-card strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--escuro);
}

.sobre-card p {
  font-size: 14px;
  color: var(--cinza);
  margin: 0;
}

/* ── SERVIÇOS ── */
.servicos {
  padding: 100px 0;
  background: var(--claro);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 68, 212, 0.12);
}

.servico-card.destaque {
  background: var(--preto);
  border: 1px solid rgba(0, 207, 255, 0.2);
}

.servico-card.destaque::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 207, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.destaque-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.servico-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(27, 68, 212, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-card.destaque .servico-icon-wrap {
  background: rgba(0, 207, 255, 0.1);
}

.servico-icon {
  font-size: 26px;
}

.servico-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--escuro);
}

.servico-card.destaque h3 {
  color: var(--branco);
}

.servico-card>p {
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.6;
}

.servico-card.destaque>p {
  color: rgba(255, 255, 255, 0.6);
}

.servico-lista {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.servico-lista li {
  font-size: 13px;
  color: var(--cinza);
  display: flex;
  align-items: center;
  gap: 6px;
}

.servico-card.destaque .servico-lista li {
  color: rgba(255, 255, 255, 0.65);
}

.btn-servico {
  display: block;
  text-align: center;
  border: 2px solid var(--azul);
  color: var(--azul);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.btn-servico:hover {
  background: var(--azul);
  color: white;
}

.btn-servico.destaque {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

.btn-servico.destaque:hover {
  opacity: 0.88;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--preto);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(27, 68, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--branco);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

/* ── CONTATO ── */
.contato {
  padding: 100px 0;
  background: var(--branco);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--claro);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid transparent;
}

.contato-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.contato-card.wpp {
  border-left-color: #25D366;
}

.contato-card.email {
  border-left-color: var(--azul);
}

.contato-card.insta {
  border-left-color: #E1306C;
}

.contato-card-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.contato-card>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contato-card strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--escuro);
}

.contato-card span {
  font-size: 14px;
  color: var(--cinza);
}

.contato-card small {
  font-size: 12px;
  color: #9CA3AF;
}

.contato-form {
  background: var(--claro);
  border-radius: 16px;
  padding: 36px;
}

.contato-form h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--escuro);
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--escuro);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--branco);
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--escuro);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 12px;
  color: var(--cinza);
  margin-top: 12px;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--noite);
  border-top: 1px solid rgba(0, 207, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  max-height: 64px;
  height: auto;
  width: auto;
  max-width: 220px;
  align-self: flex-start;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 240px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(0, 207, 255, 0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--branco);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ciano);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--branco);
  margin-bottom: 4px;
}

.footer-contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--ciano);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── ANIMAÇÕES ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header logo responsive override */
@media (max-width: 600px) {
  #header .logo {
    height: 72px;
    width: auto;
  }
}

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .servico-card:nth-child(3) {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  /* Reduce header and hero spacing on tablet/mobile widths */
  .header-inner {
    padding: 12px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hamburger {
    display: flex;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servico-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-div {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile header spacing */
  .header-inner {
    padding: 10px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  /* Footer logo smaller and centered on very small screens */
  .footer-logo {
    max-height: 56px;
    align-self: center;
  }
}