@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --bg: #150A26;
  --bg-soft: #1F1036;
  --bg-page: #FAF8FE;
  --primary-dark: #3E077C;
  --primary: #7A1EB4;
  --primary-light: #B370E0;
  --primary-lighter: #D0A7F4;
  --ink: #1E1530;
  --ink-soft: #6B6280;
  --line: #E7DEF5;
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-page);
  line-height: 1.6;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(122, 30, 180, 0.15);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--ink-soft); }
.lead { font-size: 18px; color: var(--ink-soft); max-width: 640px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(122, 30, 180, 0.55);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-whatsapp {
  background: #1FAA59;
  color: var(--white);
}

/* ---------- Header ---------- */

.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; }
.brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

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

.nav-desktop a {
  color: #D9D0E8;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-desktop a:hover, .nav-desktop a.ativo { color: var(--primary-lighter); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-soft);
  padding: 12px 24px 24px;
}

.nav-mobile a {
  color: #D9D0E8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}

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

@media (max-width: 880px) {
  .nav-desktop, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  background: radial-gradient(circle at 80% 0%, #2B1350 0%, var(--bg) 55%);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: var(--white); }
.hero h1 span { color: var(--primary-lighter); }
.hero .lead { color: #C9BEDE; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats div { font-family: var(--font-mono); }
.hero-stats strong { display: block; font-size: 22px; color: var(--primary-lighter); font-family: var(--font-display); }
.hero-stats span { font-size: 12px; color: #A79BC4; letter-spacing: 1px; }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
}

.hero-photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4 / 3.2;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(62,7,124,0.65), rgba(21,10,38,0.35) 60%, rgba(122,30,180,0.55));
  mix-blend-mode: multiply;
}

.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.35);
  pointer-events: none;
}

/* ---------- Sections ---------- */

.section { padding: 90px 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 640px; margin-bottom: 48px; }

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

@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover { border-color: var(--primary-light); transform: translateY(-3px); }
.card .icone { width: 46px; height: 46px; margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 14.5px; }

.node-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  margin: 64px 0;
}

.node-divider::before, .node-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.node-divider .ponto {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--primary-lighter);
}

.produto-card {
  background: var(--bg-page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: #F0E4FB;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}

.aviso-catalogo {
  background: linear-gradient(135deg, #F5EEFD, #FBF9FE);
  border: 1px dashed var(--primary-light);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 36px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: #EBDFFB; margin: 0; }

/* ---------- Contact ---------- */

.servicos-photo {
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 380px;
}

.servicos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}

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

@media (max-width: 880px) {
  .contato-grid { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

input, textarea, select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  margin-bottom: 18px;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 1px;
  border-color: var(--primary);
}

textarea { resize: vertical; min-height: 130px; }

.info-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item strong { display: block; font-family: var(--font-display); font-size: 15px; }
.info-item span { font-size: 14px; color: var(--ink-soft); }

/* ---------- Footer ---------- */

.site-footer { background: var(--bg); color: #B9AECF; padding: 64px 0 28px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer .brand img { height: 34px; }
.site-footer .brand span { color: var(--white); }
.site-footer p.desc { max-width: 320px; font-size: 14.5px; margin-top: 16px; }
.site-footer h4 { color: var(--white); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 18px; }
.site-footer a { color: #B9AECF; display: block; margin-bottom: 10px; font-size: 14.5px; }
.site-footer a:hover { color: var(--primary-lighter); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8A7AA6;
}

/* ---------- WhatsApp floating button ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1FAA59;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(31, 170, 89, 0.6);
  z-index: 60;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }


/* ---------- Ajustes PHP e informações institucionais ---------- */
.header-contact { color: #D9D0E8; border-color: rgba(255,255,255,0.18); }
.page-intro { padding-top: 56px; }
.page-title-medium { max-width: 720px; }
.page-title-large { max-width: 760px; }
.contact-spacing { margin-top: 28px; }
.cta-actions, .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-actions { margin-top: 36px; }
.cta-ghost { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #fff; }
.compact-copy { margin: 0; font-size: 14.5px; }
.aviso-catalogo strong { font-family: var(--font-display); display: block; margin-bottom: 6px; }
.footer-location { display: block; margin-top: 10px; font-size: 14.5px; color: #B9AECF; }
.footer-bottom a { display: inline; margin: 0; font-size: inherit; }
.location-card { margin-top: 56px; padding: 34px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); }
.location-card h2 { margin-top: 14px; }
.location-card p { margin-bottom: 0; }
.privacy-content { max-width: 840px; }
.privacy-card { margin-top: 34px; }
.privacy-card h2 { font-size: 22px; margin-top: 28px; }
.privacy-card h2:first-child { margin-top: 0; }
.privacy-card a { color: var(--primary); text-decoration: underline; }

@media (max-width: 560px) {
	.container { padding: 0 18px; }
	.hero { padding: 72px 0 82px; }
	.section { padding: 64px 0; }
	.cta-band { padding: 34px 24px; }
	.hero-stats { gap: 20px; }
}


/* ---------- Refinamento visual ---------- */
body {
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 20%, rgba(179,112,224,0.06), transparent 28rem),
    var(--bg-page);
}

::selection { background: var(--primary-lighter); color: var(--primary-dark); }

a, button, input, textarea, select { -webkit-tap-highlight-color: transparent; }

.btn {
  justify-content: center;
  min-height: 48px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:focus-visible,
.nav-desktop a:focus-visible,
.nav-mobile a:focus-visible,
.brand:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--primary-lighter);
  outline-offset: 4px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #C081EB, #68159F);
  box-shadow: 0 14px 28px -9px rgba(122,30,180,.7);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  color: var(--white);
  background: #178F4A;
  box-shadow: 0 12px 25px -10px rgba(23,143,74,.75);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--primary-dark);
  border-color: var(--primary-light);
  background: #F4EBFC;
}

.site-header {
  box-shadow: 0 8px 28px rgba(12,5,25,.2);
}

.site-header .container { height: 78px; }
.brand { flex-shrink: 0; }
.brand img { width: auto; height: 42px; }

.nav-desktop a {
  position: relative;
  padding: 28px 0 26px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-lighter);
  transition: right .18s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.ativo::after { right: 0; }

.header-contact {
  min-height: 42px;
  padding: 10px 20px;
  color: var(--white);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.header-contact:hover,
.header-contact:focus-visible,
.header-contact[aria-current="page"] {
  color: var(--primary-dark);
  border-color: var(--white);
  background: var(--white);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: background .18s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }

.nav-mobile {
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.nav-mobile a { transition: color .18s ease, padding-left .18s ease; }
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] { color: var(--white); padding-left: 6px; }
.nav-mobile .mobile-contact {
  margin-top: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  text-align: center;
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.hero { padding: 104px 0 112px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, #000 62%, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 720px; letter-spacing: -.03em; }
.hero-actions .btn { min-width: 170px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #BEB2D5;
  font-size: 13.5px;
}
.hero-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 5px rgba(74,222,128,.12);
}
.hero-photo-card {
  box-shadow: 0 30px 65px -30px rgba(0,0,0,.72);
  transform: rotate(1deg);
}

.section-head h2 { letter-spacing: -.02em; }
.card,
.produto-card,
.location-card,
.contact-form-card,
.contact-info-card {
  box-shadow: 0 18px 45px -38px rgba(62,7,124,.45);
}
.card:hover,
.produto-card:hover {
  box-shadow: 0 24px 45px -34px rgba(62,7,124,.5);
}

.produto-card { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.produto-card:hover { transform: translateY(-3px); border-color: var(--primary-light); }

.cta-band { box-shadow: 0 26px 55px -32px rgba(62,7,124,.72); }
.cta-ghost:hover,
.cta-ghost:focus-visible {
  color: var(--primary-dark);
  border-color: var(--white);
  background: var(--white);
}

.contact-form-card,
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 32px;
}
.contact-form-card button { width: 100%; margin-top: 2px; }
.contact-info-card h2 { margin-top: 14px; font-size: clamp(23px, 3vw, 30px); }
.contact-note { margin-bottom: 18px; }
.info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.info-item a { color: var(--primary-dark); font-weight: 600; }
.info-item a:hover { color: var(--primary); text-decoration: underline; }

input, textarea, select {
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:hover, textarea:hover, select:hover { border-color: #CDB7E3; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(179,112,224,.16);
}

.site-footer { box-shadow: inset 0 1px rgba(255,255,255,.04); }
.site-footer .brand img { width: auto; }
.whatsapp-float:hover,
.whatsapp-float:focus-visible { color: var(--white); background: #178F4A; }

@media (max-width: 880px) {
  .site-header .container { height: 70px; }
  .nav-desktop, .nav-cta .header-contact { display: none; }
  .hero { padding: 76px 0 82px; }
  .hero-photo-card { transform: none; }
}

@media (max-width: 560px) {
  .brand span { font-size: 18px; }
  .brand img { height: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: 1fr; gap: 14px; }
  .contact-form-card, .contact-info-card { padding: 24px 20px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
}
