:root{
  --blue:#0B3A6E;
  --green:#11C56C;
  --text:#0f172a;
  --muted:#475569;
  --bg:#000000;
  --card:#ffffff;
  --fine:#000000;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 18px 40px rgba(2,6,23,.08);
  --radius: 18px;
}

*{box-sizing:border-box}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

section,
main[id]{
  scroll-margin-top: 120px;
}

section,
main[id]{
  scroll-margin-top:120px;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #f6fbff 0%, #ffffff 25%, #ffffff 100%);
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1200px, 92vw);
  margin:0 auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}

.brand img{
  height:80px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav a{
  font-size: 18px;
  font-weight:600;
  letter-spacing:.2px;
  color:var(--blue);
  transition: color .18s ease, transform .18s ease;
}

.nav a:hover{
  color:var(--green);
  transform: translateY(-1px);
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  font-weight:700;
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 12px 22px rgba(11,58,110,.18);
  transition: transform .18s ease, filter .18s ease;
}

.cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hamburger{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--blue);
  margin:4px 0;
  border-radius:2px;
}

@media (max-width: 860px){
  .nav{ display:none; }

  .hamburger{ display:inline-block; }

  .nav.open{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    display:flex;
    flex-direction:column;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:14px 0 18px;
  }

  .nav.open a{
    padding:10px 4vw;
    width:100%;
  }

  .nav.open .cta{
    width:calc(92vw);
    margin:8px auto 0;
  }
}

/* Hero */
.hero{
  position:relative;
  padding:90px 0;
  min-height:85vh;
  display:flex;
  align-items:center;
  background:#f6fbff;
  overflow:hidden;
}

.hero-bg-right{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.00) 0%,
      rgba(11, 58, 110, 0.06) 22%,
      rgba(11, 58, 110, 0.16) 42%,
      rgba(11, 58, 110, 0.30) 60%,
      rgba(11, 58, 110, 0.46) 78%,
      rgba(11, 58, 110, 0.62) 100%
    ),
    url('../img/hero-right-hd-novo.png') center center / cover no-repeat;
  z-index:1;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 26%, rgba(0,0,0,0.82) 48%, rgba(0,0,0,0.40) 70%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 26%, rgba(0,0,0,0.82) 48%, rgba(0,0,0,0.40) 70%, rgba(0,0,0,0) 100%);
}


.hero-content{
  position:relative;
  z-index:2;
  max-width:62%;
}

.hero .section{
  padding:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.85);
  color:var(--blue);
  font-weight:600;
  font-size:13px;
}

.hero h1{
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.02;
  margin:16px 0 12px;
}

.hero h1,
.hero .lead,
.hero p{
  color: #1b2f42;
  text-shadow: 0 1px 3px rgba(255,255,255,0.30);
}

.hero p{
  font-size:22px;
  line-height:1.4;
  color:var(--muted);
  margin:0 0 18px;
  max-width:100%;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:10px 0 18px;
}

.hero .lead-top-intro{
  font-size: 24px;
  line-height: 1.5;
  color: #000000 !important;
}

/* #sobre .lead-top-intro1{
  font-size: 19px;
  line-height: 1.5;
  color: var(--bg);
  margin: 0 0 40px;
  max-width: 120ch;
} */

.section-intro{
  font-size: 19px;
  line-height: 1.5;
  color: var(--bg);
  margin: 0 0 40px;
  max-width: 120ch;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:700;
  background:#fff;
  transition: transform .18s ease, border-color .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(17,197,108,.35);
}

.btn.primary{
  background:var(--blue);
  color:#fff;
  border-color:rgba(11,58,110,.25);
}

.btn.primary:hover{
  border-color:rgba(17,197,108,.35);
}

/* Cards */
.quick-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 25px rgba(2,6,23,.05);
  padding:14px;
}

.card h3{
  margin:0 0 6px;
  font-size:25px;
  text-align: center;
}

.card p{
  margin:0;
  color:var(--muted);
}

.small{
  font-size:19px;
  color:var(--muted);
  line-height:1.55;
  text-align: center;
}

/* Sections */
.section{
  padding:40px 0;
}

.section h2{
  font-size: clamp(28px, 3.2vw, 46px);
  margin:0 0 10px;
}

.section .lead{
  color:var(--bg);
  margin:0 0 40px;
  max-width:120ch;
}

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

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

.service-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.bullet{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--green);
  margin-top:7px;
  flex:0 0 auto;
}

/* Contact */
.contact-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}

.info{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.kv{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.kv strong{
  font-size:13px;
  color:var(--blue);
}

.kv span{
  color:var(--muted);
}


/* WhatsApp floating */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:999px;
  background:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 35px rgba(17,197,108,.25);
  z-index:60;
  transition: transform .18s ease, filter .18s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.wa-float svg{
  width:28px;
  height:28px;
  fill:#fff;
}

/* Responsive */
@media (max-width: 900px){
  .hero{
    padding:70px 0;
    min-height:auto;
  }

  .hero-image{
    order:-1;
    text-align:center;
  }

  .hero-content{
    max-width:100%;
  }

  .hero h1{
    font-size:32px;
    line-height:1.12;
  }

  .hero p,
  .hero .lead{
    font-size:19px;
    line-height:1.5;
  }
  
  .hero-bg-right{
  background:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.00) 0%,
      rgba(11, 58, 110, 0.03) 22%,
      rgba(11, 58, 110, 0.09) 42%,
      rgba(11, 58, 110, 0.18) 60%,
      rgba(11, 58, 110, 0.20) 78%,
	  rgba(11, 58, 110, 0.30) 100%
    ),
    url('../img/hero-right-hd-novo.png') center center / cover no-repeat;
}

  .section h2{
    font-size:26px;
  }

  .grid-3,
  .grid-2,
  .contact-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    width:min(1200px, 94vw);
  }

  .header-inner{
    padding:16px 0;
  }

  .brand img{
    height:58px;
  }

  .hero{
    padding:48px 0;
  }

  .hero h1{
    font-size:28px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .quick-cards{
    grid-template-columns:1fr;
  }

  .section{
    padding:32px 0;
  }

  .section h2{
    font-size:24px;
  }

  .small{
    font-size:14px;
  }

  .wa-float{
    right:14px;
    bottom:14px;
    width:52px;
    height:52px;
  }

  .wa-float svg{
    width:24px;
    height:24px;
  }
}


/* Contact form */
.contact-form-wrap{
  margin-top:16px;
}

.contact-form-card h3{
  margin:0 0 8px;
}

.contact-form{
  margin-top:18px;
}

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

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}

.form-field label{
  font-size:14px;
  font-weight:700;
  color:var(--blue);
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  padding:14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:rgba(11,58,110,.35);
  box-shadow:0 0 0 4px rgba(11,58,110,.08);
}

.form-field textarea{
  resize:vertical;
  min-height:130px;
}

.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}

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

@media (max-width: 640px){
  .form-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .form-actions .btn{
    width:100%;
  }
}


/* Advantages section */
.advantages-section{
  margin-top: 48px;
  width: 100%;
}

.advantages-header{
  width: 100%;
  text-align: center;
  margin: 0 0 34px;
}

.advantages-header h2{
  margin: 0 auto;
  max-width: 1080px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.18;
  font-weight: 800;
  color: #2a2a2a;
  text-align: center;
}

.advantages-header h2 span{
  color: #49b9df;
}

.advantages-divider{
  width: 165px;
  height: 5px;
  border-radius: 999px;
  background: #49b9df;
  margin: 22px auto 0;
}

.advantages-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.advantage-item{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.advantage-item img{
  width: 102px;
  height: 102px;
  object-fit: contain;
  margin-bottom: 16px;
}

.advantage-item h3{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
  color: #1f2937;
}

.advantage-item p{
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: #667085;
  max-width: 260px;
}

@media (max-width: 1100px){
  .advantages-header h2{
    max-width: 900px;
    font-size: clamp(28px, 3.2vw, 46px);
  }

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

@media (max-width: 640px){
  .advantages-section{
    margin-top: 38px;
  }

  .advantages-header{
    margin-bottom: 26px;
  }

  .advantages-header h2{
    max-width: 100%;
    font-size: 32px;
  }

  .advantages-divider{
    width: 120px;
    height: 4px;
    margin-top: 18px;
  }

  .advantages-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .advantage-item img{
    width: 88px;
    height: 88px;
  }

  .advantage-item p{
    max-width: 100%;
  }
}


.captcha-wrap{
  margin: 8px 0 16px;
}

.captcha-help{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 640px){
  .captcha-wrap{
    overflow-x: auto;
  }
}


/* Services showcase */
.services-section .lead{
  margin-bottom: 28px;
}

.services-list{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.service-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:24px;
  background:#fff;
  /*border:1px solid var(--border);
  border-radius:24px; */
  box-shadow: var(--shadow);
  overflow:hidden;
}

.service-row--reverse .service-copy{
  order:2;
}

.service-row--reverse .service-media{
  order:1;
}

.service-copy{
  padding:32px;
}

.service-kicker{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(11,58,110,.08);
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  }

.service-copy h3{
  margin:0 0 10px;
  font-size:28px;
  color:var(--blue);
  text-align: center;
}

.service-copy .small{
  font-size:19px;
  line-height:1.5;
}

.service-media{
  min-height:320px;
  height:100%;
}

.service-media img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
}

.services-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

@media (max-width: 900px){
  .service-row,
  .service-row--reverse{
    grid-template-columns: 1fr;
  }

  .service-row--reverse .service-copy,
  .service-row--reverse .service-media{
    order: initial;
  }

  .service-media,
  .service-media img{
    min-height:240px;
  }

  .service-copy{
    padding:22px;
  }

  .service-copy h3{
    font-size:24px;
  }

  .service-copy .small{
    font-size:16px;
  }
}

@media (max-width: 640px){
  .services-cta{
    flex-direction:column;
    align-items:stretch;
  }

  .services-cta .btn{
    width:100%;
  }

  .service-copy{
    padding:18px;
  }

  .service-copy h3{
    font-size:22px;
  }

  .service-media,
  .service-media img{
    min-height:210px;
  }
}




/* Trabalhe Conosco */
.work-section{
  background: linear-gradient(180deg, rgba(11,58,110,.03) 0%, rgba(255,255,255,0) 100%);
}

.work-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:22px;
  align-items:start;
}

.work-card{
  height:100%;
}

.work-card h3{
  margin-bottom:12px;
}

.work-list{
  margin:18px 0 0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.7;
}

.work-list li + li{
  margin-top:8px;
}

.work-form{
  margin-top:18px;
}

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





.footer{
  padding: 22px 0 36px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-content{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-brand{
  color:var(--muted);
  margin-bottom:2px;
}

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

.footer-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  line-height:1.5;
}

.footer-item-address,
.footer-contact .footer-item:nth-child(3){
  grid-column: 1 / -1;
}

.footer-icon{
  width:20px;
  height:20px;
  flex:0 0 20px;
  color:var(--blue);
}

.footer-icon svg{
  width:100%;
  height:100%;
  fill:currentColor;
  display:block;
}

.footer-item-whatsapp .footer-icon{
  color:#25D366;
}

@media (max-width: 640px){
  .footer-contact{
    grid-template-columns: 1fr;
    justify-content:start;
  }

  .footer-item-address,
  .footer-contact .footer-item:nth-child(3){
    grid-column: auto;
  }
}
/*.footer-content{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-brand{
  color:var(--muted);
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid rgba(15, 23, 42, 0.08);
}*/