*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:#071f42;
  background:#fff;
}

.topbar{
  height:86px;
  background:#062b55;
  display:flex;
  align-items:center;
  padding:0 22px;
  gap:52px;
  position:relative;
  z-index:5;
}

.logo-box{
  width:285px;
  height:105px;
  background:#fff;
  border-radius:0 0 8px 8px;
  display:flex;
  align-items:center;
  gap:13px;
  padding:18px 22px;
  box-shadow:0 4px 18px rgba(0,0,0,.12);
  align-self:flex-start;
}

.logo-symbol{
  width:68px;
  height:64px;
  position:relative;
}

.logo-symbol:before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:22px;
  height:48px;
  background:#e0a11d;
  border-radius:4px 4px 0 0;
}

.logo-symbol:after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:22px;
  height:48px;
  background:#062b55;
  border-radius:4px 4px 0 0;
}

.left-shape{
  position:absolute;
  left:16px;
  top:4px;
  width:24px;
  height:54px;
  background:#062b55;
  border-radius:20px;
  transform:rotate(-42deg);
}

.right-shape{
  position:absolute;
  right:16px;
  top:4px;
  width:24px;
  height:54px;
  background:#e0a11d;
  border-radius:20px;
  transform:rotate(42deg);
}

.logo-text strong{
  display:block;
  font-size:42px;
  line-height:37px;
  color:#062b55;
  letter-spacing:-2px;
}

.logo-text span{
  display:block;
  font-size:24px;
  font-weight:900;
  color:#062b55;
  line-height:24px;
}

.menu{
  display:flex;
  align-items:center;
  gap:38px;
  height:100%;
  margin-left:auto;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  height:100%;
  display:flex;
  align-items:center;
  position:relative;
}

.menu a.active:after{
  content:"";
  position:absolute;
  bottom:22px;
  left:0;
  width:52px;
  height:3px;
  background:#d89b25;
}

.top-button{
  background:#d89b25;
  color:#fff;
  padding:16px 24px;
  border-radius:8px;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  box-shadow:0 4px 8px rgba(0,0,0,.18);
}

.hero{
  height:590px;
  position:relative;
  background:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.88) 43%,rgba(255,255,255,.45) 67%,rgba(255,255,255,.1) 100%),
    url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80') center/cover;
  overflow:hidden;
}

.hero-content{
  padding:95px 0 0 70px;
  width:680px;
}

.hero h1{
  font-size:45px;
  line-height:1.12;
  color:#062b55;
  font-weight:900;
  letter-spacing:-1px;
  margin-bottom:18px;
}

.hero p{
  font-size:18px;
  line-height:1.55;
  color:#071f42;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:31px;
}

.btn-blue{
  background:#062b55;
  color:#fff;
  padding:15px 27px;
  border-radius:8px;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  line-height:1.15;
  box-shadow:0 6px 15px rgba(0,0,0,.18);
}

.btn-gold{
  background:#d89b25;
  color:#fff;
  padding:19px 30px;
  border-radius:8px;
  text-decoration:none;
  font-size:17px;
  font-weight:900;
  box-shadow:0 6px 15px rgba(0,0,0,.13);
}

.social-line{
  display:flex;
  align-items:center;
  gap:13px;
  font-size:21px;
  color:#062b55;
}

.instagram-icon{
  font-size:34px;
  font-weight:bold;
}

.wall-logo{
  position:absolute;
  right:72px;
  top:150px;
  width:315px;
  height:145px;
  background:rgba(255,255,255,.75);
  border-radius:2px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:17px;
  box-shadow:0 8px 22px rgba(0,0,0,.13);
}

.wall-symbol{
  width:85px;
  height:80px;
  position:relative;
}

.wall-symbol:before{
  content:"";
  position:absolute;
  left:4px;
  bottom:0;
  width:27px;
  height:60px;
  background:#e0a11d;
  border-radius:5px 5px 0 0;
}

.wall-symbol:after{
  content:"";
  position:absolute;
  right:4px;
  bottom:0;
  width:27px;
  height:60px;
  background:#062b55;
  border-radius:5px 5px 0 0;
}

.wall-symbol span:first-child{
  position:absolute;
  left:22px;
  top:3px;
  width:29px;
  height:70px;
  background:#062b55;
  border-radius:22px;
  transform:rotate(-42deg);
}

.wall-symbol span:last-child{
  position:absolute;
  right:22px;
  top:3px;
  width:29px;
  height:70px;
  background:#e0a11d;
  border-radius:22px;
  transform:rotate(42deg);
}

.wall-logo strong{
  display:block;
  font-size:55px;
  line-height:48px;
  color:#062b55;
  letter-spacing:-2px;
}

.wall-logo small{
  display:block;
  font-size:28px;
  font-weight:900;
  color:#062b55;
}

.seguros{
  background:#fafafa;
  padding:22px 38px 27px;
}

.seguros h2,
.vantagens h2{
  text-align:center;
  font-size:28px;
  color:#062b55;
  font-weight:900;
  margin-bottom:15px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
}

.seguros h2 span,
.vantagens h2 span{
  display:block;
  width:110px;
  height:2px;
  background:#d89b25;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.card{
  height:238px;
  border:1.5px solid #d89b25;
  border-radius:7px;
  padding:28px 18px 20px;
  position:relative;
  overflow:hidden;
  background:#fff;
}

.card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#fff 0 42%,rgba(255,255,255,.78) 57%,rgba(255,255,255,.05) 100%);
  z-index:0;
}

.card.auto{
  background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80') right center/cover;
}

.card.residencial{
  background:url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=80') right center/cover;
}

.card.empresarial{
  background:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80') right center/cover;
}

.card.vida{
  background:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80') right center/cover;
}

.card.saude{
  background:url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=900&q=80') right center/cover;
}

.card.condominio{
  background:url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=900&q=80') right center/cover;
}

.card .icon,
.card h3,
.card p{
  position:relative;
  z-index:1;
}

.icon{
  width:58px;
  height:58px;
  background:#d89b25;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:12px;
}

.card h3{
  color:#062b55;
  font-size:18px;
  line-height:1.08;
  font-weight:900;
  margin-left:80px;
  margin-top:-55px;
  margin-bottom:28px;
}

.card p{
  width:190px;
  font-size:15px;
  line-height:1.43;
  color:#071f42;
}

.vantagens{
  background:#062b55;
  padding:25px 54px 31px;
  color:#fff;
}

.vantagens h2{
  color:#fff;
  margin-bottom:24px;
}

.vantagens-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.vantagens-grid > div{
  min-height:130px;
  border-right:2px solid #d89b25;
  padding:0 25px;
  display:grid;
  grid-template-columns:55px 1fr;
  column-gap:14px;
}

.vantagens-grid > div:last-child{
  border-right:0;
}

.v-icon{
  grid-row:1/3;
  color:#d89b25;
  font-size:36px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.vantagens h3{
  color:#d89b25;
  font-size:17px;
  line-height:1.18;
  font-weight:900;
  margin-bottom:11px;
}

.vantagens p{
  font-size:15px;
  line-height:1.5;
  color:#fff;
}

.cta{
  background:#f2f2f2;
  min-height:164px;
  display:grid;
  grid-template-columns:1.1fr .65fr .55fr;
  align-items:center;
  padding:26px 70px;
  gap:38px;
}

.cta-text h2{
  color:#062b55;
  font-size:28px;
  line-height:1.12;
  font-weight:900;
  margin-bottom:12px;
}

.cta-text p{
  font-size:17px;
  line-height:1.35;
}

.cta-contact{
  border-left:1.5px solid #d89b25;
  padding-left:40px;
}

.instagram-row{
  display:flex;
  gap:14px;
  align-items:center;
}

.instagram-row span{
  width:56px;
  height:56px;
  background:#d89b25;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:35px;
}

.instagram-row small{
  display:block;
  color:#062b55;
  font-size:14px;
}

.instagram-row strong{
  color:#062b55;
  font-size:23px;
}

.cta-button{
  justify-self:end;
  background:#062b55;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  padding:22px 32px;
  font-size:19px;
  line-height:1.1;
  font-weight:900;
  box-shadow:0 8px 17px rgba(0,0,0,.22);
}

footer{
  min-height:154px;
  background:#062b55;
  color:#fff;
  display:grid;
  grid-template-columns:260px 1fr 320px 260px;
  gap:30px;
  align-items:center;
  padding:28px 70px 22px;
}

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

.logo-symbol.mini{
  width:65px;
  height:60px;
  transform:scale(.82);
}

.footer-logo strong{
  display:block;
  font-size:38px;
  line-height:34px;
}

.footer-logo span{
  font-size:21px;
  font-weight:900;
}

footer p{
  font-size:14px;
  line-height:1.45;
}

.links{
  border-left:1.5px solid #d89b25;
  padding-left:28px;
}

.links h4,
.fale h4{
  font-size:16px;
  margin-bottom:12px;
}

.links div{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px 28px;
}

.links a{
  font-size:14px;
  color:#fff;
}

.fale{
  border-left:1.5px solid #d89b25;
  padding-left:28px;
}

.fale p{
  font-size:18px;
  font-weight:900;
}

@media(max-width:1000px){
  .topbar{
    height:auto;
    flex-wrap:wrap;
    padding:10px 18px 18px;
    gap:16px;
  }

  .logo-box{
    width:240px;
    height:90px;
  }

  .menu{
    display:none;
  }

  .top-button{
    margin-left:auto;
  }

  .hero{
    height:auto;
  }

  .hero-content{
    padding:80px 28px 45px;
    width:auto;
  }

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

  .wall-logo{
    display:none;
  }

  .cards,
  .vantagens-grid,
  .cta,
  footer{
    grid-template-columns:1fr;
  }

  .seguros,
  .vantagens,
  .cta,
  footer{
    padding-left:22px;
    padding-right:22px;
  }

  .card h3{
    margin-left:74px;
  }

  .vantagens-grid > div,
  .cta-contact,
  .links,
  .fale{
    border-right:0;
    border-left:0;
    padding-left:0;
    margin-bottom:18px;
  }

  .cta-button{
    justify-self:start;
  }

  .seguros h2 span,
  .vantagens h2 span{
    width:42px;
  }
}
