:root {
  --navy: #14213D;
  --navy-dark: #0d1829;
  --navy-mid: #1a2d4f;
  --navy-light: #1e3460;
  --blue: #2563EB;
  --cyan: #00C2FF;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-light: rgba(255, 255, 255, 0.8);
  --grid-line: rgba(255, 255, 255, 0.04);
  --border: rgba(0, 194, 255, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* GRID TEXTURE */
.grid-bg {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* TYPOGRAPHY */
.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display .cyan {
  color: var(--cyan);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 24, 41, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo>img {
  max-width: 180px;
}

.logo_footer>img {
  max-width: 180px;
}

.logo-diamond {
  width: 34px;
  height: 34px;
  border: 2px solid var(--cyan);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-diamond span {
  transform: rotate(-45deg);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-phone {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-phone svg {
  color: var(--cyan);
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 6px;

  animation: subtleGlow 2.5s ease-in-out infinite;
}

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

@keyframes subtleGlow {
  0%, 100% {
    box-shadow:
      0 0 0 rgba(0, 255, 255, 0),
      0 0 6px rgba(0, 255, 255, 0.25);
  }

  50% {
    box-shadow:
      0 0 8px rgba(0, 255, 255, 0.35),
      0 0 14px rgba(0, 255, 255, 0.20);
  }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}



.side-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.side-dot.active,
.side-dot:hover {
  background: var(--cyan);
  transform: scale(1.3);
}

/* STATUS BAR */
.status-bar {
  position: absolute;
  top: 80px;
  left: 40px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index:10;
}

.status-dot {
  margin-left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 60px);
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  background: url("/containers/CONTAINERS.png")  center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      #0d1829 0%,
      #0d1829 48%,
      rgba(13, 24, 41, .95) 58%,
      rgba(13, 24, 41, .70) 72%,
      rgba(13, 24, 41, .35) 85%,
      transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1280px;

  margin: auto;
  padding: 0 40px;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: calc(100vh - 140px);
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(60px, 7vw, 96px);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  font-size: 14px;
  padding: 14px 28px;
}

.hero-ctas .btn-outline {
  font-size: 14px;
  padding: 14px 28px;
}

/* CORNER DECO */
.corner-tl,
.corner-br {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  opacity: 0.5;
}

.corner-tl {
  top: 72px;
  left: 40px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.corner-br {
  bottom: 100px;
  right: 40px;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

/* STATS BAR */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--navy-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 28px 40px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 40px;
  border-left: 1px solid var(--border-subtle);
}

.stat-item:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.stat-value .unit {
  color: var(--cyan);
  font-size: 18px;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 100px 40px;
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

.section-header-full {
  grid-template-columns: 1fr;
}

.section-title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  margin-top: 14px;
}

.section-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 340px;
  margin-top: auto;
  padding-top: 20px;
}

/* ── SERVIÇOS ── */
#servicos {
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}

.service-card {
  background: var(--navy);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--navy-mid);
}

.service-mod {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 20px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.service-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.service-divider {
  width: 28px;
  height: 2px;
  background: var(--cyan);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-specs {
  list-style: none;
  margin-bottom: 24px;
}

.service-specs li {
  font-size: 12px;
  color: var(--text-light);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-specs li::before {
  content: '✓';
  color: var(--cyan);
  font-size: 11px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.03em;
}

.service-link:hover {
  opacity: 0.75;
}

/* Corner deco on cards */
.card-corner-tl,
.card-corner-br {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0.3;
}

.card-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.card-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
}

/* ── DIFERENCIAIS ── */
#diferenciais {
  background: var(--navy-dark);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}

.diff-card {
  background: var(--navy-dark);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}

.diff-card:hover {
  background: rgba(13, 24, 41, 0.7);
}

.diff-num-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.diff-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-icon svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.diff-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-muted);
}

.diff-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── PORTFÓLIO ── */
#projetos {
  background: var(--navy);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}

.port-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.port-item:first-child {
  grid-row: 1;
  grid-column: 1;
  height: 300px;
}

.port-item:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
  height: 300px;
}

.port-item:nth-child(3) {
  grid-row: 2;
  grid-column: 1;
  height: 300px;
}

.port-item:nth-child(4) {
  grid-row: 2;
  grid-column: 2;
  height: 300px;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.port-item:hover img {
  transform: scale(1.05);
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 24, 41, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* ── SOBRE ── */
#sobre {
  background: var(--navy-dark);
}

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

.sobre-eyebrow {
  margin-bottom: 20px;
}

.sobre-title {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.05;
  margin-bottom: 28px;
}

.sobre-subtitle {
  font-size: clamp(15px, 2.5vw, 14px);
  line-height: 0.3;
  margin-bottom: 20px;
  margin-top: -20px;
}

.sobre-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.parceiros-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 32px 0 16px;
}

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

.parceiro {
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sobre-stats-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(13, 24, 41, 0.95);
  border: 1px solid var(--border);
  padding: 24px 28px;
  width: 200px;
}

.sobre-stat {
  margin-bottom: 16px;
}

.sobre-stat:last-child {
  margin-bottom: 0;
}

.sobre-stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.sobre-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.sobre-stat-val .cyan {
  color: var(--cyan);
}

/* ── DEPOIMENTOS ── */
#depoimentos {
  background: var(--navy);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-subtle);
}

.testi-card {
  background: var(--navy);
  padding: 36px 28px;
}

.testi-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
}

.testi-role {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── CONTATO ── */
#contato {
  background: var(--navy-dark);
}

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

.contato-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  margin: 14px 0 20px;
}

.contato-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 320px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* FORM */
.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.form-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300C2FF' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-dark);
}

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

.btn-submit {
  width: 100%;
  background: var(--cyan);
  color: var(--navy-dark);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

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

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

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 14px 0 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.social-btn svg {
  width: 14px;
  height: 14px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-cert::before {
  content: '●';
  color: var(--cyan);
  font-size: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-system {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-system::before {
  content: '●';
  font-size: 6px;
  animation: pulse 2s infinite;
}