
:root{
  --blue-dark:#061653;
  --blue-mid:#073bb2;
  --blue-light:#087edc;
  --white:#fff;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  overflow-x:hidden;
  font-family:Arial,Helvetica,sans-serif;
  background:#061653;
}
body{
  color:#fff;
  background:linear-gradient(100deg,#061653 0%,#073bb2 48%,#087edc 74%,#061756 100%);
}
a{text-decoration:none;color:inherit}

.header{
  position:relative;
  z-index:100;
  width:100%;
  background:linear-gradient(90deg,#071957 0%,#0838a8 52%,#086dd3 100%);
  border:0;
  box-shadow:none;
}
.header-inner{
  width:min(1220px,calc(100% - 40px));
  min-height:96px;
  margin:0 auto;
  padding:10px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  display:block;
  width:150px;
  height:auto;
  max-height:78px;
  object-fit:contain;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
}
.nav a{
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:11px 14px;
  border-radius:9px;
  transition:.18s ease;
}
.nav a:hover,.nav a.active{background:#0878ed}
.menu-btn{
  display:none;
  margin-left:auto;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.14);
  color:#fff;
  border-radius:9px;
  font-size:23px;
  line-height:1;
  padding:9px 12px;
  cursor:pointer;
}

main{
  width:100%;
  margin:0;
  padding:0;
  background:linear-gradient(100deg,#061653 0%,#073bb2 48%,#087edc 74%,#061756 100%);
}

/* DESKTOP: banner horizontal ocupa 100% da largura sem estourar a tela */
.hero{
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
  background:#061653;
}
.hero-wrap{
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
}
.hero-picture{
  display:block;
  width:100%;
  margin:0;
  padding:0;
}
.hero-art{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  margin:0;
  padding:0;
  border:0;
  object-fit:contain;
  object-position:center top;
}

/* Só aparece no celular */
.mobile-extra{
  display:none;
}

/* Rodapé discreto, no mesmo azul */
.footer{
  margin:0;
  padding:15px 18px;
  text-align:center;
  color:rgba(255,255,255,.78);
  background:#061653;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:13px;
}
.footer strong{color:#fff}
.footer img{display:none}

/* TABLET / CELULAR */
@media(max-width:900px){
  .header{
    position:sticky;
    top:0;
  }
  .header-inner{
    width:calc(100% - 24px);
    min-height:72px;
    padding:7px 0;
    gap:8px;
    flex-wrap:wrap;
  }
  .brand img{
    width:118px;
    max-height:58px;
  }
  .menu-btn{display:block}
  .nav{
    display:none;
    width:100%;
    padding:7px 0 10px;
    flex-direction:column;
    align-items:stretch;
    gap:3px;
  }
  .nav.open{display:flex}
  .nav a{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    font-size:15px;
  }
  .hero{
    background:#061653;
  }
  .hero-wrap{
    width:100%;
    max-width:100%;
  }
  .hero-picture{
    width:100%;
  }
  .hero-art{
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:contain;
    object-position:center top;
  }
  .mobile-extra{
    display:block;
    width:100%;
    margin:0;
    padding:0;
    background:#061653;
  }
  .mobile-extra img{
    display:block;
    width:100%;
    height:auto;
    margin:0;
    padding:0;
  }
  .footer{
    padding:12px 14px;
    font-size:12px;
  }
}

@media(max-width:560px){
  .header-inner{width:calc(100% - 18px)}
  .brand img{width:104px}
  .menu-btn{font-size:21px;padding:8px 11px}
}

/* Desktop grande: impede qualquer crop/zoom do banner */
@media(min-width:901px){
  .hero-art{
    width:100%;
    height:auto;
    min-height:0;
    max-height:none;
    object-fit:contain;
  }
}


/* CONTATO */
.contact-page{
  min-height:calc(100vh - 130px);
  padding:55px 20px 70px;
  background:linear-gradient(110deg,#061653 0%,#073bb2 48%,#087edc 72%,#061653 100%);
}
.contact-shell{
  width:min(1100px,100%);
  margin:0 auto;
}
.contact-heading{
  text-align:center;
  margin:0 0 34px;
}
.contact-heading h1{
  margin:0 0 10px;
  font-size:clamp(30px,4vw,48px);
  color:#fff;
}
.contact-heading p{
  margin:0 auto;
  max-width:720px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.5;
}
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.75fr);
  gap:26px;
  align-items:stretch;
}
.contact-card{
  background:#fff;
  color:#071957;
  border-radius:18px;
  padding:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}
.contact-card h2{
  margin:0 0 22px;
  font-size:25px;
}
.contact-form{
  display:grid;
  gap:16px;
}
.form-group label{
  display:block;
  margin:0 0 7px;
  font-weight:700;
  font-size:14px;
}
.form-group input,
.form-group textarea{
  width:100%;
  border:1px solid #cfdaf0;
  border-radius:10px;
  padding:13px 14px;
  font:inherit;
  color:#071957;
  background:#fff;
  outline:none;
}
.form-group input:focus,
.form-group textarea:focus{
  border-color:#0878ed;
  box-shadow:0 0 0 3px rgba(8,120,237,.12);
}
.form-group textarea{
  min-height:160px;
  resize:vertical;
}
.contact-submit{
  border:0;
  border-radius:10px;
  padding:14px 18px;
  background:#0878ed;
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}
.contact-submit:hover{filter:brightness(1.06)}
.contact-side{
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  background:rgba(5,24,87,.86);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}
.contact-side h2{color:#fff}
.contact-side p{
  margin:0 0 24px;
  line-height:1.55;
  color:rgba(255,255,255,.88);
}
.whatsapp-button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:15px 18px;
  border-radius:11px;
  background:#25D366;
  color:#fff;
  font-size:17px;
  font-weight:800;
}
.whatsapp-icon{
  width:25px;
  height:25px;
  flex:0 0 25px;
  fill:currentColor;
}
.contact-phone{
  margin-top:13px !important;
  font-size:17px;
  font-weight:700;
  color:#fff !important;
}
.form-alert{
  margin:0 0 18px;
  padding:13px 15px;
  border-radius:10px;
  font-weight:700;
  line-height:1.4;
}
.form-alert.success{
  background:#e7f8ee;
  color:#126b37;
}
.form-alert.error{
  background:#fff0f0;
  color:#9d2525;
}
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
@media(max-width:800px){
  .contact-page{padding:35px 14px 50px}
  .contact-heading{margin-bottom:25px}
  .contact-heading p{font-size:16px}
  .contact-grid{grid-template-columns:1fr}
  .contact-card{padding:22px 18px;border-radius:14px}
  .contact-side{padding:28px 20px}
}
