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

:root {
  --navy: #0d1b2e;
  --navy-mid: #132440;
  --navy-light: #1a3257;
  --silver: #c8d6e5;
  --silver-bright: #e8eef5;
  --steel: #8fa8c4;
  --accent: #4a90d9;
  --accent-glow: #4a90d930;
  --white: #ffffff;
  --text-muted: #7a9ab8;
}

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ══════════════ NAV ══════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(13, 27, 46, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74,144,217,0.15);
  transition: all .3s;
}
nav.scrolled {
  height: 60px;
  background: rgba(13, 27, 46, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--silver);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: .06em;
  text-transform: uppercase;
  position: relative; padding-bottom: 4px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform .25s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 24px; border-radius: 4px;
  background: var(--accent); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: all .25s;
  border: none; cursor: pointer;
}
.nav-cta:hover { background: #5aa0e8; box-shadow: 0 0 20px var(--accent-glow); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--silver); border-radius: 2px; transition: .3s;
}

/* ══════════════ MOBILE MENU ══════════════ */
.mobile-menu {
  display: flex; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--navy-mid);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  
  /* Esconde sem usar display:none */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--silver-bright); text-decoration: none; transition: color .25s;
  letter-spacing: .06em;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; cursor: pointer;
  color: var(--silver); font-size: 28px;
}

/* ══════════════ HERO ══════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
  padding: 100px 8% 160px;
  gap: 15px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(74,144,217,0.12) 0%, transparent 70%),
    linear-gradient(160deg, #0d1b2e 0%, #0a1520 60%, #06111d 100%);
}


/* .hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,144,217,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,144,217,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
} */

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  animation: fadeUp .8s ease both;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(74,144,217,0.4);
  border-radius: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  background: rgba(74,144,217,0.08);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 8vw, 100px);
  line-height: .95;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 18px; font-weight: 300;
  color: var(--steel); line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  padding: 14px 32px; border-radius: 4px;
  background: var(--accent); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: all .25s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: #5aa0e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,144,217,0.35);
}

.btn-outline {
  padding: 14px 32px; border-radius: 4px;
  border: 1px solid rgba(200,214,229,0.3); color: var(--silver);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: all .25s; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  /* position: absolute; right: 5%; top: 50%; transform: translateY(-50%); */
  z-index: 2;
  animation: fadeUp .8s .3s ease both;
}

.hero-stats img {
  width: 750px;
  max-width: 88vw;
  opacity: 0.92;
  filter: drop-shadow(0 0 0.75rem rgba(16, 179, 243, 0.301));
}


.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.scroll-indicator::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════ SECTIONS COMMON ══════════════ */
section { padding: 100px 5%; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1; color: var(--white);
  margin-bottom: 20px;
}
.section-text {
  font-size: 17px; font-weight: 300; color: var(--steel);
  line-height: 1.7; max-width: 600px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════ MVV ══════════════ */
.mvv { background: var(--navy-mid); position: relative; overflow: hidden; }
.mvv::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);
}

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

.mvv-card {
  padding: 48px 36px;
  background: var(--navy);
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.mvv-card:hover { transform: translateY(-4px); }
.mvv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.mvv-card:hover::before { opacity: 1; }

.mvv-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(74,144,217,0.12); border: 1px solid rgba(74,144,217,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.mvv-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--white);
  letter-spacing: .04em; margin-bottom: 16px;
}
.mvv-card p { font-size: 15px; color: var(--steel); line-height: 1.75; font-weight: 300; }

/* ══════════════ SERVICES ══════════════ */
.services { background: var(--navy); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; flex-wrap: wrap; gap: 20px;
}

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

.services-grid .service-card:nth-child(-n+3) {
  grid-column: span 2;
}

.services-grid .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 260px;
  cursor: pointer;
  background: var(--navy-light);
}

.service-card .card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
  filter: brightness(.5) saturate(.7);
}
.service-card:hover .card-bg {
  transform: scale(1.06);
  filter: brightness(.4) saturate(.9);
}

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}

.service-card .card-tag {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  background: var(--accent); color: var(--white);
  opacity: 0; transform: translateY(-8px); transition: all .3s;
}
.service-card:hover .card-tag { opacity: 1; transform: translateY(0); }

.card-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; color: rgba(255,255,255,0.06);
  position: absolute; bottom: 16px; right: 20px;
  line-height: 1;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: var(--white);
  letter-spacing: .04em; margin-bottom: 6px;
}
.card-desc {
  font-size: 13px; color: var(--steel); font-weight: 300;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .4s;
  opacity: 0;
}
.service-card:hover .card-desc { max-height: 60px; opacity: 1; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  margin-top: 10px;
  transform: translateX(-10px); opacity: 0; transition: all .3s .1s;
}
.service-card:hover .card-link { transform: translateX(0); opacity: 1; }

/* service card backgrounds */
.s1 .card-bg { background: linear-gradient(135deg, #1a3060 0%, #0d2040 100%); }
.s2 .card-bg { background: linear-gradient(135deg, #162840 0%, #0a1e35 100%); }
.s3 .card-bg { background: linear-gradient(135deg, #0e2540 0%, #09192c 100%); }
.s4 .card-bg { background: linear-gradient(135deg, #1b3050 0%, #0d2038 100%); }
.s5 .card-bg { background: linear-gradient(135deg, #142840 0%, #0a1e32 100%); }
.s6 .card-bg { background: linear-gradient(135deg, #162d4a 0%, #0c2038 100%); }

.service-card .icon-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;;
  display: flex; justify-content: center; align-items: center;
  opacity: .70;
  transition: opacity .3s;
}

.service-card .icon-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  
}
.service-card:hover .icon-overlay { opacity: .30; }

/* ══════════════ WHY US ══════════════ */
.why { background: var(--navy-mid); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}

.why-visual {
  position: relative;
  height: 440px;
}
.why-box {
  position: absolute;
  background: var(--navy);
  border: 1px solid rgba(74,144,217,0.15);
  border-radius: 8px;
  padding: 24px;
}
.why-box.main {
  inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--navy);
  overflow: hidden;
  padding: 0;
}
.why-box.main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.35);
  object-fit: contain;
  object-position: center;
}
.why-box.main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.92) 0%, rgba(13,27,46,0.2) 60%, transparent 100%);
  z-index: 1;
}
.why-box.main .why-box-caption {
  position: relative; z-index: 2;
  padding: 24px;
}
.why-box.main h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white);
}
.why-box.main p { font-size: 13px; color: var(--steel); font-weight: 300; margin-top: 4px; }

.why-float {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px;
  background: var(--accent);
  border-radius: 8px; padding: 20px;
  z-index: 2; text-align: center;
}
.why-float-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 46px;
  color: var(--white); line-height: 1;
}
.why-float-text {
  font-size: 11px; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: .1em; margin-top: 4px;
}

.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; border-radius: 8px;
  border: 1px solid rgba(74,144,217,0.1);
  background: rgba(74,144,217,0.03);
  transition: all .3s;
}
.why-feature:hover {
  border-color: rgba(74,144,217,0.3);
  background: rgba(74,144,217,0.06);
}

.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px; background: rgba(74,144,217,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.feature-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--white);
  letter-spacing: .03em; margin-bottom: 4px;
}
.feature-body p { font-size: 14px; color: var(--steel); font-weight: 300; line-height: 1.5; }

/* ══════════════ FAQ ══════════════ */
.faq { background: var(--navy); }

.faq-inner { max-width: 760px; margin: 60px auto 0; }

.faq-item {
  border-bottom: 1px solid rgba(74,144,217,0.12);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 500;
  color: var(--silver-bright); transition: color .25s;
}
.faq-question:hover { color: var(--white); }
.faq-question .faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid rgba(74,144,217,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent);
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.faq-answer {
  font-size: 15px; color: var(--steel); font-weight: 300; line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 24px; }

/* ══════════════ CONTACT ══════════════ */
.contact {
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.07) 0%, transparent 70%);
}

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

.contact-info p {
  font-size: 17px; color: var(--steel); font-weight: 300;
  line-height: 1.7; margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }

.detail-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(74,144,217,0.12); border: 1px solid rgba(74,144,217,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.detail-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted); margin-bottom: 2px;
}
.detail-value { font-size: 15px; color: var(--silver-bright); font-weight: 500; }

.contact-form {
  background: rgba(74,144,217,0.04);
  border: 1px solid rgba(74,144,217,0.12);
  border-radius: 12px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,144,217,0.2);
  border-radius: 6px; padding: 12px 16px;
  color: var(--silver-bright);
  font-family: 'Barlow', sans-serif; font-size: 15px;
  transition: border-color .25s, background .25s;
  outline: none; resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(74,144,217,0.05);
}
.form-group select option { background: var(--navy-mid); color: var(--silver-bright); }
.form-submit { width: 100%; }

/* ══ BOTÃO DESABILITADO ══ */
.contact-form button[type="submit"]:disabled {
  background: var(--navy-light);
  color: var(--text-muted);
  border: 1px solid rgba(74,144,217,0.15);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

/* ══════════════ LOCALIZAÇÃO ══════════════ */
.localizacao {
  padding: 120px 8%;
  background: var(--navy-mid);
  border-top: 1px solid rgba(74,144,217,0.08);
}
 
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
 
.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
.loc-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(74,144,217,0.04);
  border: 1px solid rgba(74,144,217,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color .25s;
}
.loc-card:hover { border-color: rgba(74,144,217,0.3); }
 
.loc-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(74,144,217,0.12);
  border: 1px solid rgba(74,144,217,0.2);
  display: flex; align-items: center; justify-content: center;
}
 
.loc-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted); margin-bottom: 4px;
}
.loc-value {
  font-size: 16px; font-weight: 600; color: var(--silver-bright);
  margin-bottom: 4px;
}
.loc-sub {
  font-size: 14px; color: var(--steel); line-height: 1.6;
}
 
.loc-btn {
  display: inline-block; text-align: center;
  margin-top: 4px;
}
 
.localizacao-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(74,144,217,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
 
@media (max-width: 1245px) {
  .localizacao-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════ PORTO SLIDER ══════════════ */
.porto-slider {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
}
 
.slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
 
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
  will-change: transform, opacity;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
 
.slide--1 { background-image: url('mgs-foto-1.jpeg'); }
.slide--2 { background-image: url('mgs-foto-2.jpeg'); }
 
/* dark gradient overlay for legibility */
.slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 0 8% 80px;
  background:
    linear-gradient(to top, rgba(6,14,24,0.82) 0%, rgba(6,14,24,0.35) 55%, rgba(6,14,24,0.1) 100%),
    linear-gradient(to right, rgba(6,14,24,0.55) 0%, transparent 60%);
}
 
.slider-text {
  max-width: 640px;
  animation: fadeUp .8s ease both;
}
 
.slider-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.slider-eyebrow::before {
  content: '';
  display: inline-block; width: 32px; height: 1px;
  background: var(--accent);
}
 
.slider-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: .96;
  color: var(--white);
  letter-spacing: .015em;
  margin-bottom: 18px;
}
.slider-headline span { color: var(--accent); }
 
.slider-sub {
  font-size: 15px; color: var(--steel); font-weight: 300;
  letter-spacing: .04em;
}
 
/* dots */
.slider-dots {
  position: absolute;
  bottom: 32px; right: 8%;
  z-index: 3;
  display: flex; gap: 10px;
}
.dot {
  width: 28px; height: 3px; border-radius: 2px;
  border: none; cursor: pointer;
  background: rgba(255,255,255,0.3);
  transition: background .3s, width .3s;
  padding: 0;
}
.dot.active {
  background: var(--accent);
  width: 44px;
}
 
/* arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(13,27,46,0.55);
  border: 1px solid rgba(74,144,217,0.25);
  color: var(--silver-bright);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 3%; }
.slider-arrow.next { right: 3%; }
 
@media (max-width: 900px) {
  .porto-slider { height: 70vh; }
  .slider-overlay { padding: 0 6% 60px; }
  .slider-arrow { display: none; }
}


/* ══════════════ FOOTER ══════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(74,144,217,0.1);
  padding: 7px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
footer img { height: 40px; }
footer p { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--text-muted);
  text-decoration: none; transition: color .25s;
}
.footer-links a:hover { color: var(--accent); }

.logo__footer{
  height: 110px;
  width: auto;
}

.container_direito_Dev{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.link__nicolas {
  color: var(--accent);
}

.link-whats{
  color: rgb(0, 140, 255);
}


/* ══════════════ WHATSAPP BTN ══════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1620px) {
   .hero-stats img {
    width: 650px;
    max-width: 70vw;
   }
}


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

  .services-grid .service-card:nth-child(-n+3),
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  /* Card 3 sozinho: centraliza ocupando metade e se posicionando no meio */
  .services-grid .service-card:nth-child(3) {
    grid-column: 1 / span 1;
    justify-self: center;
    width: 100%;
  }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 300px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { position: static; transform: none; margin-top: 40px; }
  .hero-stats img { width: 550px; max-width: 70vw; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  section { padding: 72px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { flex-direction: column; gap: 50px; justify-content: flex-start;}
  .hero-content { order: 0; text-align: center;}
  .hero-actions {justify-content: center;}
  .hero-stats { position: static; transform: none; margin-top: 10px; order: 1;}
  .hero-stats img {max-width: 90vw;}
  .services-header { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 530px){
  .hero-stats img {
    width: 450px;
  }
}
