/* =============================================
   VARIÁVEIS
   ============================================= */
:root {
  --navy:            #082F57;
  --primary-blue:    #0B5CAD;
  --accent-blue:     #1E88E5;
  --electric-blue:   #4DB3FF;
  --light-blue:      #D9ECFF;
  --ice-bg:          #F4F8FC;
  --white:           #FFFFFF;
  --dark-text:       #0B1724;
  --muted-text:      #64748B;
  --border:          #D8E3EF;
  --dark-section:    #062A4A;
  --dark-secondary:  #0A3A63;
  --footer-bg:       #041D33;
  --highlight:       #4DB3FF;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   24px;
  --radius-xl:   28px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  --shadow-subtle:     0 20px 50px rgba(8, 47, 87, 0.08);
  --shadow-card-hover: 0 24px 60px rgba(8, 47, 87, 0.14);

  --container: 1180px;

  --section-desktop: 96px 0;
  --section-tablet:  72px 0;
  --section-mobile:  56px 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--dark-text);
  background-color: var(--ice-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TIPOGRAFIA
   ============================================= */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark-text);
}

h1 { font-size: clamp(38px, 5vw, 54px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 20px; font-weight: 700; }

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-text);
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-blue);
}

.btn-dark {
  background: var(--dark-section);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--light-blue);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--light-blue);
}

/* =============================================
   EYEBROW
   ============================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  flex-shrink: 0;
}

.eyebrow::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  order: -1;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.card-dark {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card-highlight {
  background: var(--accent-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

/* =============================================
   PADRÕES DECORATIVOS
   ============================================= */
.pattern-dots {
  background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.pattern-diagonal {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 8px
  );
}

/* =============================================
   ANIMAÇÕES DE SCROLL
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* =============================================
   TOP BAR
   ============================================= */
#top-bar {
  background: var(--dark-section);
  height: 40px;
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s;
}

.top-bar__contact:hover {
  color: var(--white);
}

.top-bar__text {
  color: rgba(217, 236, 255, 0.55);
  font-size: 12px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--electric-blue);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.top-bar__social:hover {
  background: rgba(255, 255, 255, 0.15);
}

.top-bar__social + .top-bar__social::before {
  content: '';
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  margin-right: 4px;
}

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(8, 47, 87, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-text);
  flex-shrink: 0;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-text);
  transition: color 0.2s;
  position: relative;
}

.header__link:hover,
.header__link.active {
  color: var(--primary-blue);
}

.header__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.header__cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.header__hamburger:hover {
  background: var(--ice-bg);
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MARQUEE
   ============================================= */
#marquee {
  background: var(--dark-section);
  height: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0;
}

.marquee__content span {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  padding: 0 28px;
  letter-spacing: 0.01em;
}

.marquee__sep {
  font-size: 14px !important;
  color: var(--electric-blue) !important;
  padding: 0 !important;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  background: var(--ice-bg);
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 48px;
  align-items: center;
}

/* Coluna esquerda */
.hero__content h1 {
  max-width: 560px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-text);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

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

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
}

.hero__trust li svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

/* Coluna direita */
.hero__visual {
  position: relative;
  height: 420px;
}

.hero__dots {
  position: absolute;
  inset: -20px -20px auto auto;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  z-index: 0;
  border-radius: 12px;
}

.hero__img-large {
  position: absolute;
  right: 0;
  top: 0;
  width: 260px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-card-hover);
}

.hero__img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.hero__img-large:hover img {
  filter: brightness(1.05);
}

.hero__img-small {
  position: absolute;
  left: 0;
  top: 60px;
  width: 240px;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-card-hover);
}

.hero__img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.hero__img-small:hover img {
  filter: brightness(1.05);
}

.hero__badge {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 4px solid var(--white);
  outline: 3px solid var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 92, 173, 0.35);
}

.hero__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--white);
}

.hero__badge-inner span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero__sparkle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  color: var(--electric-blue);
  z-index: 3;
  animation: sparkle-pulse 2.5s ease-in-out infinite;
}

@keyframes sparkle-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* Hero mobile */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    height: 320px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__img-large {
    width: 200px;
    height: 260px;
  }

  .hero__img-small {
    width: 190px;
    height: 150px;
    top: 40px;
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 56px 0 48px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   SOBRE
   ============================================= */
#about {
  background: var(--white);
  padding: 100px 0;
}

.about__header {
  text-align: center;
  margin-bottom: 64px;
}

.about__header h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(24px, 2.6vw, 36px);
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px 64px;
  align-items: start;
  margin-bottom: 72px;
}

.about__img-top {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
}

.about__img-bottom {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
}

.about__content {
  grid-column: 2;
  grid-row: 1 / 3;
}

.about__img-badge {
  position: absolute;
  right: -16px;
  top: 180px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(11, 92, 173, 0.35);
  border: 3px solid var(--white);
  z-index: 2;
}

.about__img-badge svg {
  flex-shrink: 0;
}

/* Conteúdo direito */
.about__desc {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8;
}

.about__bars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0 36px;
}

.about__bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.about__bar-track {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.about__bar-fill {
  height: 100%;
  width: 0;
  background: var(--primary-blue);
  border-radius: var(--radius-pill);
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about__bar-fill::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--electric-blue);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-blue);
}

/* Métricas */
.about__metrics {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  background: var(--ice-bg);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 16px;
}

.about__metric strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.about__metric span {
  font-size: 13px;
  color: var(--muted-text);
  max-width: 140px;
  line-height: 1.4;
}

.about__metric-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}

.about__metric-divider span {
  display: block;
  width: 1px;
  height: 56px;
  background: var(--border);
}

.about__metric-divider::before,
.about__metric-divider::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--electric-blue);
}

.about__img-top img,
.about__img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.about__img-top:hover img,
.about__img-bottom:hover img {
  filter: brightness(1.05);
}

/* About mobile */
@media (max-width: 900px) {
  .about__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__img-top  { grid-column: 1; grid-row: 1; }
  .about__content  { grid-column: 1; grid-row: 2; }
  .about__img-bottom { display: none; }

  .about__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .about__metric-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  #about {
    padding: 56px 0;
  }

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

  .about__metric strong {
    font-size: 28px;
  }
}

/* =============================================
   SERVIÇOS
   ============================================= */
#services {
  background: var(--dark-section);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 10px
  );
  pointer-events: none;
}

.eyebrow--light {
  background: rgba(217, 236, 255, 0.12);
  color: var(--electric-blue);
}

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.services__header-left {
  max-width: 600px;
}

.services__header-left h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.services__header-left p {
  color: var(--light-blue);
  font-size: 16px;
}

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

.services__card {
  background: var(--dark-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  border-color: rgba(77,179,255,0.25);
}

.services__card--highlight {
  background: var(--accent-blue);
  border-color: transparent;
}

.services__card--highlight:hover {
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(30,136,229,0.4);
}

.services__card-img {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.services__card:hover .services__card-img img {
  filter: brightness(1.05);
  transform: scale(1.04);
}

.services__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.services__card--highlight .services__card-icon {
  background: rgba(255,255,255,0.2);
}

.services__card h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.services__card p {
  color: var(--light-blue);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.services__card--highlight p {
  color: rgba(255,255,255,0.85);
}

/* Services mobile */
@media (max-width: 960px) {
  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #services {
    padding: 56px 0;
  }

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

/* =============================================
   EXPERIÊNCIA
   ============================================= */
#experience {
  background: var(--ice-bg);
  padding: 90px 0;
}

.experience__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.experience__header h2 {
  margin-bottom: 16px;
}

.experience__header p {
  font-size: 16px;
  line-height: 1.7;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.experience__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.experience__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--primary-blue);
}

.experience__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.experience__card strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
}

.experience__card span {
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.4;
}

.experience__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted-text);
  opacity: 0.7;
}

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

  #experience {
    padding: 56px 0;
  }
}

/* =============================================
   CONTRATAÇÕES PÚBLICAS
   ============================================= */
#public-contracts {
  background: var(--white);
  padding: 100px 0;
}

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

/* Coluna esquerda */
.pubcon__content h2 {
  margin-bottom: 16px;
}

.pubcon__content > p {
  margin-bottom: 36px;
}

.pubcon__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pubcon__items li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pubcon__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.pubcon__items li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.pubcon__items li p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Coluna direita */
.pubcon__card {
  background: var(--ice-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.pubcon__card-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.pubcon__card-desc {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 24px;
}

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

.pubcon__tags span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-blue);
  transition: background 0.2s, border-color 0.2s;
}

.pubcon__tags span:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
}

@media (max-width: 900px) {
  .pubcon__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #public-contracts {
    padding: 56px 0;
  }
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
#differentials {
  background: var(--ice-bg);
  padding: 96px 0;
}

.diff__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.diff__header h2 {
  margin-bottom: 16px;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.diff__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.diff__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--primary-blue);
}

.diff__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.diff__card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
}

.diff__card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

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

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

  #differentials {
    padding: 56px 0;
  }
}

/* =============================================
   COMO TRABALHAMOS
   ============================================= */
#process {
  background: var(--white);
  padding: 96px 0;
}

.process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.process__header h2 {
  margin-bottom: 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process__step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--border);
  transition: background 0.25s, box-shadow 0.25s;
}

.process__step:hover .process__step-number {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--light-blue);
}

.process__step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process__step-body {
  margin-top: 24px;
}

.process__step-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.process__step-body p {
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile: timeline vertical */
@media (max-width: 768px) {
  #process {
    padding: 56px 0;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 40px 0;
    position: relative;
  }

  .process__step:last-child {
    padding-bottom: 0;
  }

  .process__step-connector {
    top: 64px;
    left: 31px;
    right: auto;
    width: 2px;
    height: calc(100% - 32px);
  }

  .process__step-body {
    margin-top: 0;
    padding-top: 12px;
  }
}

/* =============================================
   CITAÇÃO
   ============================================= */
#quote {
  background: var(--ice-bg);
  padding: 96px 0;
}

.quote__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote__mark {
  font-size: 120px;
  line-height: 0.6;
  color: var(--light-blue);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
  user-select: none;
}

blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.4;
  margin-bottom: 32px;
}

.quote__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.quote__author-dot {
  width: 32px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.quote__author span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote__support {
  font-size: 15px;
  color: var(--muted-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 480px) {
  #quote { padding: 56px 0; }
  .quote__mark { font-size: 80px; }
}

/* =============================================
   CTA FINAL
   ============================================= */
#final-cta {
  background: var(--dark-section);
  padding: 96px 0;
}

.cta__inner {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-2xl);
  padding: 72px 64px;
  text-align: center;
  overflow: hidden;
}

.cta__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(77,179,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(30,136,229,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta__content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta__content p {
  color: var(--light-blue);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta__emails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.cta__email-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 14px 14px 14px 24px;
}

.cta__email-row span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.cta__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.cta__copy-btn:hover {
  background: rgba(255,255,255,0.2);
}

.cta__copy-btn.copied {
  background: rgba(77,179,255,0.25);
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

.cta__copy-icon,
.cta__check-icon {
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.cta__check-icon {
  display: none;
}

.cta__copy-btn.copied .cta__copy-icon {
  display: none;
}

.cta__copy-btn.copied .cta__check-icon {
  display: block;
}

@media (max-width: 480px) {
  .cta__email-row span { font-size: 13px; }
}


@media (max-width: 768px) {
  .cta__inner {
    padding: 48px 28px;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  #final-cta {
    padding: 56px 0;
  }
}

/* =============================================
   FAQ
   ============================================= */
#faq {
  background: var(--white);
  padding: 96px 0;
}

.faq__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.faq__header h2 {
  margin-bottom: 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--primary-blue);
}

.faq__question[aria-expanded="true"] {
  color: var(--primary-blue);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--muted-text);
  transition: transform 0.3s ease, color 0.2s;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-text);
}

@media (max-width: 480px) {
  #faq { padding: 56px 0; }
  .faq__question { font-size: 15px; }
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--footer-bg);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand */
.footer__brand p {
  color: rgba(217,236,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.footer__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

.footer__socials {
  display: flex;
  gap: 8px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  transition: background 0.2s, color 0.2s;
}

.footer__social:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: transparent;
}

/* Colunas */
.footer__col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(217,236,255,0.55);
  font-size: 14px;
}

.footer__col ul li svg {
  flex-shrink: 0;
  color: var(--electric-blue);
  opacity: 0.7;
}

.footer__col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(217,236,255,0.55);
  font-size: 14px;
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: var(--white);
}

/* Bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(217,236,255,0.35);
}

@media (max-width: 960px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  #footer {
    padding-top: 48px;
  }
}

/* =============================================
   RESPONSIVIDADE BASE
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  p {
    font-size: 16px;
  }

  /* Header mobile */
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header__nav.open {
    display: flex;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .header__link {
    display: block;
    padding: 14px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    border-bottom: none;
    width: auto;
    text-align: center;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
    position: relative;
    z-index: 100;
  }
}
