@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN SYSTEM
============================================================ */
:root {
  --navy:       #152238;
  --navy-dark:  #0d1829;
  --navy-mid:   #1a2d47;
  --teal:       #00BCC8;
  --teal-dark:  #009aaa;
  --teal-light: #1fd6e3;
  --white:      #FFFFFF;
  --gray-50:    #F4F6F8;
  --gray-100:   #E0E4E8;
  --gray-400:   #8A96A3;
  --gray-600:   #555F6B;
  --text-body:  #3A3A3A;
  --text-muted: #6B7A8A;

  --grad-hero:  linear-gradient(135deg, #080f1a 0%, #0d1829 45%, #112236 100%);
  --grad-brand: linear-gradient(135deg, #152238 0%, #00BCC8 100%);
  --grad-teal:  linear-gradient(135deg, #00BCC8 0%, #1fd6e3 100%);

  --font: 'Montserrat', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --shadow-teal: 0 8px 32px rgba(0,188,200,.28);
  --ease: .3s cubic-bezier(.4,0,.2,1);
  --section: 6rem;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); font-size: 1rem; color: var(--text-body); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.text-gradient {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,188,200,.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding: .875rem 0;
  font-weight: 600;
  gap: .35rem;
  font-size: .875rem;
}
.btn-ghost:hover { gap: .65rem; }
.btn-ghost svg { transition: transform var(--ease); }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--ease);
}
.nav.scrolled {
  background: rgba(13,24,41,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .875rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(13,24,41,.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: .5rem 0 1.5rem;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  padding: .875rem 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile .btn { margin: 1rem 1.5rem 0; justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-orb-1 {
  position: absolute;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(0,188,200,.14) 0%, transparent 68%);
  top: -120px; right: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,188,200,.07) 0%, transparent 70%);
  bottom: 40px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,188,200,.12);
  border: 1px solid rgba(0,188,200,.28);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .06em;
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.75); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.09);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-top: .3rem;
  display: block;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: var(--section) 0;
  background: var(--gray-50);
}
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,188,200,.18); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,188,200,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--ease);
}
.service-card:hover .service-icon { background: rgba(0,188,200,.18); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.service-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: .625rem; }
.service-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* ============================================================
   STORE PREVIEW
============================================================ */
.store-preview { padding: var(--section) 0; background: var(--white); }
.store-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,188,200,.2); }

.product-thumb {
  aspect-ratio: 4/3;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb svg { width: 44px; height: 44px; stroke: var(--gray-100); fill: none; stroke-width: 1.5; }

.product-info { padding: 1.25rem; }
.product-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .35rem;
  display: block;
}
.product-info h3 { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; line-height: 1.4; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.product-price small { font-size: .75rem; font-weight: 500; color: var(--text-muted); margin-left: .25rem; }

/* ============================================================
   ABOUT (dark)
============================================================ */
.about {
  padding: var(--section) 0;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.about-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,188,200,.11) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about .section-title { color: var(--white); }

.about-text { font-size: .9375rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 1.25rem; }

.about-features { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon {
  width: 36px; height: 36px;
  background: rgba(0,188,200,.14);
  border: 1px solid rgba(0,188,200,.24);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-feature-text h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: .15rem; }
.about-feature-text p  { font-size: .8125rem; color: rgba(255,255,255,.45); }

.about-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.about-card-title { font-size: 1.125rem; font-weight: 800; color: var(--white); margin-bottom: 2rem; }

.about-stat {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.about-stat:first-of-type { border-top: none; padding-top: 0; }
.about-stat strong {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .25rem;
}
.about-stat span { font-size: .8125rem; color: rgba(255,255,255,.45); font-weight: 500; }

/* ============================================================
   LICITAÇÕES CTA
============================================================ */
.licitacoes { padding: var(--section) 0; background: var(--white); }

.licitacoes-inner {
  background: var(--grad-brand);
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.licitacoes-inner::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  top: -80px; right: 300px;
  border-radius: 50%;
  pointer-events: none;
}

.lic-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  padding: .3rem .875rem;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.licitacoes-inner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.licitacoes-inner p  { font-size: .9375rem; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 520px; }

.licitacoes-cta { display: flex; flex-direction: column; gap: .875rem; align-items: center; flex-shrink: 0; }

/* ============================================================
   BLOG PREVIEW
============================================================ */
.blog-preview { padding: var(--section) 0; background: var(--gray-50); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb svg { width: 36px; height: 36px; stroke: rgba(255,255,255,.15); fill: none; stroke-width: 1.5; }

.blog-tag {
  position: absolute;
  top: .875rem; left: .875rem;
  background: var(--teal);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .22rem .625rem;
  border-radius: 4px;
}

.blog-body { padding: 1.5rem; }
.blog-meta { font-size: .75rem; color: var(--text-muted); font-weight: 500; margin-bottom: .625rem; display: block; }
.blog-body h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .625rem; }
.blog-body p  { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--navy-dark); padding: 4rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2rem;
}

.footer-logo { height: 40px; margin-bottom: 1.25rem; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: .625rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.footer-social a:hover { background: rgba(0,188,200,.15); border-color: rgba(0,188,200,.3); }
.footer-social a svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.45); fill: none; stroke-width: 2; transition: stroke var(--ease); }
.footer-social a:hover svg { stroke: var(--teal); }

.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .8125rem; color: rgba(255,255,255,.38); transition: color var(--ease); }
.footer-links a:hover { color: var(--teal); }

.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .875rem; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .8125rem; color: rgba(255,255,255,.38); line-height: 1.55; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy  { font-size: .75rem; color: rgba(255,255,255,.22); }
.footer-cnpj  { font-size: .75rem; color: rgba(255,255,255,.18); }

/* ============================================================
   ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section: 4rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid  { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .store-header, .blog-header { flex-direction: column; align-items: flex-start; }
  .licitacoes-inner { grid-template-columns: 1fr; padding: 2.5rem; }
  .licitacoes-cta { flex-direction: row; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .products-grid  { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .licitacoes-cta { flex-direction: column; width: 100%; }
  .licitacoes-cta .btn { width: 100%; justify-content: center; }
  .hero-stats     { gap: 1.5rem; }
}

/* ============================================================
   PAGE HERO (páginas internas)
============================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,188,200,.12) 0%, transparent 68%);
  top: -100px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }

/* ============================================================
   FORMS
============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .875rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,188,200,.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { padding: var(--section) 0; background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
}
.contact-form-card h2 { font-size: 1.375rem; font-weight: 800; color: var(--navy); margin-bottom: .375rem; }
.contact-form-card > p { font-size: .875rem; color: var(--text-muted); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--ease);
}
.contact-info-card:hover { border-color: rgba(0,188,200,.28); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(0,188,200,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-text h4 { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.contact-info-text p, .contact-info-text a { font-size: .8125rem; color: var(--text-muted); line-height: 1.55; }
.contact-info-text a:hover { color: var(--teal); }
.contact-whatsapp {
  background: linear-gradient(135deg, #00BCC8, #1fd6e3);
  border-color: transparent;
  color: var(--white);
}
.contact-whatsapp .contact-info-icon { background: rgba(255,255,255,.2); }
.contact-whatsapp .contact-info-icon svg { stroke: white; }
.contact-whatsapp .contact-info-text h4 { color: white; }
.contact-whatsapp .contact-info-text p, .contact-whatsapp .contact-info-text a { color: rgba(255,255,255,.8); }
.contact-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES PAGE
============================================================ */
.service-detail { padding: var(--section) 0; }
.service-detail:nth-child(even) { background: var(--gray-50); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-detail-inner.reversed .service-detail-content { order: 2; }
.service-detail-inner.reversed .service-detail-visual  { order: 1; }
.service-detail-content .section-label { margin-bottom: .75rem; }
.service-detail-content h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.service-detail-content p { font-size: .9375rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.service-benefits li {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .875rem;
  color: var(--text-body);
}
.service-benefits li .benefit-icon {
  width: 24px; height: 24px;
  background: rgba(0,188,200,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-benefits li .benefit-icon svg { width: 13px; height: 13px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-visual {
  aspect-ratio: 4/3;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-detail-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,188,200,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.service-detail-visual svg { width: 80px; height: 80px; stroke: rgba(0,188,200,.4); fill: none; stroke-width: 1.25; position: relative; z-index: 1; }
@media (max-width: 900px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-inner.reversed .service-detail-content { order: unset; }
  .service-detail-inner.reversed .service-detail-visual  { order: unset; }
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-page-section { padding: var(--section) 0; background: var(--white); }
.about-page-section.alt { background: var(--gray-50); }
.about-page-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-page-lead p { font-size: .9375rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about-page-visual {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.about-page-visual::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,188,200,.16) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  border-radius: 50%;
}
.about-stat-list { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
.about-stat-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-stat-item strong { font-size: 1.875rem; font-weight: 800; color: var(--teal); }
.about-stat-item span { font-size: .8125rem; color: rgba(255,255,255,.5); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,188,200,.2); }
.value-card-icon {
  width: 56px; height: 56px;
  background: rgba(0,188,200,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-card-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.value-card p { font-size: .8125rem; color: var(--text-muted); line-height: 1.7; }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 680px;
}
.team-avatar {
  width: 120px; height: 120px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.team-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.team-card .team-role { font-size: .8125rem; color: var(--teal); font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 900px) {
  .about-page-lead { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-avatar { margin: 0 auto; }
}

/* ============================================================
   LICITAÇÕES PAGE
============================================================ */
.lic-how { padding: var(--section) 0; background: var(--white); }
.lic-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.lic-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
}
.lic-step-num {
  width: 48px; height: 48px;
  background: var(--grad-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-teal);
}
.lic-step h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.lic-step p { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; }
.lic-docs-section { padding: var(--section) 0; background: var(--gray-50); }
.lic-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.lic-doc-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.lic-doc-icon {
  width: 40px; height: 40px;
  background: rgba(0,188,200,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lic-doc-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.lic-doc-text h4 { font-size: .8125rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.lic-doc-text p { font-size: .75rem; color: var(--text-muted); }
.lic-faq-section { padding: var(--section) 0; background: var(--white); }
.lic-faq { display: flex; flex-direction: column; gap: .875rem; }
.lic-faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.lic-faq-item h3 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: .625rem; }
.lic-faq-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 900px) {
  .lic-steps { grid-template-columns: repeat(2, 1fr); }
  .lic-docs { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .lic-steps { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG PAGE
============================================================ */
.blog-page-section { padding: var(--section) 0; background: var(--gray-50); }
.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.blog-articles { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: all var(--ease);
}
.blog-article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-article-thumb {
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 160px;
}
.blog-article-thumb svg { width: 40px; height: 40px; stroke: rgba(255,255,255,.18); fill: none; stroke-width: 1.5; }
.blog-article-thumb .blog-tag { top: .875rem; left: .875rem; }
.blog-article-body { padding: 1.75rem; }
.blog-article-body h2 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .75rem; }
.blog-article-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.blog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.blog-sidebar-card h3 { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.blog-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-tag-link {
  font-size: .75rem;
  padding: .3rem .75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all var(--ease);
}
.blog-tag-link:hover { background: rgba(0,188,200,.1); border-color: rgba(0,188,200,.3); color: var(--teal); }
.blog-category-list { display: flex; flex-direction: column; gap: .375rem; }
.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .625rem;
  font-size: .8125rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}
.blog-category-list a:hover { background: var(--gray-50); color: var(--teal); }
.blog-category-list a span { font-size: .7rem; background: var(--gray-50); padding: .15rem .5rem; border-radius: 100px; }
@media (max-width: 900px) {
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-article-card { grid-template-columns: 1fr; }
  .blog-article-thumb { aspect-ratio: 16/9; min-height: unset; }
}

/* ============================================================
   STORE PAGE
============================================================ */
.store-page { padding: var(--section) 0; background: var(--white); }
.store-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.store-sidebar { position: sticky; top: 100px; }
.store-filter-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
.store-filter-card h3 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.store-cat-list { display: flex; flex-direction: column; gap: .25rem; }
.store-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .625rem .875rem;
  font-size: .875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}
.store-cat-list a:hover, .store-cat-list a.active { background: var(--white); color: var(--teal); font-weight: 600; }
.store-cat-list a.active { border: 1px solid rgba(0,188,200,.2); }
.store-cat-count { font-size: .7rem; background: rgba(0,188,200,.1); color: var(--teal); padding: .15rem .5rem; border-radius: 100px; font-weight: 600; }
.store-main h2 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { position: static; }
}
@media (max-width: 480px) { .store-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CART
============================================================ */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  transition: all var(--ease);
  flex-shrink: 0;
}
.cart-btn:hover { color: var(--teal); background: rgba(255,255,255,.06); }
.cart-btn svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 18px; height: 18px;
  background: var(--teal);
  border-radius: 9px;
  font-size: .625rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

.cart-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--navy);
  border: 1px solid rgba(0,188,200,.35);
  border-radius: var(--radius-md);
  padding: .875rem 1.375rem;
  color: white;
  font-size: .875rem;
  font-weight: 500;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.cart-toast.show { opacity: 1; transform: translateY(0); }
.cart-toast svg { stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ============================================================
   CHECKOUT PAGE
============================================================ */
.checkout-section { padding: var(--section) 0; background: var(--gray-50); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.checkout-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.checkout-card h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item:last-of-type { border-bottom: none; }
.cart-item-info h4 { font-size: .875rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.cart-item-info span { font-size: .75rem; color: var(--text-muted); }
.cart-item-qty-ctrl {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
}
.cart-qty-btn {
  width: 26px; height: 26px;
  border: 1.5px solid var(--gray-100);
  border-radius: 6px;
  background: var(--white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--ease);
}
.cart-qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: .25rem;
  border-radius: 4px;
  transition: color var(--ease);
  display: flex;
  align-items: center;
}
.cart-item-remove:hover { color: #e53e3e; }
.cart-item-remove svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.cart-empty { text-align: center; padding: 2.5rem 0; }
.cart-empty svg { width: 44px; height: 44px; stroke: var(--gray-100); fill: none; stroke-width: 1.5; margin: 0 auto 1rem; display: block; }
.cart-empty p { color: var(--text-muted); font-size: .9375rem; margin-bottom: 1.5rem; }
.checkout-summary {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  margin-top: 1.5rem;
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  border: 1px solid var(--gray-100);
}
.checkout-summary strong { color: var(--navy); }

@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .cart-item { grid-template-columns: 1fr auto; } .cart-item-qty-ctrl { display: none; } }
