:root {
  --bg: #0b1120;
  --bg-soft: #111827;
  --surface: rgba(255, 255, 255, 0.97);
  --surface-2: #f8fafc;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #64748b;
  --accent: #3b82f6;
  --accent-dark: #1d4ed8;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --gold: #f59e0b;
  --green: #22c55e;
  --border: rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: linear-gradient(160deg, #0b1120 0%, #1e293b 45%, #0f172a 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background decorativo */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.bg-blob-1 {
  width: 500px;
  height: 500px;
  background: #3b82f6;
  top: -150px;
  right: -100px;
}

.bg-blob-2 {
  width: 400px;
  height: 400px;
  background: #8b5cf6;
  bottom: 20%;
  left: -120px;
}

.bg-blob-3 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  bottom: -80px;
  right: 10%;
  opacity: 0.25;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(20px, 5vw, 48px) clamp(16px, 4vw, 24px) 60px;
}

/* Topo */
.top-bar {
  padding: 4px 0 28px;
}

.top-bar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.top-bar-facebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, transform 0.2s ease;
}

.top-bar-facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  transform: translateY(-1px);
}

.top-bar-facebook-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.45);
}

.top-bar-facebook-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.top-bar-facebook-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-bar-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  flex-shrink: 0;
}

.top-bar-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(99, 102, 241, 0.25) 100%);
  border: 1px solid rgba(147, 197, 253, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.top-bar-login-icon {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.instagram {
  width: auto;
  padding: 12px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.social-btn.instagram:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram svg {
  width: 20px;
  height: 20px;
  fill: #f472b6;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 6vw, 48px);
  margin-bottom: clamp(20px, 4vw, 28px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #8b5cf6, #06b6d4);
}

/* Hero */
.hero-card { padding-top: clamp(36px, 7vw, 56px); }

.logo-wrap {
  position: relative;
  width: clamp(130px, 36vw, 180px);
  height: clamp(130px, 36vw, 180px);
  margin: 0 auto 24px;
}

.logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent), #8b5cf6, #06b6d4, var(--accent));
  animation: spin 8s linear infinite;
  opacity: 0.85;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.logo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 4px solid #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-cnpj {
  background: #eff6ff;
  color: var(--accent-dark);
  border: 1px solid #bfdbfe;
}

.badge-active {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.razao-social {
  font-size: clamp(1.2rem, 4.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  display: flex;
  justify-content: center;
  margin: 28px 0 20px;
}

.divider span {
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #8b5cf6);
}

.section-title {
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mission-quote {
  margin: 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: clamp(0.95rem, 3.5vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-soft);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mission-quote strong {
  color: var(--text);
  font-weight: 600;
}

/* Banner */
.banner {
  position: relative;
  height: clamp(100px, 18vw, 180px);
  margin-bottom: clamp(20px, 4vw, 28px);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 50%, #7c3aed 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.banner-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.phone-icon {
  background: #dbeafe;
  color: var(--accent-dark);
}

.email-icon {
  background: #fce7f3;
  color: #be185d;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.social-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.contact-card .social-btn.instagram {
  width: auto;
  min-width: 220px;
  padding: 14px 36px;
  min-height: 54px;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  background: linear-gradient(
    135deg,
    #f58529 0%,
    #dd2a7b 50%,
    #8134af 100%
  );
  border: none;
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(221, 42, 123, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact-card .social-btn.instagram:hover {
  background: linear-gradient(
    135deg,
    #f77737 0%,
    #e1306c 50%,
    #9333ea 100%
  );
  box-shadow:
    0 14px 36px rgba(221, 42, 123, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.contact-card .social-btn.instagram svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Quem somos */
.about-card { text-align: left; }

.text-block.about p {
  margin: 0 0 1.2em;
  font-size: clamp(0.95rem, 3.4vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-soft);
}

.subsection {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.subsection-title {
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
}

.services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.services li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: #166534;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.services li:hover {
  transform: translateX(4px);
}

.services .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #22c55e;
  color: #fff;
  border-radius: 8px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 0;
}

.info-item {
  padding: 16px 18px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.info-item.full {
  grid-column: 1 / -1;
}

.info-item dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-item dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.closing-text {
  margin: 32px 0 0;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: var(--radius-sm);
  border: 1px solid #fde68a;
}

.cta-box {
  margin-top: 36px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-sm);
}

.cta-box .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  min-height: 56px;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

/* Rodapé */
.footer {
  margin-top: 12px;
}

.footer-title {
  font-size: clamp(0.85rem, 3vw, 1rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-card,
.privacy-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 36px);
  margin-bottom: 20px;
}

.footer-info p {
  margin: 0 0 0.45em;
  font-size: clamp(0.82rem, 3vw, 0.92rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  text-align: center;
}

.copyright {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.privacy-title {
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: 0.06em;
}

.privacy-text p {
  margin: 0 0 1.1em;
  font-size: clamp(0.82rem, 3vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.privacy-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

/* Responsivo */
@media (max-width: 480px) {
  .top-bar-nav {
    max-width: 100%;
    padding: 6px 8px;
  }

  .top-bar-facebook-text {
    display: none;
  }

  .top-bar-facebook {
    padding: 8px 10px;
  }

  .top-bar-login {
    padding: 10px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .mission-quote {
    padding: 18px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-ring { animation: none; }
  * { transition: none !important; }
}
