*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f5fbff;
  color:#1d2939;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.header{
  width:100%;
  background:white;
  border-bottom:1px solid #dbe9ff;
  position:sticky;
  top:0;
  z-index:999;
}

.nav{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:#1d7ff2;
  font-size:28px;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#355070;
  font-weight:600;
  transition:0.3s;
}

nav a:hover{
  color:#1d7ff2;
}

/* nav dos serviços */

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: white;
  min-width: 230px;

  border-radius: 14px;
  padding: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  display: none;
  flex-direction: column;
  gap: 10px;

  z-index: 999;
}

.dropdown-menu a {
  padding: 12px;
  border-radius: 10px;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #f2f7ff;
  color: #2563eb;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* HERO */

.hero{
  padding:2px 6px;
  background:linear-gradient(to bottom, #ffffff, #f7fbff);
  overflow:hidden;
}

.hero-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.hero-image{
  flex:1;
  min-width:240px;
  display:flex;
  justify-content:center;
}

.hero-image img{
  width:100%;
  max-width:400px;
  border-radius:14px;
  object-fit:cover;
}

.orcamento-box{
  flex:1;
  max-width:430px;
  min-width:250px;
  background:#ffffff;
  border:1px solid rgba(56,189,248,0.10);
  border-radius:14px;
  padding:10px;
  box-shadow:0 4px 14px rgba(15,23,42,0.03);
}

.mini-tag{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(56,189,248,0.10);
  color:#0ea5e9;
  font-size:0.58rem;
  font-weight:700;
  margin-bottom:6px;
}

.orcamento-box h2{
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  margin-bottom:6px;
  color:#0f172a;
  font-weight:800;
}

.orcamento-box h2 span{
  color:#38bdf8;
}

.orcamento-box p{
  color:#64748b;
  line-height:1.3;
  font-size:0.75rem;
  margin-bottom:8px;
}

.orcamento-box form{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.orcamento-box input,
.orcamento-box select,
.orcamento-box textarea{
  width:100%;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(148,163,184,0.18);
  background:#f8fbff;
  font-size:0.78rem;
  color:#0f172a;
  outline:none;
  font-family:inherit;
}

.orcamento-box textarea{
  min-height:38px;
  resize:none;
}

.orcamento-box button{
  border:none;
  padding:8px;
  border-radius:8px;
  background:linear-gradient(to right, #38bdf8, #0ea5e9);
  color:#ffffff;
  font-size:0.78rem;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:900px){

  .hero-content{
    flex-direction:column;
  }

  .hero-image img{
    max-width:100%;
  }

}


/* BENEFITS */

.benefits{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#1d7ff2;
  font-weight:bold;
  font-size:14px;
}

.section-title h2{
  font-size:42px;
  margin-top:15px;
  color:#12304a;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:white;
  padding:35px;
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card h3{
  margin-bottom:15px;
  color:#1d7ff2;
}

.card p{
  line-height:1.7;
  color:#5c6f82;
}
/* fale consultor */

.orcamento-box{
    width: 360px;
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.tag-box{
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.orcamento-box h2{
    font-size: 32px;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 18px;
}

.orcamento-box p{
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 28px;
}

.orcamento-box input,
.orcamento-box textarea{
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.orcamento-box input:focus,
.orcamento-box textarea:focus{
    border-color: #60a5fa;
}

.orcamento-box textarea{
    height: 120px;
    resize: none;
}

.orcamento-box button{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #14a14b, #38f888);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.orcamento-box button:hover{
    transform: translateY(-2px);
    opacity: 0.95;
}

/* CTA */

.cta{
  padding:100px 0;
}

.cta-content{
  background:linear-gradient(135deg,#1d7ff2,#6ec6ff);
  border-radius:30px;
  padding:70px 40px;
  text-align:center;
  color:white;
}

.cta-content h2{
  font-size:42px;
  margin-bottom:20px;
}

.cta-content p{
  font-size:18px;
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
  line-height:1.7;
}

/* RESPONSIVO */

@media(max-width:900px){

  .hero-text h1{
    font-size:42px;
  }

  .hero-content{
    flex-direction:column;
  }

  nav{
    display:none;
  }

}

/* imagem */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-image {
  width: 55%;
}

.hero-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  display: block;
}

/* sessao copy */
.institutional-section{
  padding:100px 20px;
  background:linear-gradient(to bottom, #ffffff, #f8fbff);
  color:#0f172a;
  position:relative;
  overflow:hidden;
}

.institutional-section::before{
  content:"";
  position:absolute;
  left:-180px;
  top:-120px;
  width:420px;
  height:420px;
  background:rgba(56,189,248,0.08);
  border-radius:50%;
  filter:blur(80px);
}

.container{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.section-header{
  max-width:760px;
  margin:0 auto 70px;
  text-align:center;
}

.tag{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(56,189,248,0.12);
  color:#0ea5e9;
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:22px;
}

.section-header h2{
  font-size:clamp(2.3rem, 5vw, 4.1rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:22px;
  color:#0f172a;
}

.section-header h2 span{
  color:#38bdf8;
}

.section-header p{
  color:#64748b;
  font-size:1.1rem;
  line-height:1.8;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:26px;
}

.benefit-card{
  background:#ffffff;
  border:1px solid rgba(56,189,248,0.12);
  border-radius:26px;
  padding:36px;
  position:relative;
  overflow:hidden;
  transition:0.35s ease;
  box-shadow:0 10px 35px rgba(15,23,42,0.04);
}

.benefit-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(to right, #38bdf8, #0ea5e9);
}

.benefit-card:hover{
  transform:translateY(-8px);
  border-color:rgba(14,165,233,0.25);
  box-shadow:0 20px 45px rgba(14,165,233,0.12);
}

.icon{
  width:68px;
  height:68px;
  border-radius:20px;
  background:rgba(56,189,248,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  margin-bottom:24px;
}

.benefit-card h3{
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:15px;
  color:#0f172a;
}

.benefit-card p{
  color:#64748b;
  line-height:1.8;
  font-size:1rem;
}

.section-footer{
  margin-top:75px;
  text-align:center;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:17px 36px;
  border-radius:16px;
  background:linear-gradient(to right, #38bdf8, #0ea5e9);
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
  transition:0.3s ease;
  box-shadow:0 12px 30px rgba(14,165,233,0.25);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(14,165,233,0.35);
}

.mini-info{
  margin-top:18px;
  color:#64748b;
  font-size:0.95rem;
}

@media(max-width:768px){

  .institutional-section{
    padding:80px 20px;
  }

  .section-header{
    margin-bottom:50px;
  }

  .section-header h2{
    font-size:2.5rem;
  }

  .benefit-card{
    padding:30px;
  }

}

/* faq */
.faq-section{
  padding:100px 20px;
  background:linear-gradient(to bottom, #ffffff, #f8fbff);
  position:relative;
  overflow:hidden;
}

.faq-section::before{
  content:"";
  position:absolute;
  top:-180px;
  left:-180px;
  width:420px;
  height:420px;
  background:rgba(56,189,248,0.08);
  border-radius:50%;
  filter:blur(90px);
}

.container{
  max-width:1100px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.section-header{
  text-align:center;
  max-width:760px;
  margin:0 auto 70px;
}

.tag{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(56,189,248,0.12);
  color:#0ea5e9;
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:22px;
}

.section-header h2{
  font-size:clamp(2.2rem, 5vw, 4rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:22px;
  color:#0f172a;
}

.section-header h2 span{
  color:#38bdf8;
}

.section-header p{
  color:#64748b;
  font-size:1.1rem;
  line-height:1.8;
}

.faq-container{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  background:#ffffff;
  border:1px solid rgba(56,189,248,0.12);
  border-radius:22px;
  overflow:hidden;
  transition:0.3s ease;
  box-shadow:0 10px 30px rgba(15,23,42,0.04);
}

.faq-item:hover{
  transform:translateY(-3px);
  border-color:rgba(14,165,233,0.25);
  box-shadow:0 18px 40px rgba(14,165,233,0.10);
}

.faq-question{
  width:100%;
  padding:28px 30px;
  background:none;
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
  font-size:1.08rem;
  font-weight:600;
  color:#0f172a;
  text-align:left;
}

.faq-question span{
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(56,189,248,0.12);
  color:#0ea5e9;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  flex-shrink:0;
  transition:0.3s ease;
}

.faq-item:hover .faq-question span{
  background:#0ea5e9;
  color:#ffffff;
}

.faq-answer{
  padding:0 30px 30px;
}

.faq-answer p{
  color:#64748b;
  line-height:1.8;
  font-size:1rem;
}

@media(max-width:768px){

  .faq-section{
    padding:80px 20px;
  }

  .section-header{
    margin-bottom:50px;
  }

  .section-header h2{
    font-size:2.5rem;
  }

  .faq-question{
    padding:24px;
    font-size:1rem;
  }

  .faq-answer{
    padding:0 24px 24px;
  }

}


/* sobre we */

.sobre {
  padding: 80px 0;
  background: #fffdfd;
  color: #e2e8f0;
}

.sobre .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000000;
}

.sobre-texto p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #000000;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #28c041;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #0ea5e9;
}

.sobre-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-logo img {
  max-width: 350px;
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
}

@media (max-width: 768px) {
  .sobre .container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-logo {
    margin-top: 30px;
  }
}

/* rodape */ 

.footer {
  background: #ffffff;
  color: #0f172a;
  padding: 60px 0 20px 0;
  border-top: 3px solid #38bdf8;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO E DESCRIÇÃO */
.footer-brand img {
  width: 100px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

/* TÍTULOS */
.footer h4 {
  margin-bottom: 15px;
  color: #38bdf8;
  font-size: 16px;
}

/* LINKS */
.footer a {
  display: block;
  text-decoration: none;
  color: #334155;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #38bdf8;
}

/* CONTATO */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #475569;
}

/* BOTÃO WHATSAPP */
.btn-footer {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #38bdf8;
  color: #ffffff !important;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}

.btn-footer:hover {
  background: #0ea5e9;
}

/* RODAPÉ FINAL */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #64748b;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer a {
    margin-bottom: 10px;
  }
}

/* BOTAO WPP */
.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 40px;

    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;

    border-radius: 50%;

    box-shadow: 0 0 10px rgba(0,0,0,0.4);

    z-index: 1000;
}

.whatsapp-button img {
    width: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    transition: 0.3s;
}