:root{
  /* Logo-based palette */
  --orange: #f94810;
  --blue: #1e618e;

  --bg: #ffffff;
  --bg-gradient: linear-gradient(135deg, rgba(8, 22, 42, 0.96), rgba(12, 36, 66, 0.92));

  --text-nav: #0F1A2E;
  --text: #EAF0F7;
  --muted: rgba(234,240,247,.72);

  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);

  --max: 1120px;
}

/* Base */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(132, 199, 247, 0.35), transparent 55%),
              radial-gradient(900px 600px at 95% 10%, rgba(255, 162, 0, 0.648), transparent 55%),
              var(--bg);
  color: var(--text);
}
img{ max-width:100%; display:block; }

.container{ width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }
.muted{ color: var(--muted); }
.tiny{ font-size: .82rem; }
.center{ text-align:center; }
.dot{ opacity:.55; margin:0 .5rem; }

/* Kicker (novo) */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  margin:0 0 .8rem;
  color: rgba(234,240,247,.9);
  font-weight:650;
  letter-spacing:.2px;
  text-transform: uppercase;
  font-size:.82rem;
}
.kicker__line{
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.kicker--dark{ color: rgba(7,21,38,.85); }
.kicker--dark .kicker__line{ background: var(--orange); }

/* =========================
   TOPBAR 
   ========================= */
.topbar {
  position: relative;
  z-index: 20;
  background: var(--bg-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  color: #eaf2ff;
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
}

.top-header-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  min-width: 0;
}

.contact-detail-one,
.contact-detail-two {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  opacity: 0.96;
}

.contact-detail-one i,
.contact-detail-two i {
  color: #8fd3ff;
  font-size: 0.95rem;
}

.topbar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.topbar a:hover {
  color: #ffffff;
  opacity: 1;
}

.top-header-social {
  margin-left: auto;
}

.social-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-icon a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.social-icon a:hover {
  transform: translateY(-1px);
  background: rgba(143, 211, 255, 0.2);
  border-color: rgba(143, 211, 255, 0.6);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.topbar__right > a:first-child {
  font-weight: 600;
  letter-spacing: 0.1px;
  padding: 0.3rem 0.15rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 211, 255, 0.6);
  background: linear-gradient(135deg, #1ea7fd, #2ec5ff);
  color: #05213f !important;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(30, 167, 253, 0.35);
}

.pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

@media (max-width: 640px) {
  .topbar__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    padding: 0.45rem 0;
  }

  .top-header-info {
    gap: 0.5rem;
    min-width: 0;
  }

  .contact-detail-one,
  .contact-detail-two {
    gap: 0.35rem;
    font-size: 0.78rem;
  }

  .contact-detail-two {
    display: none;
  }

  .contact-detail-one a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 170px;
    display: inline-block;
    vertical-align: middle;
  }

  .social-menu {
    gap: 0.3rem;
  }

  .social-icon a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  .topbar__right {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    font-size: 0.86rem;
    padding: 0.55rem 0;
  }

  .contact-detail-two {
    display: none;
  }

  .social-icon a {
    width: 32px;
    height: 32px;
  }
}

/* =========================
   HEADER
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.logo-img {
  display: block;
  width: 150px;   
  height: auto;
  max-width: 100%;
}

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

.nav a {
  padding: 0.52rem 0.72rem;
  border-radius: 12px;
  color: var(--text-nav);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
}

.nav__cta {
  background: linear-gradient(135deg, rgba(236, 75, 26, 0.95), rgba(236, 75, 26, 0.65));
  border: 1px solid rgba(236, 75, 26, 0.45);
  color: #fff !important;
}

.nav__cta:hover {
  background: linear-gradient(135deg, rgba(32,97,142,.9), rgba(32,97,142,.55)) !important;
}

.navToggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.navToggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: rgba(234, 240, 247, 0.9);
}

/* Mobile */
@media (max-width: 980px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .header__inner {
    padding: 0.7rem 0;
    min-height: 72px;
  }

  .navToggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .navToggle span {
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background-color: var(--text-nav);
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0.75rem;
    left: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(11, 18, 32, 0.97);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
    color: var(--text);
  }

  .logo-img {
    width: 170px;
  }
}

@media (max-width: 480px) {
  .header__inner {
    gap: 0.75rem;
    padding: 0.6rem 0;
    min-height: 64px;
  }

  .logo-img {
    width: 150px;
  }

  .navToggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .navToggle span{
    background-color: var(--text-nav);
  }

  .nav {
    left: 0.6rem;
    right: 0.6rem;
    padding: 0.6rem;
  }

  .nav a {
    padding: 0.85rem 0.95rem;
    font-size: 0.92rem;
  }
}


/* =========================
   HERO ORIGINAL (mantido)
   ========================= */
.hero{ position: relative; padding: 3.2rem 0 1.6rem; overflow:hidden; }
.hero__grid{ display:grid; grid-template-columns: 1.25fr .85fr; gap: 2rem; align-items: start; }
.hero__bg{
  position:absolute; inset:-200px -200px auto auto;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,75,26,.20), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}
.eyebrow{
  display:inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(32,97,142,.20);
  border: 1px solid rgba(32,97,142,.35);
  color: rgba(234,240,247,.92);
  margin: 0 0 .9rem;
}
h1{ font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.06; margin: 0 0 1rem; }
.lead{ font-size: 1.05rem; color: var(--muted); max-width: 58ch; }

.hero__actions{ display:flex; gap:.8rem; margin: 1.4rem 0 1.2rem; flex-wrap: wrap; }
.hero__badges{ display:flex; gap:.6rem; flex-wrap: wrap; }
.badge{
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: rgba(234,240,247,.92);
  font-size: .92rem;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .78rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,247,.92);
  font-weight: 650;
  letter-spacing: .2px;
}
.btn:hover{ transform: translateY(-1px); transition: .15s ease; }
.btn--primary{
  background: linear-gradient(135deg, rgba(236,75,26,.96), rgba(236,75,26,.72));
  border-color: rgba(236,75,26,.42);
  box-shadow: 0 16px 35px rgba(236,75,26,.18);
}
.btn--secondary{
  background: linear-gradient(135deg, rgba(32,97,142,.9), rgba(32,97,142,.55));
  border-color: rgba(32,97,142,.42);
  box-shadow: 0 16px 35px rgba(32,97,142,.18);
}
.btn--ghost{ background: transparent; }
.btn--block{ width:100%; }

/* Cards / forms */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.miniForm label, .contactForm label{ display:block; margin: .75rem 0; }
.miniForm span, .contactForm span{ display:block; font-size: .9rem; color: rgba(234,240,247,.9); margin-bottom: .4rem; }

input, select, textarea{
  width:100%;
  padding: .8rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(3,10,20,.35);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(32,97,142,.65);
  box-shadow: 0 0 0 4px rgba(32,97,142,.18);
}

.check{ display:flex; gap:.6rem; align-items:flex-start; }
.check input{ width:auto; margin-top: .2rem; }

/* Sections */
.section{ padding: 3.2rem 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{ margin-bottom: 1.4rem; }
h2{ font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0 0 .45rem; }
.section__headRow{ display:flex; justify-content:space-between; gap:1rem; align-items:flex-end; }

/* Grid */
.grid{ display:grid; gap: 1rem; }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }


/* Filters & gallery */
.filters{ display:flex; gap:.6rem; flex-wrap: wrap; margin: .2rem 0 1.2rem; }
.chip{
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: rgba(234,240,247,.92);
  cursor:pointer;
}
.chip.is-active{
  border-color: rgba(32,97,142,.55);
  background: rgba(32,97,142,.20);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.shot{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  position: relative;
}
.shot img{
  aspect-ratio: 4/3;
  width:100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.shot:hover img{ transform: scale(1.03); }
.shot figcaption{
  position:absolute; left: .7rem; bottom: .7rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(9,48,88,.55);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .86rem;
}


/* =========================
    HERO SLIDER
   ========================= */
.heroSlider{
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.heroSlider__track{
  position: relative;
  width: 100%;
  height: 78vh;
}
.heroSlide{
  position:absolute; inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .45s ease, transform .65s ease;
  pointer-events:none;
}
.heroSlide.is-active{
  opacity:1;
  transform: scale(1);
  pointer-events:auto;
}
.heroSlide__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}
.heroSlide__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.62) 44%, rgba(11,18,32,.40) 70%, rgba(11,18,32,.70) 100%),
    radial-gradient(800px 500px at 20% 40%, rgba(32,97,142,.22), transparent 60%),
    radial-gradient(800px 500px at 80% 30%, rgba(249,72,16,.14), transparent 60%);
}
.heroSlide__content{
  position: relative;
  height: 78vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 2.2rem 0 5.5rem;
  max-width: 62ch;
}
.heroSlide h1{
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.04;
  margin: 0 0 1rem;
}
.heroSlide .lead{
  font-size: 1.05rem;
  color: rgba(234,240,247,.78);
  margin:0 0 1.25rem;
}
.heroSlide__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin: .6rem 0 1.2rem; }
.heroSlide__badges{ display:flex; gap:.55rem; flex-wrap:wrap; }

/* Slider arrows + dots */
.heroArrow{
  position:absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(11,18,32,.55);
  color: white;
  font-size: 34px;
  line-height: 0;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index: 5;
}
.heroArrow:hover{ background: rgba(11,18,32,.75); }
.heroArrow--prev{ left: 14px; }
.heroArrow--next{ right: 14px; }

.heroDots{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  display:flex;
  gap: 8px;
  z-index: 6;
}
.heroDot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}
.heroDot.is-active{
  background: rgba(32,97,142,.95);
  border-color: rgba(32,97,142,.95);
  box-shadow: 0 0 0 4px rgba(32,97,142,.18);
}

/* QUICK CARDS */
.quickCards{
  position: relative;
  margin-top: 56px;
  padding-bottom: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  z-index: 10;
}

.quickCard{
  background: linear-gradient(135deg, rgba(8, 22, 42, 0.96), rgba(12, 36, 66, 0.92));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  min-height: 230px;
  padding: 2rem 1rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);

  display: flex;
  flex-direction: column;      /* ícone em cima */
  justify-content: center;     /* centra vertical */
  align-items: center;         /* centra horizontal */
  text-align: center;          /* texto centrado */
  gap: 1rem;
}

.quickCard:hover{
  transform: translateY(-2px);
  transition: .16s ease;
}

.quickCard__icon{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(32,97,142,.18);
  border: 1px solid rgba(32,97,142,.28);
  font-size: 28px;
}

.quickCard__text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}

.quickCard__text strong{
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.quickCard__text span{
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 1024px){
  .quickCards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

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

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.about__media {
  border-radius: 4px;
  overflow: hidden;
}

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

.about__copy {
  color: #5a6472;
}

.kicker_about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #243247;
}

.kicker__line {
  width: 30px;
  height: 2px;
  background: #ff6a13;
}

.about__copy h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  color: #032a57;
}

.muted {
  margin: 0 0 28px;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.7;
  color: #5b6676;
}

.about__bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 28px;
  margin: 0 0 30px;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 10px;
}


.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__media img {
    height: auto;
    max-height: 620px;
  }

  .about__bullets,
  .about__stats {
    grid-template-columns: 1fr;
  }
}

/* SERVICES */
.section--alt{
  position:relative;
  padding:0 0 80px;
}
.section--alt::before{
  content:"";
  position:absolute; inset:0 0 auto 0;
  height:420px;
  background:linear-gradient(135deg, rgba(8, 22, 42, 0.96), rgba(12, 36, 66, 0.92));
}
.section--alt .container{
  position:relative;
  z-index:1;
  max-width:1180px;
  margin:0 auto;
  padding:110px 20px 0;
}
.section_services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-bottom:48px;
}
.kicker{
  margin:0 0 14px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
}
.kicker span{
  display:inline-block;
  width:30px; height:2px;
  background:#ff7b30;
  margin-right:10px;
  vertical-align:middle;
}
.section_services h2{
  margin:0;
  color:#fff;
  line-height:1.05;
}
.section_services .muted{
  margin:0;
  color:#f3f5fa;
  font-size:25px;
  line-height:1.6;
}

.grid--3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}
.serviceCard h3{
  margin:14px 0 8px;
  color:#0d2340;
  font-size:30px;
  line-height:1.18;
}
.serviceCard p{
  margin:0;
  color:#616a77;
  font-size:18px;
  line-height:1.65;
}
.serviceCard__media{
  position:relative;
  border-radius:18px;
  overflow:hidden;
}

.serviceCard__media img{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center top;
  display:block;
}

@media (max-width:1100px){
  .section__head{grid-template-columns:1fr;}
  .grid--3{grid-template-columns:1fr 1fr;}

  .section--alt .container{padding: 50px 20px 0;}
  .section_services{grid-template-columns: 1fr; margin-bottom: 28px;}
  .section_services .muted{font-size:15px;}
}
@media (max-width:760px){
  .grid--3{grid-template-columns:1fr;}
  .section--alt::before{height:360px;}
}

/* PROJETOS */
#projetos.section{
  padding:72px 0;
}

#projetos .kicker,
#projetos h2{
  color: #032a57;
}

#projetos .muted{
  color: #5f6b7d;
}

.section__headRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:24px;
}

.carouselBtns{
  display:flex;
  gap:10px;
}

.iconBtn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #d9dfeb;
  background:#fff;
  color:#0d2340;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  transition:.2s ease;
}
.iconBtn:hover{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
}

.carousel{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 1fr);
  gap:30px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}
.carousel::-webkit-scrollbar{ height:8px; }
.carousel::-webkit-scrollbar-thumb{
  background:var(--orange);
  border-radius:999px;
}

.project{
  position:relative;
  display:block;
  min-height:320px;
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  scroll-snap-align:start;
  box-shadow:0 16px 35px rgba(10,20,40,.16);
  background:#dfe5ef;
  transition:transform .2s ease, box-shadow .2s ease;
}
.project:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 40px rgba(10,20,40,.22);
}

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

.project__cap{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:14px 16px;
  background:linear-gradient(to top, rgba(7,14,28,.85), rgba(7,14,28,.15));
  color:#fff;
}
.project__cap strong{
  display:block;
  font-size:20px;
  line-height:1.2;
}
.project__cap span{
  display:block;
  margin-top:4px;
  font-size:15px;
  opacity:.92;
}

@media (max-width:980px){
  .section__headRow{ align-items:flex-start; flex-direction:column; }
  .carousel{ grid-auto-columns:minmax(240px, 82%); }
}

/* =========================
   SERVICES
   ========================= */

.services-page {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(243, 107, 42, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section__head--center {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(13, 43, 84, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #f36b2a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__head h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #0d2b54;
}

.section__head p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5b667a;
}

.services-grid {
  gap: 28px;
}

.service--pro {
  position: relative;
  padding: 28px;
  border: 1px solid #e7edf5;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.service--pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f36b2a, #ff9a62);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service--pro:hover {
  transform: translateY(-6px);
  border-color: #dbe5f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.service--pro:hover::before {
  opacity: 1;
}

.service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service__icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f4f6f9;
  color: #f36b2a;
  font-size: 18px;
}

.service__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #6b778c;
  background: #f4f6f9;
  padding: 6px 10px;
  border-radius: 4px;
}

.service--pro h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0d2b54;
}
.service--pro p {
  font-size: 14px;
  line-height: 1.7;
  color: #5f6c80;
  margin-bottom: 16px;
}

.service--pro {
  position: relative;
  padding: 28px;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.25s ease;
}

.service--pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #f36b2a;
}

.service--pro:hover {
  border-color: #d3dbe6;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.service--pro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service--pro ul li {
  font-size: 14px;
  color: #374151;
  padding-left: 16px;
  margin-bottom: 8px;
  position: relative;
}

.service--pro ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #f36b2a;
  border-radius: 50%;

  position: absolute;
  left: 0;
  top: 8px;
}

.ctaStrip--pro {
  margin-top: 42px;
  padding: 34px 38px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0d2b54 0%, #133867 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(13, 43, 84, 0.18);
}

.ctaStrip__content {
  max-width: 760px;
}

.ctaStrip__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #f7b08a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctaStrip--pro strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #ffffff;
}

.ctaStrip--pro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.ctaStrip__btn {
  flex-shrink: 0;
  padding: 15px 24px;
  border-radius: 14px;
}

@media (max-width: 1100px) {
  .ctaStrip--pro {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .services-page {
    padding: 64px 0 80px;
  }

  .service--pro {
    padding: 24px;
    border-radius: 20px;
  }

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

  .ctaStrip--pro {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .ctaStrip--pro strong {
    font-size: 1.35rem;
  }

  .ctaStrip__btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================
   projetos
   ========================= */

.section__head_projetos {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section__head_projetos h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--text);
}

.section__head_projetos .muted {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.7;
}
/* Lightbox */
.lightbox{
  position: fixed; inset: 0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.72);
  padding: 2rem 1rem;
  z-index: 100;
}
.lightbox.is-open{ display:grid; }
.lightbox img{
  max-width: min(980px, 96vw);
  max-height: 70vh;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.lightbox p{ color: rgba(234,240,247,.9); margin: .9rem 0 0; }
.lightbox__close{
  position: fixed; top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   TECNICOS
   ========================= */
.team-page {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(243, 107, 42, 0.05), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section__head--center {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(13, 43, 84, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #f36b2a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__head h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: #0d2b54;
}

.section__head p {
  margin: 0 auto;
  max-width: 720px;
  color: #5f6c80;
  line-height: 1.8;
  font-size: 1rem;
}

.team-grid {
  gap: 26px;
}

.person--pro {
  position: relative;
  padding: 28px;
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.person--pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f36b2a, #ff9a62);
}

.person--pro:hover {
  transform: translateY(-4px);
  border-color: #d7dee7;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.person__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.avatar--pro {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #eef2f6;
  background:
    linear-gradient(135deg, #173760 0%, #0d2b54 100%);
  position: relative;
  overflow: hidden;
}

.avatar--pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.08), transparent 28%);
}

.person__info h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #0d2b54;
}

.person__role {
  margin: 0;
  color: #667085;
  font-size: 0.96rem;
  line-height: 1.5;
}

.person__text {
  margin: 0 0 18px;
  color: #5f6c80;
  line-height: 1.75;
  font-size: 0.95rem;
}

.tags--pro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags--pro li {
  padding: 7px 11px;
  border-radius: 4px;
  background: #f4f6f9;
  border: 1px solid #e8edf3;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.how--pro {
  margin-top: 34px;
  padding: 14px;
  border: 1px solid #e6ebf1;
  border-radius: 14px;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.how__step {
  display: flex;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
}

.how__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f36b2a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how__content strong {
  display: block;
  margin-bottom: 6px;
  color: #0d2b54;
  font-size: 1rem;
}

.how__content p {
  margin: 0;
  color: #5f6c80;
  line-height: 1.7;
  font-size: 0.94rem;
}

.ctaStrip--pro {
  margin-top: 34px;
  padding: 30px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d2b54 0%, #133867 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 42px rgba(13, 43, 84, 0.16);
}

.ctaStrip__content {
  max-width: 760px;
}

.ctaStrip__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #f7b08a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctaStrip--pro strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.2;
}

.ctaStrip--pro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.ctaStrip__btn {
  flex-shrink: 0;
  min-width: 150px;
  text-align: center;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .how--pro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .team-page {
    padding: 64px 0 80px;
  }

  .person--pro {
    padding: 24px;
  }

  .person__top {
    align-items: flex-start;
  }

  .how__step {
    padding: 18px;
  }

  .ctaStrip--pro {
    padding: 26px 22px;
  }

  .ctaStrip--pro strong {
    font-size: 1.3rem;
  }

  .ctaStrip__btn {
    width: 100%;
  }
}


/* =========================
   ABOUT
   ========================= */
.about-page {
  padding: 72px 0 90px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-page__head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4762c;
}

.about-page__head h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  color: #102f5f;
}

.about-page__head p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #607089;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.about-content {
  display: grid;
  gap: 22px;
}

.about-image,
.about-card {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 45, 92, 0.08);
}

.about-image {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-card {
  padding: 1.75rem;
}

.card__label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f4762c;
}

.about-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
  line-height: 1.3;
  color: #102f5f;
}

.about-card > p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: #607089;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-tags li {
  padding: 0.6rem 0.9rem;
  border: 1px solid #dfe7f0;
  background: #f8fafc;
  border-radius: 6px;
  color: #183864;
  font-weight: 600;
  font-size: 0.94rem;
}

.how {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.how__step {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: #f8fafc;
}

.how__num {
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4762c;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  border-radius: 6px;
}

.how__step strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  color: #102f5f;
}

.how__step p {
  margin: 0;
  line-height: 1.65;
  color: #607089;
}

.about-cta {
  margin-top: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: 12px;
  background: #102f5f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.about-cta .card__label {
  color: #ffb184;
}

.about-cta strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.4rem;
  line-height: 1.25;
}

.about-cta p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.about-cta__btn {
  flex-shrink: 0;
}

.about-cta .btn--secondary {
  background: #f4762c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 360px;
  }

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

  .about-cta__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 56px 0 72px;
  }

  .about-card {
    padding: 1.35rem;
  }

  .about-card h3 {
    font-size: 1.3rem;
  }

  .about-cta {
    padding: 1.2rem;
  }

  .about-cta strong {
    font-size: 1.2rem;
  }
}


/* =========================
   CONTACT
   ========================= */
.contact-page {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-page .container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact-top {
  max-width: 760px;
  margin-bottom: 32px;
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f4762c;
  background: #fff;
}

.contact-top h1 {
  margin: 0 0 12px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
  color: #102f5f;
}

.contact-top p {
  margin: 0;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #607089;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.contact-left,
.contact-right {
  min-width: 0;
}

.contact-box {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 45, 92, 0.08);
  padding: 26px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
}

.contact-form .field label {
  margin-bottom: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #183864;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  background: #f8fafc;
  color: #102f5f;
  font-size: 0.96rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form select {
  cursor: pointer;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a98ad;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f4762c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244, 118, 44, 0.10);
}

.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 18px;
  accent-color: #ff6b2c;;
}

input[type="checkbox"]:checked {
  background-color: #1b2e47;
  border-color: #ff6b2c;
}

.contact-check span {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  color: #607089;
}

.contact-btn {
  align-self: flex-start;
  min-width: 220px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  background: #f4762c;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(244, 118, 44, 0.24);
}

.contact-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f4762c;
}

.contact-info h2 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #102f5f;
}

.contact-info > p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: #607089;
}

.contact-info-list {
  display: grid;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: #f8fafc;
  text-decoration: none;
  color: #102f5f;
}

.contact-info-item:hover {
  border-color: #f4762c;
  background: #fff;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border: 1px solid #e3eaf2;
  border-radius: 8px;
  background: #fff;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
  color: #102f5f;
}

.contact-info-item small {
  display: block;
  font-size: 0.92rem;
  color: #607089;
}

.alert {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.alert ul {
  margin: 0;
  padding-left: 18px;
}

.alert--success {
  background: #eaf8ef;
  border: 1px solid #b9e3c4;
  color: #1f6b35;
}

.alert--error {
  background: #fff1f1;
  border: 1px solid #f1bcbc;
  color: #9f2f2f;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding: 56px 0 72px;
  }

  .contact-box {
    padding: 18px;
  }

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

  .contact-info h2 {
    font-size: 1.5rem;
  }
}

/* =========================
   FOOTER
   ========================= */

.siteFooter{
  background: var(--bg-gradient);
  color:#dce6ff;
  margin-top:70px;
}
.footerMain{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap:48px;
  padding:80px 0 60px;
}
.footerBrand img{
  width:230px;
  max-width:100%;
  height:auto;
  opacity:.95;
}
.footerCol h4{
  margin:0 0 22px;
  font-size:1.9rem;
  color:#fff;
  text-transform:uppercase;
  position:relative;
}
.footerCol h4::after{
  content:"";
  display:block;
  width:50px;
  height:3px;
  margin-top:10px;
  background: var(--orange);
}
.footerCol p{
  margin:0 0 22px;
  color:#c3cee8;
  line-height:1.75;
  font-size:1.1rem;
}
.footerSocial{
  display:flex;
  gap:10px;
}
.footerSocial a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.15);
  font-weight:700;
}
.footerLinks,
.footerInfo{
  list-style:none;
  margin:0;
  padding:0;
}
.footerLinks li{
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footerLinks a{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  color:#fff;
  text-decoration:none;
}
.footerLinks a::after{
  content:"›";
  opacity:.8;
}
.footerInfo li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  color:#fff;
  line-height:1.7;
}
.footerInfo a{
  color:#fff;
  text-decoration:none;
}
.footerBottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 0;
}
.footerBottom__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:#9fb0d6;
  font-size:.95rem;
}
.footerBottom strong{ color:#fff; }

@media (max-width: 1100px){
  .footerMain{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }
}
@media (max-width: 700px){
  .footerMain{
    grid-template-columns:1fr;
    padding:55px 0 40px;
  }
  .footerBottom__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .how{ grid-template-columns: 1fr; }

  .quickCards{ grid-template-columns: 1fr 1fr; margin-top: -70px; }
  .heroArrow{ display: none !important; }
  .grid--2{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .navToggle{ display:inline-grid; place-items:center; }
  .nav{
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    left: 1rem;
    display:none;
    flex-direction:column;
    gap: .2rem;
    padding: .6rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(11,18,32,.92);
    backdrop-filter: blur(12px);
  }
  .nav.is-open{ display:flex; }
  .nav a{ padding: .85rem .9rem; }
}

@media (max-width: 520px){
  .quickCards{ grid-template-columns: 1fr; margin-top: -84px; }
  .heroSlide__content{ padding-bottom: 7.5rem; }
}

/* =========================
   Botao flutuante do WhatsApp
   ========================= */
.whatsapp-float{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  z-index: 9999;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.whatsapp-float svg{
  width: 35px;
  height: 35px;
  fill: #fff;
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}

.whatsapp-float:active{
  transform: translateY(0);
  opacity: .9;
}

/* Em mobile, dá um bocadinho mais de "folga" */
@media (max-width: 480px){
  .whatsapp-float{
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}