* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    padding-top: 20vh;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255,255,255);
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20vh;
    padding: 0 5%;
    box-shadow: 0 2px 5px rgba(51, 51, 51, 0.1);
}

.logo {
    height: 15vh;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 6vw;
    color: #333;
    cursor: pointer;
    z-index: 1001;
  }

nav ul {
    list-style: none;
    display: flex;
    gap: 3vw;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.3vw;
    position: relative;
    padding: 1vh 0;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 0.3vh;
    background-color: #652728;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #652728;
    transform: scale(1.05);
}

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 70vh;
    flex-direction: column;
    background: url('images/negocios.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 39, 40, 0.4);
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    font-family: 'Times New Roman', Times, serif;
    font-size: 4vw;
    text-align: center;
}

.hero p {
    position: relative;
    z-index: 2;
    font-size: 2vw;
    text-align: center;
    font-style: italic;
}

section {
    padding: 2vh 10%;
}

.formulario-contato {
    background-color: #fff;
    padding: 10vh 10% 5vh 10%;
    text-align: center;
}

.formulario-wrapper {
    display: flex;
    gap: 3vw;
    justify-content: center;
    flex-wrap: wrap;
}

.contato-info {
    flex: 1;
    max-width: 40vw;
    text-align: center;
}

.contato-info .logo {
    height: 20vh;
    margin-bottom: 4vh;
}

.contato-info h2 {
    font-size: 2.5vw;
    font-weight: 600;
    color: #652728;
    margin-bottom: 2vh;
}

.contato-info .oab {
    font-size: 1.8vw;
    color: #333;
    margin-bottom: 4vh;
}

.contato-items {
    display: flex;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1vw;
    max-width: 27vw;
    text-align: left;
}

.contato-item i {
    font-size: 2vw;
    color: #652728;
}

.contato-item p {
    font-size: 1.2vw;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.contato-item p strong {
    color: #652728;
}

.contato-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-item a:hover {
    color: #4a1d1e;
}

.formulario {
    flex: 1;
    max-width: 40vw;
    border: 2px solid #652728;
    background-color: #652728;
    border-radius: 1vw;
    padding: 2vw;
    text-align: left;
}

.formulario h2 {
    font-size: 2.5vw;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1vh;
    font-family: 'Times New Roman', Times, serif;
}

.formulario p {
    font-size: 1.2vw;
    color: #fff;
    margin-bottom: 3vh;
}

.form-group {
    margin-bottom: 2vh;
}

.form-group label {
    display: block;
    font-size: 1.2vw;
    color: #fff;
    margin-bottom: 0.5vh;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1vh 1vw;
    font-size: 1.1vw;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #fff;
    outline: none;
}

.form-group textarea {
    height: 15vh;
    resize: vertical;
}

.formulario button {
    background-color: #fff;
    color: #652728;
    border: none;
    padding: 1.5vh 3vw;
    font-size: 1.2vw;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-bottom: 1vh;
}

.formulario button:hover {
    background-color: #4a1d1e;
    color: #fff;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: center;
    gap: 0.5vw;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 1.5vh 2vw;
    font-size: 1.2vw;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    margin: 0 auto 5vh auto;
}

.whatsapp-btn i {
    font-size: 1.5vw;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

.video-contato {
    background-color: #fff;
    padding: 5vh 10%;
    text-align: center;
}

.video-contato h3 {
    font-size: 2vw;
    color: #652728;
    margin-bottom: 1vh;
    font-family: 'Times New Roman', Times, serif;
}

.video-contato p {
    font-size: 1.3vw;
    color: #333;
    margin-bottom: 2vh;
}

.video-contato iframe {
    width: 100%;
    height: 40vw;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(51, 51, 51, 0.1);
}

footer {
    text-align: center;
    padding: 4vh;
    background-color: #652728;
    color: #fff;
}

footer p {
    font-size: 1.5vw;
}

.mencao {
    font-size: 1.2vw; opacity: 0.6;
  }

  @media (max-width: 768px) {
    body {
      padding-top: 10vh;
      background-color: #fff;
      color: #333;
    }
  
    header {
        height: auto;
        padding: 10px 5%;
        justify-content: space-between;
        align-items: center;
    }
  
    .logo {
      height: 10vh;
    }
  
    .menu-toggle {
      display: block;
      font-size: 8vw;
    }
  
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(101, 39, 40, 0.95);
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1000;
    }
  
    .nav-menu.active {
      transform: translateX(0);
    }
  
    nav ul {
      flex-direction: column;
      gap: 8vh;
      text-align: center;
    }
  
    nav ul li a {
      font-size: 7vw;
      color: #fff;
      padding: 2vh 0;
    }
  
    nav ul li a::after {
      background-color: #fff;
    }
  
    nav ul li a:hover {
      color: #fff;
      transform: scale(1.1);
    }
  
    .hero {
      height: 60vh;
    }
  
    .hero h1 {
      font-size: 9vw;
    }
  
    .hero p {
      font-size: 4.5vw;
    }
  
    section {
      padding: 5vw;
    }
  
    .formulario-contato {
      padding: 5vh 5%;
    }
  
    .formulario-wrapper {
      flex-direction: column-reverse;
      gap: 8vw;
    }
  
    .contato-info {
      max-width: 100%;
      text-align: center;
    }
  
    .contato-info .logo {
      height: 15vh;
      margin-bottom: 5vw;
    }
  
    .contato-info h2 {
      font-size: 6vw;
      margin-bottom: 3vw;
    }
  
    .contato-info .oab {
      font-size: 5vw;
      margin-bottom: 5vw;
    }
  
    .whatsapp-btn {
      width: 70%;
      padding: 3vw 5vw;
      font-size: 4vw;
      margin: 5vw auto;
      border-radius: 2vw;
    }
  
    .whatsapp-btn i {
      font-size: 5vw;
    }
  
    .contato-items {
      flex-direction: column;
      gap: 5vw;
      align-items: center;
    }
  
    .contato-item {
      max-width: 100%;
      flex-direction: row;
      align-items: center;
      gap: 3vw;
      text-align: left;
    }
  
    .contato-item i {
      font-size: 6vw;
    }
  
    .contato-item p {
      font-size: 3.5vw;
      line-height: 1.6;
    }
  
    .formulario {
      max-width: 100%;
      padding: 5vw;
      border-radius: 2vw;
    }
  
    .formulario h2 {
      font-size: 6vw;
      margin-bottom: 3vw;
    }
  
    .formulario p {
      font-size: 3.5vw;
      margin-bottom: 5vw;
    }
  
    .form-group {
      margin-bottom: 4vw;
    }
  
    .form-group label {
      font-size: 3.5vw;
      margin-bottom: 1vw;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 3vw;
      font-size: 3.5vw;
      border-radius: 1vw;
    }
  
    .form-group textarea {
      height: 30vw;
    }
  
    .formulario button {
      padding: 3vw 5vw;
      font-size: 4vw;
      border-radius: 1vw;
      margin-bottom: 3vw;
    }
  
    .video-contato {
      padding: 5vh 5%;
    }
  
    .video-contato h3 {
      font-size: 5vw;
      margin-bottom: 3vw;
    }
  
    .video-contato p {
      font-size: 3.5vw;
      margin-bottom: 5vw;
    }
  
    .video-contato iframe {
      height: 60vw; /* Mantém proporção 16:9 aproximada */
      border-radius: 2vw;
    }
  
    footer {
      padding: 5vh 5%;
    }
  
    footer p {
      font-size: 4vw;
    }
  
    .mencao {
      font-size: 3vw;
    }
  }