/* ============ TOKENS ============ */
:root{
  --navy-900:#0a1c30;
  --navy-800:#0e2740;
  --navy-700:#123255;
  --blue-600:#1c4d78;
  --blue-500:#3887fc;
  --blue-400:#4a8dc4;
  --bg-light:#f6f8fb;
  --white:#ffffff;
  --text-dark:#111c2b;
  --text-muted:#5c6b7d;
  --text-mist:#8695a7;
  --border:#e3e9f0;
  --radius:6px;
  --shadow-soft:0 18px 45px -22px rgba(10,28,48,0.35);
  --ease:cubic-bezier(.22,.8,.28,1);
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text-dark);
  background:var(--white);
  line-height:1.6;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}
h1,h2,h3,h4{
  font-family:'Sora',sans-serif;
  color:var(--text-dark);
  line-height:1.15;
  letter-spacing:-0.01em;
  margin-bottom: 50px;
  width: 100%;
}
.eyebrow{
  font-size:0.86rem;
  font-weight:600;
  color:var(--blue-500);
  letter-spacing:0.06em;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:26px;
  height:2px;
  background:var(--blue-500);
  display:inline-block;
}
.eyebrow.on-dark{color:#8fc0ec;}
.eyebrow.on-dark::before{background:#8fc0ec;}

.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:15px 28px;
  border-radius:var(--radius);
  font-weight:600;
  font-size:1rem;
  transition:all .25s var(--ease);
  white-space:nowrap;
}
.btn svg{width:16px;height:16px;transition:transform .25s var(--ease);}
.btn:hover svg{transform:translateX(3px);}
.btn-primary{
  background:var(--blue-500);
  color:#fff;
  box-shadow:0 12px 28px -12px rgba(46,107,163,0.55);
}
.btn-primary:hover{background:var(--blue-400);}
.btn-outline{
  background:transparent;
  color:var(--text-dark);
  border:1.5px solid var(--border);
}
.btn-outline:hover{border-color:var(--blue-500);color:var(--blue-500);}
.btn-outline.on-dark{color:#fff;border-color:rgba(255,255,255,0.35);}
.btn-outline.on-dark:hover{border-color:#fff;}
.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:600;
  font-size:0.95rem;
  color:var(--blue-500);
}
.link-arrow svg{width:14px;height:14px;transition:transform .25s var(--ease);}
.link-arrow:hover svg{transform:translateX(4px);}

/* ============ HEADER ============ */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(10,28,48,0.0);
  transition:background .35s var(--ease), box-shadow .35s var(--ease), padding .3s var(--ease);
  padding:22px 0;
}
header.scrolled{
  background:rgba(9,24,41,0.92);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 30px -12px rgba(0,0,0,0.35);
  padding:14px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}
.logo img
{
   width: auto;
   height: 50px;
}
.logo-mark{
  width:38px;height:38px;
  border:1.5px solid rgba(255,255,255,0.55);
  border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.logo-mark svg{width:18px;height:18px;}
.logo-text{
    line-height:1.15;
}

.logo-text .name{font-family:'Sora',sans-serif;font-weight:700;font-size:1.05rem;letter-spacing:0.02em;}
.logo-text .sub{font-size:0.62rem;letter-spacing:0.16em;color:rgba(255,255,255,0.6);}

nav.main-nav{display:flex;}
.main-nav > ul{display:flex;align-items:center;gap:6px;}
.main-nav > ul > li{position:relative;}
.main-nav a.nav-link{
  display:flex;align-items:center;gap:6px;
  padding:10px 16px;
  color:rgba(255,255,255,0.88);
  font-size:0.97rem;
  font-weight:500;
  border-radius:5px;
  transition:color .2s, background .2s;
}
.main-nav a.nav-link:hover{color:#fff;background:rgba(255,255,255,0.08);}
.main-nav a.nav-link.active{color:#fff;}
.chevron{width:12px;height:12px;transition:transform .25s var(--ease);flex-shrink:0;}

.has-dropdown{position:relative;}
.dropdown{
  position:absolute;
  top:calc(100% + 0px);
  left:50%;
  transform:translateX(-50%) translateY(8px);
  min-width:270px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 24px 55px -18px rgba(10,28,48,0.4);
  padding:10px;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index:50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);
}
.has-dropdown:hover .chevron{transform:rotate(180deg);}
.dropdown li a{
  display:flex;align-items:center;gap:11px;
  padding:11px 14px;
  border-radius:7px;
  color:var(--text-dark);
  font-size:0.93rem;
  font-weight:500;
  transition:background .18s;
}
.dropdown li a:hover{background:var(--bg-light);color:var(--blue-500);}
.dropdown li a svg{width:16px;height:16px;color:var(--blue-500);flex-shrink:0;}

.header-cta{display:flex;align-items:center;gap:18px;}
.header-cta .btn-primary{padding:12px 22px;font-size:0.94rem;}

.burger{
  display:none;
  width:26px;height:20px;
  position:relative;
  flex-direction:column;
  justify-content:space-between;
  z-index:1100;
}
.burger span{
  display:block;height:2px;width:100%;background:#fff;
  border-radius:2px;transition:all .3s var(--ease);
}
.burger.open span:nth-child(1){transform:translateY(9px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-9px) rotate(-45deg);}

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy-900);
}
.hero-media{
  position:absolute;inset:0;
  width:100%;height:100%;
  z-index:0;
}
.hero-media video, .hero-media img{
  width:100%;height:100%;
  object-fit:cover;
  position:absolute;inset:0;
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(100deg, rgba(6,17,31,0.94) 8%, rgba(10,28,50,0.86) 42%, rgba(14,39,64,0.55) 75%, rgba(20,55,85,0.35) 100%);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  padding-top:80px;
  max-width: 1200px;
}
.hero h1{
  width: 700px;
  color:#fff;
  font-size:clamp(2.4rem, 5vw, 3.65rem);
  font-weight: 700;
  margin-bottom:26px;
}
.hero p.lead{
  color:rgba(255,255,255,0.86);
  font-size:1.18rem;
  max-width:560px;
  margin-bottom:38px;
  line-height:1.65;
}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;}

/* ============ REVEAL ANIMATIONS ============ */
.reveal-left, .reveal-right, .reveal-up{
  opacity:0;
  transition:opacity .9s var(--ease), transform .9s var(--ease);
  will-change:transform, opacity;
}
.reveal-left{transform:translateX(-70px);}
.reveal-right{transform:translateX(70px);}
.reveal-up{transform:translateY(40px);}
.reveal-left.in-view, .reveal-right.in-view, .reveal-up.in-view{
  opacity:1;
  transform:translate(0,0);
}
.stagger > *{transition-delay:calc(var(--i, 0) * 90ms);}

@media (prefers-reduced-motion: reduce){
  .reveal-left, .reveal-right, .reveal-up{transition:none;transform:none;opacity:1;}
}

/* ============ SECTION GENERIC ============ */
section{padding:120px 0;}
.section-light{background:var(--white);}
.section-tint{background:var(--bg-light);}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  margin-bottom:56px;
  flex-wrap:wrap;
}
.section-head h2{font-size:clamp(1.9rem,3vw,2.5rem);}
.section-head p{color:var(--text-muted);font-size:1.05rem;margin-top:14px;max-width:460px;}

/* ============ ABOUT ============ */
.about{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:70px;
  align-items:center;
}
.about h2{font-size:clamp(2rem,3.4vw,2.7rem);margin-bottom:24px;}
.about p{color:var(--text-muted);font-size:1.06rem;margin-bottom:18px;}
.about-checks{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  margin:34px 0 30px;
  padding-top:26px;
  border-top:1px solid var(--border);
}
.check-item{
  display:flex;align-items:center;gap:10px;
  font-weight:600;font-size:0.98rem;
  color:var(--text-dark);
}
.check-item svg{width:19px;height:19px;color:var(--blue-500);flex-shrink:0;}
.about-image{position:relative;border-radius:14px;overflow:hidden;box-shadow:var(--shadow-soft);}
.about-image img{width:100%;height:100%;object-fit:cover;min-height:480px;}

/* ============ SERVICES ============ */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
}
.service-card{
  background:#fff;
  padding:38px 34px;
  transition:background .3s var(--ease), transform .3s var(--ease);
  position:relative;
}
.service-card:hover{background:var(--bg-light);}
.service-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:26px;}
.service-icon{
  width:48px;height:48px;
  border-radius:9px;
  background:linear-gradient(145deg, var(--blue-500), var(--blue-600));
  display:flex;align-items:center;justify-content:center;
}
.service-icon svg{width:23px;height:23px;color:#fff;}
.service-num{font-size:0.85rem;color:var(--text-mist);font-weight:600;font-family:'Sora',sans-serif;}
.service-card h3{font-size:1.22rem;margin-bottom:12px;}
.service-card p{color:var(--text-muted);font-size:0.98rem;margin-bottom:20px;}

/* ============ REGULARIZACAO ============ */
.regularizacao{
  background:linear-gradient(120deg, var(--navy-900), var(--navy-700));
  padding:0;
}
.reg-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:560px;
}
.reg-text{
  padding:100px 70px 100px 0;
  margin-left:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:520px;
}
.reg-text h2{color:#fff;font-size:clamp(2rem,3.4vw,2.6rem);margin-bottom:22px;}
.reg-text p{color:rgba(255,255,255,0.78);font-size:1.05rem;margin-bottom:18px;}
.reg-image{position:relative;overflow:hidden;}
.reg-image img{width:100%;height:100%;object-fit:cover;min-height:560px;}

/* ============ PROJECTS ============ */
.projects-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  gap:22px;
}
.project-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  min-height:440px;
  box-shadow:var(--shadow-soft);
}
.project-card img{
  width:100%;height:100%;
  object-fit:cover;
  position:absolute;inset:0;
  transition:transform .6s var(--ease);
}
.project-card:hover img{transform:scale(1.06);}
.project-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(6,15,27,0.88) 0%, rgba(6,15,27,0.15) 55%, transparent 80%);
}
.project-label{
  position:absolute;left:26px;right:26px;bottom:26px;
  color:#fff;
}
.project-label .tag{
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.05em;
  color:#9dc7ef;
  margin-bottom:8px;
  display:block;
}
.project-label h3{color:#fff;font-size:1.28rem;font-weight:600;}

/* ============ WHY US ============ */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px 50px;
}
.why-item{
  display:flex;align-items:center;gap:16px;
  padding-bottom:26px;
  border-bottom:1px solid var(--border);
}
.why-icon{
  width:46px;height:46px;flex-shrink:0;
  border-radius:9px;
  background:var(--bg-light);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.why-icon svg{width:21px;height:21px;color:var(--blue-500);}
.why-item span.label{font-weight:600;font-size:1.03rem;}

/* ============ FOOTER ============ */
footer{background:var(--navy-900);color:rgba(255,255,255,0.7);padding:90px 0 0;}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.2fr;
  gap:50px;
  padding-bottom:70px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text .name{color:#fff;}
.footer-brand p{margin-top:20px;font-size:0.98rem;line-height:1.7;max-width:280px;}
.footer-col h4{
  color:#fff;font-size:0.88rem;font-weight:600;
  letter-spacing:0.05em;margin-bottom:22px;
}
.footer-col ul li{margin-bottom:13px;}
.footer-col ul li a{font-size:0.97rem;transition:color .2s;}
.footer-col ul li a:hover{color:#fff;}
.footer-contact li{font-size:0.97rem;margin-bottom:13px;}
.social-row{display:flex;gap:12px;margin-top:22px;}
.social-row a{
  width:38px;height:38px;border-radius:8px;
  background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.social-row a:hover{background:var(--blue-500);}
.social-row svg{width:17px;height:17px;color:#fff;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:26px 0;
  font-size:0.87rem;
  color:rgba(255,255,255,0.45);
  flex-wrap:wrap;gap:10px;
}

/* ============ MOBILE NAV ============ */
.mobile-nav{
  position:fixed;inset:0;
  background:var(--navy-900);
  z-index:1050;
  display:flex;flex-direction:column;
  padding:110px 32px 40px;
  transform:translateX(100%);
  transition:transform .4s var(--ease);
  overflow-y:auto;
}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav ul{display:flex;flex-direction:column;}
.mobile-nav > ul > li{border-bottom:1px solid rgba(255,255,255,0.1);}
.mobile-nav a.nav-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:19px 4px;color:#fff;font-size:1.12rem;font-weight:500;
}
.mobile-nav .chevron{color:rgba(255,255,255,0.6);}
.mobile-submenu{
  max-height:0;overflow:hidden;
  transition:max-height .35s var(--ease);
}
.mobile-submenu.open{max-height:500px;}
.mobile-submenu li a{
  padding:13px 4px 13px 18px;
  color:rgba(255,255,255,0.75);
  font-size:1rem;font-weight:400;
  display:flex;gap:10px;align-items:center;
}
.mobile-submenu li a svg{width:15px;height:15px;color:#8fc0ec;}
.mobile-nav .header-cta{margin-top:34px;flex-direction:column;align-items:stretch;}
.mobile-nav .header-cta .btn{justify-content:center;}

/*============ Códigos inseridos ==========================================*/

.janela_mestra, #janela_mestra
{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	position: fixed !important;
	z-index: 99;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 0;
	bottom: 0;
    background-attachment: fixed;
    overflow: auto;
}
#janela_mestra2
{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	position: fixed !important;
	z-index: 98;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 0;
  left: 0;
	bottom: 0;
    background-attachment: fixed;
    overflow: auto;
}

.janela
{
    width: 35%;
    min-height: 300px;
    position: absolute;
    left: 32.5%;
    top: 50px;
    -webkit-box-shadow: 0px 0px 12px -2px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 12px -2px rgba(0,0,0,1);
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,1);
	text-align: center; 
	background:#fff;    
  	padding: 10px;
    z-index: 101;
	overflow: hidden;
	border-radius: 5px;	
}
.fechar
{
    width: 100%;
    height: 10px;
    font-size: 12px;
    text-align: right;
    float: left;
    margin: 0px 0 5px 0;
    COLOR: #333;
    text-decoration: none;
    cursor: pointer;
}
#campo2, #cpf, #cnpj {
    width: 96%;	
    height: 45px;
    margin: 5px 1% 0 1%;
    font-family: "Montserrat",Calibri, Century Gothic, Arial;
    font-size: 18px;
    padding-left: 1%;
    float: none;
    background-color: #f7f8f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
}
#senha {
  width: 96%;	
  height: 45px;
  margin: 5px 2% 0 2%;
  font-family: "Montserrat",Calibri, Century Gothic, Arial;
  font-size: 18px;
  padding-left: 1%;
  float: none;
  background-color: #f7f8f9;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 0px #fff inset;
  border-radius: 4px;
  box-shadow: none;
}
#descrito {
    width: 96%;
    height: 75px;
	margin: 5px 2% 0 2%;
    font-family: "Montserrat",Calibri, Century Gothic, Arial;
    font-size: 18px;
    padding-left: 1%;
    float: none;
    background-color: #f7f8f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
    text-align: left;
    color: #666;
}
#campo3, #cep {
    width: 94.3%;
    height: 45px;
    margin: 5px auto;
    font-family: "Montserrat",Calibri, Century Gothic, Arial;
    font-size: 18px;
    padding-left: 1%;
    float: none;
    background-color: #f7f8f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
}


#estado, #cidade, #estado2, #atividade {
    width: 95.5%;
    height: 45px;
    margin: 5px auto;
    font-family: "Montserrat",Calibri, Century Gothic, Arial;
    font-size: 18px;
    padding-left: 1%;
    float: none;
    background-color: #f7f8f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
}
#whats {
    width: 94.3%;
    height: 45px;
    margin: 5px auto;
    font-family: "Montserrat",Calibri, Century Gothic, Arial;
    font-size: 18px;
    padding-left: 1%;
    float: none;
    background-color: #f7f8f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
}
#txtbut {
    width: 98%;
    min-height: 50px;
    float: none;
    margin: 30px 0% 0 2%;
    text-align: center;
    color: #fff;
    background-color: #182a41;
    font-family: "Montserrat",Calibri, Century Gothic, Arial;
    font-size: 18px;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
    border: 0px;
    cursor: pointer;
}
#txtbut:hover
{
   opacity: 0.5;
}

.whatsapp {
    width: 70px;
    height: 70px;
    position: fixed;
    bottom: 10px;
    left: 93%;
    padding: 10px;
    z-index: 98;
    animation: respirar 4s infinite ease-in-out;
    will-change: transform;
  }
  .whatsapp img {
    width: 70px;
    height: 70px;
  }
  @keyframes respirar {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.foto_e {
    max-width: 420px;
    height: auto;
    border: 0;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.foto_e img
{
    width: 100%;
}
.voltar
{
    width: 100%;
    min-height: 30px;
    float: left;
    margin: 50px 1% 50px 0;
    text-align: center;
    color: #1c2a47;    
    font-family: "Montserrat",Calibri, Arial, Helvetica, sans-serif !important;
    font-size: 18px;
    font-weight: 100;
    cursor: pointer;
}
.voltar:hover
{
    opacity: 0.5;
}
.cont_botao
{
    width: 100%;
    height: auto;
    float: left;   
    margin: 30px 0 30px 0;
    text-align: center;
}
.botao
{
    width: 300px;
    height: 45px;
    float: none;   
    margin: 0 auto;
    border-radius: 5px;
    background-color: #0098F9;
    color: #fff;    
    font-family: "Montserrat",Calibri, Arial, Helvetica, sans-serif !important;
    font-size: 18px;    
    text-align: center;    
    display: flex;
    align-items: center; 
    justify-content: center; 
    cursor: pointer;
}
.botao:hover
{
    background-color: #056aa8;
    cursor: pointer;
}
.cont_cid 
{
    width: 29%;
    height: 40px;
    float: left;
    margin: 10px 2% 0px 2%;
    border: 1px solid #133e7e;
    color: #666;
    text-align: center;
    padding-top: 8px;
    border-radius: 5px;
}
.cont_cid:hover
{
    background-color: #133e7e;
    border: 1px solid #133e7e;
    color: #fff;
}
.mobile-nav-close{
  position:absolute;
  top:22px;
  right:22px;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:8px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  transition:background .2s;
}
.mobile-nav-close:hover{background:rgba(255,255,255,0.16);}
.mobile-nav-close svg{width:20px;height:20px;}

/*=========================
    MAPS
==========================*/
.maps{

    background:#FFF;
    padding: 20px 0 0 0;
    text-align:center;
}
.maps_iframe
{
    width: 100%;
}
.maps h2{
    font-size:42px;
    font-family: "NunitoBold", Arial, Helvetica, sans-serif;
    color: #122b36;
}
.conteudos {
    max-width: 1400px;
    min-height: 100px;
    float: none;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgb(102, 102, 102);
    font-size: 18px;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    overflow: hidden;
    margin: 0px auto;
}
    .container {
        width: 92%;
    }
.cont_form {
    width: 50%;
    float: none;
    margin: 20px auto;
}
label {
    font-size: 14px;
    text-align: center;
    color: rgb(68, 68, 68);
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 500;
    width: 100%;
    line-height: 16px;
    float: left;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
}
.label_capcha {
    width: 100%;
    min-height: 40px;
    text-align: center;
    font-size: 12px;
    height: 15px;
    margin: 20px 0 20px 0;
    float: left;
    color: #0B2145;
}
.cont_capcha {
    width: 60%;
    float: left;
    margin: 20px 20% 0 20%;
    min-height: 50px;
}
.capcha {
    width: 40%;
    float: left;
    margin: 0px 5% 0 0;
    min-height: 50px;
    border: 0px solid #ccc;
}
#capcha_campo {
    width: 50%;
    float: right;
    margin: 0px 0 0 0;
    min-height: 50px;
    font-family: "Nunito", Calibri, Century Gothic, Arial;
    font-size: 18px;
    background-color: #f7f8f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-shadow: none;
}
.capcha img {
    width: 100%;
    height: auto;
}
.cards_foto {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.cards_foto img {
    width: 100%;
    height: auto;
}
.project-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botão de play sobre o vídeo */
.project-video { cursor: pointer; }

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
  transition: transform .2s, background .2s;
}
.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0, 0, 0, .65);
}
.project-video.is-playing .video-play { opacity: 0; pointer-events: none; }

/* Botão de ampliar sobre o card */
.project-card {
  position: relative;
}

.project-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.project-card:hover .project-expand,
.project-card:focus-within .project-expand {
  opacity: 1;
  transform: translateY(0);
}

.project-expand:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Modal */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.project-modal.is-open {
  display: flex;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.project-modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
}

.project-modal-media img,
.project-modal-media video {
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.project-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.project-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
/* ============ RESPONSIVE ============ */
@media (max-width:1080px){
  .about{grid-template-columns:1fr;gap:50px;}
  .about-image{order:-1;}
  .about-image img{min-height:340px;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .reg-grid{grid-template-columns:1fr;}
  .reg-text{padding:70px 40px;margin-left:0;max-width:none;}
  .reg-image img{min-height:340px;}
  .projects-grid{grid-template-columns:1fr 1fr;}
  .projects-grid .project-card:first-child{grid-column:1/-1;}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px;}
   nav.main-nav, .header-cta{display:none;}
   .burger{display:flex;}
}
@media (max-width:860px){  
   section{padding:80px 0;}
  .container{padding:0 22px;}
  .services-grid{grid-template-columns:1fr;}
  .projects-grid{grid-template-columns:1fr;}
  .projects-grid .project-card{grid-column:auto;min-height:320px;}
  .why-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:36px;padding-bottom:40px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .hero{min-height:92vh;}
  .hero-content{padding-top:60px;}
  .section-head{flex-direction:column;align-items:flex-start;}
  .reveal-left, .reveal-right{transform:translateY(40px);}
   .cont_form {
        width: 60%;
        float: none;
        margin: 20px auto;
    }
    .whatsapp {
        left: 89%;    
      }

  .janela
{
  width: 70%;
  min-height: 100px;
  position: absolute;
  left: 15%;
} 
.cont_cid {
    width: 95%;
    height: 33px;
    float: left;
    margin: 10px 2% 0px 2%;
    padding-top: 8px;

}
}
@media (max-width:750px){
   .cont_form {
        width: 80%;
        float: none;
        margin: 20px auto;
    }
  .janela
{
  width: 90%;
  min-height: 100px;
  position: absolute;
  left: 5%;
}
 .whatsapp {
        left: 85%;    
      }
  .hero h1 {
    width: 100%;
}
   .cont_form {
        width: 80%;
        float: none;
        margin: 20px auto;
    }
}

@media (max-width:650px){
    .cont_form {
        width: 95%;
    }
  .label_capcha {
    width: 100%;
    
    text-align: center;
    font-size: 12px;
    height: 15px;
    margin: 20px auto;
    float: none;
}
    .foto_e {
        max-width: 630px;
        height: auto;
        border: 0;
        float: none;
        margin-right: 10px;
        margin-bottom: 20px;
        margin-left: 10px;
    }

.cont_capcha
	{
		width: 90%;
		float: none;
		margin: 20px auto;
		min-height: 50px; 
	}
	.capcha, .capcha2
	{
		width: 80%;
		float: none;
		margin: 0px auto;
		min-height: 50px; 
	}
  #capcha_campo
	{
		width: 80%;
		float: none;
		margin: 20px auto;
		min-height: 50px; 
	}
   #capcha_campo {
    width: 80%;
    float: left;
    margin: 10px 10% 0 10%;
  }

}
@media (max-width:570px){
  .btn-primary, .btn-outline.on-dark {
    width: 100%;
}
 .whatsapp {
        left: 80%;    
      }
}
@media (max-width:480px){
  body{font-size:16px;}
  .hero h1{font-size:2.1rem;}
  .hero p.lead{font-size:1.05rem;}
  .btn{padding:13px 22px;font-size:0.94rem;}
}
