@charset "UTF-8";

/* ESTILO GERAL */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
}

body {
  background-color: #CFCFCF;
  height: 100vh;
}

html{
  scroll-behavior: smooth;
}

a{
    text-decoration: none;
    font-style: normal;
    color: white;
}

/* ESTILO DO MENU MOBILE */
.btn-abrir-menu svg {
  width: 40px;
}

.btn-abrir-menu {
  display: none;
}

.menu-mobile {
  background-color: black;
  height: 1000vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0%;
  overflow: hidden;
  transition: 0.3s;
}

.menu-mobile.abrir-menu {
  width: 70%;
}

.menu-mobile.btn-abrir-menu ~ .overlay-menu {
  display: block;
}

.menu-mobile .btn-fechar {
  padding: 20px 5%;
}

.menu-mobile nav ul {
  text-align: right;
}

.menu-mobile nav ul li a {
  color: white;
  font-size: 20px;
  font-weight: 300;
  padding: 20px 21%;
  display: block;
}

.menu-mobile nav ul li a:hover {
  background-color: #C99B49;
  color: rgb(255, 255, 255);
}

.overlay-menu {
  background-color: #00000069;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

/* Header */
.header {
  height: auto;
  padding: 8%;
  background-image: url('empresario-no-escritorio.webp');
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  color: white;
  background-position: center;
}

@media (min-width: 1024px) {
  .header {
    padding: 5%;
    background-position: left;
  }
}

/* Nav */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Nav List */
.nav-list {
  display: none;
  list-style: none;
  font-size: 1.6em;
  font-weight: 600;
  gap: 27px;
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.nav-item {
  transition: transform 0.3s;
}

.nav-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Botão menu mobile */
.btn-abrir-menu {
  display: block;
}

@media (min-width: 1024px) {
  .btn-abrir-menu {
    display: none;
  }
}

.icon-menu {
  font-size: 50px;
  margin-left: 20px;
}

/* Hero Section */
.hero-section {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  width: 100%;
  height: 100%;
}

.hero-title h1 {
  font-weight: bold;
  line-height: 1.375;
  font-size: 1.7em;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.6em;
  }
}

.highlight {
  color: #C99B49;
}

.hero-description {
  font-weight: 400;
  font-size: 17px;
  width: 300px;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 21px;
    width: 700px;
  }
}

/* Botão */
.bt-especialista {
    font-size: 28px;
    padding: 19px 37px;
    gap: 10px;
    border-radius: 8px;
    background: linear-gradient(87deg, #36990F 6.82%, #081902 102.99%);
    box-shadow: 7px 9px 62.9px 0px rgba(43, 123, 12, 0.40);
    font-weight: bolder;
    font-family: 'inter';
    transition: transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    color: white;
    cursor:pointer;
}

.bt-especialista:hover{
    transform: scale(1.05);
}

@media (min-width: 1024px) {
  .button-text {
    font-size: 20px;
  }
}