@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/rajdhani-400.woff2') format('woff2'),
       url('../assets/fonts/rajdhani-400.woff') format('woff');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/rajdhani-500.woff2') format('woff2'),
       url('../assets/fonts/rajdhani-500.woff') format('woff');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/rajdhani-600.woff2') format('woff2'),
       url('../assets/fonts/rajdhani-600.woff') format('woff');
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/rajdhani-700.woff2') format('woff2'),
       url('../assets/fonts/rajdhani-700.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/sourcesans3-300.woff2') format('woff2'),
       url('../assets/fonts/sourcesans3-300.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/sourcesans3-400.woff2') format('woff2'),
       url('../assets/fonts/sourcesans3-400.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/sourcesans3-600.woff2') format('woff2'),
       url('../assets/fonts/sourcesans3-600.woff') format('woff');
}



:root {
  --navy:       #0d1b2e;       
  --navy-mid:   #152540;       
  --navy-light: #1e3a5f;       
  --steel:      #2a5298;       
  --steel-bright:#3a6bc7;      
  --silver:     #8c9ab0;       
  --silver-light:#b8c4d4;      
  --ice:        #e8ecf2;       
  --white:      #ffffff;
  --gray-50:    #f6f8fb;
  --gray-100:   #edf0f5;
  --gray-200:   #d8dfe9;
  --gray-400:   #8a95a8;
  --gray-600:   #4a5568;
  --text:       #1a2233;

  --accent:     #2a5298;       
  --accent-hover:#1e3d7a;
  --metal:      #6b7a8d;       
  --metal-light:#8c9ab0;       

  --radius:  6px;
  --shadow:  0 2px 16px rgba(13,27,46,.10);
  --shadow-lg: 0 8px 40px rgba(13,27,46,.20);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);

  
  --font-head: 'Rajdhani', 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.3;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--steel);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--steel);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,82,152,.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}
.btn-large { padding: 16px 44px; font-size: 1rem; }

.section-tag {
  display: inline-block;
  background: rgba(107,122,141,.1);
  color: var(--metal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
  border-left: 3px solid var(--metal-light);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.section-header p { color: var(--gray-600); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,46,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-top: 2px solid rgba(42,82,152,.45);
  border-bottom: 2px solid rgba(42,82,152,.45);
}
#navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
  border-top: none;
  border-bottom: 1px solid #e5e9f0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 88px;
}
.nav-logo img {
  height: 80px;
  object-fit: contain;
  
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 8px 15px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 15px; right: 15px;
  height: 2px;
  background: var(--metal-light);
  border-radius: 2px;
}

#navbar.scrolled .nav-link {
  color: var(--navy);
}
#navbar.scrolled .nav-link:hover {
  color: var(--steel);
}
#navbar.scrolled .nav-link.active {
  color: var(--navy);
}
#navbar.scrolled .nav-link.active::after {
  background: var(--metal);
}
#navbar.scrolled .dropdown-menu a {
  color: var(--gray-600);
}
#navbar.scrolled .dropdown-menu a:hover {
  color: var(--steel);
  background: var(--gray-50);
}
#navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px); left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid var(--steel);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 270px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: dropIn .2s ease;
}
#navbar.scrolled .dropdown-menu {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--metal);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
#navbar.scrolled .dropdown-menu a {
  border-bottom-color: var(--gray-100);
}
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: var(--transition);
  letter-spacing: .02em;
}
.dropdown-menu a:hover { background: rgba(42,82,152,.2); color: var(--white); padding-left: 26px; }
.arrow { font-size: .65rem; }

.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:var(--transition); }

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 88px;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,82,152,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,82,152,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 38%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(42,82,152,.3), transparent);
  pointer-events: none;
}
.hero-content {
  padding: 80px 0 80px 60px;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,82,152,.15);
  color: var(--silver-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  border: 1px solid rgba(42,82,152,.3);
  margin-bottom: 28px;
  animation: fadeInUp .8s ease both;
}
.hero-tag::before { content:''; display:block; width:6px; height:6px; background:var(--steel-bright); border-radius:50%; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-title .line1 { display:block; font-size: clamp(2.2rem,4.5vw,4rem); animation: fadeInUp .8s .1s ease both; text-shadow: 0 2px 16px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.9); color: var(--white); }
.hero-title .line2 { display:block; font-size: clamp(1.6rem,3vw,2.6rem); color: var(--white); font-weight: 400; animation: fadeInUp .8s .2s ease both; text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.hero-title .line3 { display:block; font-size: clamp(2.2rem,4.5vw,4rem); color: var(--white); animation: fadeInUp .8s .3s ease both; text-shadow: 0 2px 16px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.9); }
.hero-sub {
  color: var(--silver);
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.35;
  margin-bottom: 36px;
  animation: fadeInUp .8s .4s ease both;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; animation: fadeInUp .8s .5s ease both; }

.hero-visual { padding: 70px 40px 70px 0; position:relative; z-index:1; }
.hero-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  animation: fadeIn 1s .3s ease both;
  
  box-shadow: 0 0 0 1px rgba(42,82,152,.4), var(--shadow-lg);
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--steel-bright);
  border-left: 2px solid var(--steel-bright);
  z-index: 2;
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--steel-bright);
  border-right: 2px solid var(--steel-bright);
  z-index: 2;
}
.hero-main-img { width:100%; height:100%; object-fit:cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,.5) 0%, transparent 60%);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 14px;
  animation: fadeInUp .8s .6s ease both;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid var(--metal-light);
  border-radius: 4px;
  padding: 14px 12px;
  text-align: center;
}
.stat-n { display:block; font-family:var(--font-head); font-size:1.8rem; font-weight:700; color:var(--white); line-height:1; }
.stat-l { display:block; font-size:.72rem; color:var(--silver); margin-top:4px; letter-spacing:.04em; text-transform:uppercase; }

.hero-scroll-hint {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.3); font-size:.7rem; letter-spacing:.12em; text-transform:uppercase;
  animation: fadeIn 1s 1s ease both;
}
.hero-scroll-hint span { display:block; width:1px; height:36px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3)); animation: scrollLine 1.5s infinite ease; }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(.5);opacity:.4;} }

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  display: none;
}

.hero-slider-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 8%;
  padding-top: 88px; 
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,122,141,.2);
  color: var(--metal-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  border: 1px solid rgba(140,154,176,.3);
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeInUp .8s ease both;
}
.hero-tag::before {
  content:'';
  display:block;
  width:6px; height:6px;
  background: var(--metal-light);
  border-radius:50%;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-title .line1 { display:block; font-size: clamp(2.2rem,4.5vw,4rem); animation: fadeInUp .8s .1s ease both; text-shadow: 0 2px 16px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.9); color: var(--white); }
.hero-title .line2 { display:block; font-size: clamp(1.6rem,3vw,2.6rem); color: var(--white); font-weight: 400; animation: fadeInUp .8s .2s ease both; text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.hero-title .line3 { display:block; font-size: clamp(2.2rem,4.5vw,4rem); color: var(--white); animation: fadeInUp .8s .3s ease both; text-shadow: 0 2px 16px rgba(0,0,0,.7), 0 1px 4px rgba(0,0,0,.9); }

.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.35;
  margin-bottom: 36px;
  animation: fadeInUp .8s .4s ease both;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; animation: fadeInUp .8s .5s ease both; }

.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid rgba(42,82,152,.45);
  border-bottom: 2px solid rgba(42,82,152,.45);
  background: rgba(13,27,46,.45);
  backdrop-filter: blur(10px);
}
.hero-stat {
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-l {
  display: block;
  font-size: .7rem;
  color: var(--metal-light);
  margin-top: 4px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.slider-controls {
  position: absolute;
  bottom: 90px;
  right: 5%;
  z-index: 11;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slider-dot {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s ease;
}
.slider-dot.active {
  background: rgba(255,255,255,.6);
  height: 32px;
}

.slider-arrows {
  position: absolute;
  bottom: 96px;
  left: 5%;
  z-index: 11;
  display: flex;
  gap: 10px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2px;
  background: rgba(13,27,46,.4);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--steel);
  border-color: var(--steel);
}

.slide-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--metal-light);
  z-index: 12;
  width: 0%;
  transition: width linear;
}

.slide-type-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(13,27,46,.6);
  color: var(--metal-light);
  font-size: .7rem;
  font-family: var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 11;
  white-space: nowrap;
  animation: fadeIn 1s 1.5s ease both;
}
.hero-scroll-hint span {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
  animation: scrollLine 1.5s infinite ease;
}

@media (max-width: 768px) {
  .hero-slider-content { padding: 0 6%; padding-top: 88px; }
  .hero-stats-bar { grid-template-columns: repeat(3,1fr); }
  .hero-stat-n { font-size: 1.5rem; }
  .slider-arrows { display: none; }
  .hero-scroll-hint { display: none; }
}

.about-strip { padding: 96px 0; background: var(--gray-50); }
.about-strip-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-strip-text .section-tag { margin-bottom: 6px; }
.about-strip-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.about-strip-text p { color:var(--gray-600); margin-bottom:16px; line-height:1.85; }
.about-strip-text .btn-primary { margin-top: 12px; }

.about-img-stack { position:relative; height:420px; }
.about-img-a, .about-img-b { position:absolute; border-radius:4px; object-fit:cover; box-shadow:var(--shadow-lg); }
.about-img-a { width:76%; height:72%; top:0; right:0; z-index:2; }
.about-img-b { width:58%; height:54%; bottom:0; left:0; z-index:3; border: 3px solid var(--white); }
.about-accent-block {
  position:absolute; width:100px; height:100px;
  background: var(--steel); bottom:28px; right:8px;
  border-radius:4px; z-index:1; opacity:.15;
}

.diferenciais { padding: 72px 0; background: var(--navy); }
.dif-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.dif-card {
  background: #3A6BC7;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--metal-light);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.dif-card:hover { background:#2a5298; transform:translateY(-5px); }
.dif-icon svg { stroke: #ffffff; }
.dif-icon { margin-bottom:14px; display:flex; justify-content:center; }
.dif-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.dif-card p { color:rgba(255,255,255,.85); font-size:.88rem; line-height:1.7; }

.servicos-section { padding: 96px 0; background: var(--white); }
.servicos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.servico-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  display: block;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--metal);
}
.servico-card:nth-child(2n):hover {
  border-bottom-color: var(--steel);
}
.sc-img-wrap { overflow:hidden; aspect-ratio:16/10; }
.sc-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.servico-card:hover .sc-img-wrap img { transform:scale(1.05); }
.sc-body { padding: 22px 24px 24px; }
.sc-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.sc-body p { color:var(--gray-600); font-size:.88rem; line-height:1.75; margin-bottom:14px; }
.sc-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
  transition: var(--transition);
}
.servico-card:hover .sc-link { color:var(--steel-bright); }

.cta-band {
  background: linear-gradient(100deg, var(--navy-mid) 0%, var(--steel) 100%);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta-band-inner {
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem,3vw,2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.cta-band p { color:rgba(255,255,255,.6); font-size:.95rem; }
.cta-band .btn-primary { background:var(--white); color:var(--navy); border-color:var(--white); }
.cta-band .btn-primary:hover { background:var(--ice); border-color:var(--ice); }

footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer-brand p { color:rgba(255,255,255,.4); font-size:.88rem; line-height:1.85; max-width:290px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--metal-light);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color:rgba(255,255,255,.45); font-size:.88rem; transition:var(--transition); }
.footer-col ul li a:hover { color:var(--white); padding-left:4px; }
.footer-col p { color:rgba(255,255,255,.45); font-size:.88rem; line-height:1.9; margin-bottom:10px; }
.footer-col a { color:var(--silver-light); }
.footer-col a:hover { color:var(--white); }

.footer-map {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0;
}
.footer-map-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.footer-map-info h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 6px;
}
.footer-map-info p { color:rgba(255,255,255,.45); font-size:.88rem; line-height:2; }
.footer-map-info a { color:var(--silver-light); }
.footer-map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-map-embed iframe { display:block; width:100%; }

.footer-bottom { padding:18px 0; text-align:center; }
.footer-bottom p { color:rgba(255,255,255,.2); font-size:.78rem; letter-spacing:.05em; }

.whatsapp-btn {
  position:fixed; bottom:28px; right:28px;
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  z-index:999;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite;
  transition: transform .3s ease;
}
.whatsapp-btn:hover { transform:scale(1.1); }
.whatsapp-btn svg { width:58px; height:58px; }
.whatsapp-tooltip {
  position:absolute; right:70px;
  background:var(--navy); color:var(--white);
  font-size:.8rem; padding:6px 12px; border-radius:4px;
  white-space:nowrap; opacity:0; pointer-events:none;
  transition:opacity .3s ease; font-family:var(--font-body);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity:1; }
@keyframes waPulse {
  0%,100%{box-shadow:0 4px 16px rgba(37,211,102,.45);}
  50%{box-shadow:0 4px 28px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1);}
}

@keyframes fadeInUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn   { from{opacity:0;} to{opacity:1;} }
[data-anim] { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
[data-anim].visible { opacity:1; transform:translateY(0); }

.page-hero {
  background: none;
  min-height: 340px;
  display:flex; align-items:flex-end;
  position:relative; overflow:hidden; padding-top:88px;
}
.page-hero-bg { position:absolute; inset:0; object-fit:cover; width:100%; height:100%; opacity:1; filter:none; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, var(--navy) 35%, rgba(13,27,46,.6) 100%); }
.page-hero-content { position:relative; z-index:1; padding:44px 0; }
.page-hero-content .breadcrumb { font-size:.78rem; color:rgba(255,255,255,.9); margin-bottom:10px; letter-spacing:.04em; text-shadow: 0 1px 6px rgba(0,0,0,.8); }
.page-hero-content .breadcrumb a { color:var(--white); }
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.9);
}

.service-content { padding:72px 0; }
.service-layout { display:grid; grid-template-columns:1fr 360px; gap:56px; align-items:start; }
.service-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight:700; color:var(--navy);
  margin:28px 0 12px; letter-spacing:.03em;
}
.service-body h2:first-child { margin-top:0; }
.service-body p { color:var(--gray-600); line-height:1.85; margin-bottom:14px; }
.service-body ul { list-style:none; padding:0; margin-bottom:14px; }
.service-body ul li { padding:7px 0 7px 18px; position:relative; color:var(--gray-600); line-height:1.7; }
.service-body ul li::before { content:'▸'; position:absolute; left:0; color:var(--steel); }

.service-sidebar { position:sticky; top:82px; }
.sidebar-gallery { border-radius:4px; overflow:hidden; box-shadow:var(--shadow-lg); }
.sidebar-gallery img { width:100%; aspect-ratio:4/3; object-fit:cover; cursor:pointer; transition:transform .4s ease; }
.sidebar-gallery img:hover { transform:scale(1.02); }
.gallery-thumbs { display:grid; grid-template-columns:repeat(3,1fr); gap:5px; margin-top:5px; }
.gallery-thumbs img { aspect-ratio:1; object-fit:cover; border-radius:2px; cursor:pointer; opacity:.6; transition:opacity .3s ease; border:2px solid transparent; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity:1; border-color:var(--steel); }

.sidebar-cta { background:var(--navy); border-radius:4px; padding:26px; text-align:center; margin-top:20px; border-top:2px solid var(--steel); }
.sidebar-cta h3 { font-family:var(--font-head); font-size:1.15rem; color:var(--white); margin-bottom:8px; }
.sidebar-cta p { color:var(--silver); font-size:.88rem; margin-bottom:18px; }
.sidebar-cta .btn-primary { width:100%; justify-content:center; }

.other-services { background:var(--gray-50); border-radius:4px; padding:22px; margin-top:18px; border:1px solid var(--gray-200); }
.other-services h4 { font-family:var(--font-head); font-size:.78rem; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; }
.other-services ul li a { display:flex; align-items:center; gap:8px; padding:7px 0; font-size:.88rem; color:var(--gray-600); border-bottom:1px solid var(--gray-200); transition:color .3s ease; }
.other-services ul li:last-child a { border-bottom:none; }
.other-services ul li a:hover { color:var(--steel); }
.other-services ul li a::before { content:'→'; color:var(--steel); }

.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,.94); z-index:9999; align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:4px; }
.lightbox-close { position:absolute; top:22px; right:30px; font-size:1.8rem; color:var(--white); cursor:pointer; background:none; border:none; }

.about-page { padding: 96px 0; }
.about-page-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-bottom:64px; }
.about-page h2 { font-family:var(--font-head); font-size:2rem; font-weight:700; color:var(--navy); margin-bottom:18px; letter-spacing:.02em; }
.about-page p { color:var(--gray-600); line-height:1.9; margin-bottom:14px; }
.about-page-img { border-radius:4px; overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-lg); }
.about-page-img img { width:100%; height:100%; object-fit:cover; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:44px; }
.value-card { border-left:3px solid var(--steel); padding:24px; background:var(--gray-50); border-radius:0 4px 4px 0; }
.value-card h3 { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:8px; letter-spacing:.03em; }
.value-card p { color:var(--gray-600); font-size:.88rem; line-height:1.75; }

.contato-page { padding: 96px 0; }
.contato-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.contato-info h2 { font-family:var(--font-head); font-size:2rem; font-weight:700; color:var(--navy); margin-bottom:14px; letter-spacing:.02em; }
.contato-info p { color:var(--gray-600); line-height:1.85; margin-bottom:28px; }
.contato-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contato-item-icon { width:44px; height:44px; background:var(--navy); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.contato-item-text h4 { font-family:var(--font-head); font-weight:700; color:var(--navy); margin-bottom:4px; font-size:.95rem; letter-spacing:.03em; }
.contato-item-text p, .contato-item-text a { color:var(--gray-600); font-size:.88rem; line-height:1.65; }
.contato-item-text a:hover { color:var(--steel); }

.contato-form { background:var(--gray-50); border-radius:4px; padding:36px; border:1px solid var(--gray-200); border-top:3px solid var(--steel); }
.contato-form h3 { font-family:var(--font-head); font-size:1.4rem; font-weight:700; color:var(--navy); margin-bottom:26px; letter-spacing:.03em; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-weight:600; font-size:.82rem; color:var(--navy); margin-bottom:6px; letter-spacing:.04em; text-transform:uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--gray-200); border-radius:var(--radius);
  font-family:var(--font-body); font-size:.92rem; color:var(--text);
  background:var(--white); transition:border-color .3s ease; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--steel); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-submit { width:100%; justify-content:center; font-size:1rem; }
.form-note { text-align:center; font-size:.76rem; color:var(--gray-400); margin-top:10px; }

.map-section { padding:0 0 72px; }
.map-embed { border-radius:4px; overflow:hidden; box-shadow:var(--shadow); }
.map-embed iframe { display:block; }

@media (max-width:1024px) {
  .servicos-grid { grid-template-columns:repeat(2,1fr); }
  .dif-grid { grid-template-columns:repeat(2,1fr); }
  .service-layout { grid-template-columns:1fr; }
  .service-sidebar { position:static; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-map-inner { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .hero { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero-content { padding:80px 24px 80px; text-align:center; }
  .hero-actions { justify-content:center; }
  .about-strip-inner { grid-template-columns:1fr; }
  .about-img-stack { display:none; }
  .servicos-grid { grid-template-columns:1fr; }
  .dif-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .contato-grid { grid-template-columns:1fr; }
  .about-page-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .cta-band-inner { flex-direction:column; text-align:center; }
  .nav-links { display:none; flex-direction:column; position:fixed; top:70px; left:0; right:0; background:var(--navy); padding:20px; gap:4px; border-top:1px solid rgba(255,255,255,.07); }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .dropdown-menu { position:static; display:block; box-shadow:none; border:none; border-top:none; background:rgba(255,255,255,.03); border-radius:0; margin-top:4px; animation:none; }
  .dropdown-menu a { padding:8px 16px 8px 24px; }
  .whatsapp-btn { bottom:18px; right:18px; }
}
@media (max-width:480px) {
  .dif-grid { grid-template-columns:1fr; }
  .hero-stats { grid-template-columns:repeat(3,1fr); gap:6px; }
  .stat-n { font-size:1.4rem; }
}

.orcamento-section {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.orcamento-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.orcamento-text .section-tag { margin-bottom: 6px; }
.orcamento-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.orcamento-text p {
  color: var(--gray-600);
  line-height: 1.35;
  margin-bottom: 28px;
}
.orcamento-info { display: flex; flex-direction: column; gap: 12px; }
.orc-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: .92rem;
}
.orcamento-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--steel);
}
.orcamento-form .form-group { margin-bottom: 6px; }
.orcamento-form label {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.orcamento-form input,
.orcamento-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .3s ease;
  outline: none;
  resize: vertical;
}
.orcamento-form input:focus,
.orcamento-form textarea:focus { border-color: var(--steel); }
.orcamento-form .form-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  background: #25D366;
  border-color: #25D366;
  font-size: .95rem;
}
.orcamento-form .form-submit:hover {
  background: #1da851;
  border-color: #1da851;
}
@media (max-width: 768px) {
  .orcamento-inner { grid-template-columns: 1fr; gap: 36px; }
  .orcamento-form-wrap { padding: 24px; }
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-logos .footer-logo {
  margin-bottom: 0;
}
.footer-logos .footer-logo:nth-child(2) {
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 20px;
  height: 38px;
}

p, .about-strip-text p, .service-body p, .contato-info p,
.about-page p, .footer-brand p, .footer-col p, .orcamento-text p,
.hero-sub, .dif-card p, .sc-body p, .sidebar-cta p, .value-card p {
  line-height: 1.3 !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--navy);
  border-top: 2px solid rgba(42,82,152,.45);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  line-height: 1.5 !important;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner a { color: var(--silver-light); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--steel);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease;
}
.cookie-btn-accept:hover { background: var(--accent-hover); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
}
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}
