    :root {
      --primaria: #79490A;
      --secundaria: #F5E6D3;
      --dourado: #C9A24F;
      --texto: #2C2C2C;
    }

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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--secundaria);
      color: var(--texto);
      line-height: 1.6;
    }

    header {
      background-color: var(--primaria);
      color: white;
      padding: 10px 60px 10px 60px;
      display: flex;
      position: fixed;
      width: 100%;
      z-index: 3;
      justify-content: space-between;
      align-items:baseline;
      top: 0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    header img {
      width: 250px;
    }

    header h1 {
      font-size: 2.5em;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    header p {
      font-size: 1.2em;
      color: var(--dourado);
    }

    nav {
      background-color: var(--primaria);
      border-radius: 5px;
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 15px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    nav a:hover {
      color: var(--dourado);
    }

    .whatsapp-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #25D366; /* Cor oficial do WhatsApp */
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      padding: 10px 16px;
      border-radius: 8px;
      transition: background 0.3s ease, transform 0.2s ease;
      margin-right: 10px;
    }

    .whatsapp-button:hover {
      background-color: #1ebe5d;
      transform: scale(1.05);
    }

    .whatsapp-icon {
      width: 22px;
      height: 22px;
    }

    section {
      padding-top: 50px;
    }

    h2 {
      text-align: center;
      color: var(--primaria);
      margin-bottom: 40px;
      font-size: 2em;
    }

    /* --- Seção Apresentação --- */
    .intro {
      background: linear-gradient(rgba(97, 56, 27, 0.9), rgba(193, 149, 117, 0.8)), 
                  url('images/es2.png') center;
      color: white;
      text-align: left;
      padding: 160px 60px;
      margin-top: 116px;
    }

    .intro h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
    }

    .intro p {
      font-size: 1.3em;
      max-width: 700px;
      color: var(--secundaria);
    }

    /* --- Carrossel Advogados --- */

    .carrossel {
      display: flex;
      gap: 60px;
      padding-bottom: 20px;
      overflow: hidden;
      position: relative;
    }

    .carrossel-inner {
      display: flex;
      gap: 50px;
      animation: deslizar 80s linear infinite;
    }

    @keyframes deslizar {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }

    .advogado {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      flex: 0 0 300px;
      scroll-snap-align: center;
      text-align: center;
      padding: 20px;
    }

    .advogado img {
      width: 400px;
      height: 350px;
      border-radius: 1%;
      object-fit: cover;
      object-position: center;
      margin-bottom: 15px;
      border: 3px solid var(--dourado);
    }

    .advogado h3 {
      color: var(--primaria);
      margin-bottom: 8px;
    }

    .advogado p {
      font-size: 0.95em;
      color: #555;
    }

    /* --- Áreas de atuação --- */

    #atuacao {
      text-align: center;
    }

    #atuacao .introd {
      color: var(--primaria);
      font-size: 1.2em;
      line-height: 1.6em;
      padding-bottom: 30px;
      margin: auto;
      max-width: 1000px;
    }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .tab {
      background: white;
      border: 2px solid var(--dourado);
      color: var(--primaria);
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 16px;
      width: 180px;
    }

    .tab.active, .tab:hover {
      background: var(--dourado);
      color: white;
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      justify-items: center;
      margin: 0px 20vw;
    }

    .card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      max-width: 300px;
      text-align: center;
      transition: transform 0.3s ease;
      border-left: 3px solid var(--dourado);
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .icon {
      font-size: 40px;
      color: var(--dourado);
      background: rgba(255,215,0,0.1);
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
    }

    .card h3 {
      color: var(--primaria);
      margin-bottom: 10px;
    }

    .card p {
      color: #555;
      font-size: 0.95em;
      line-height: 1.5em;
    }




    /* --- Depoimentos --- */
    .depoimentos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr));
      gap: 40px;
      margin: 0 20vw;
      position: relative;
    }

    .depoimento {
      background: white;
      padding: 25px;
      border-radius: 10px;
      border-top: 4px solid var(--dourado);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      font-style: italic;
      display: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      cursor: pointer;
    }

    .depoimento.ativo {
      opacity: 1;
      display: inline;
      visibility: visible;
      transform: translateY(0);
    }

    .depoimento span {
      display: block;
      margin-top: 10px;
      color: var(--primaria);
      font-weight: bold;
      text-align: right;
    }

    .avaliacao {
      display: flex;
      justify-content: space-between;
    }

    .estrelas {
      color: var(--dourado); /* usa sua variável dourado */
      font-size: 18px;
      letter-spacing: 2px;
      margin-top: 10px;
      text-align: right;
    }

    /* --- Contato --- */

    .contato {
      text-align: center;
      padding: 60px 20px 0px 20px;
      margin: 0px 10vw;
    }

    .contato .descricao {
      color: var(--primaria);
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .contato-canais {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
      margin-bottom: 40px;
    }

    .contato-item {
      padding: 25px;
      border-radius: 12px;
      border: solid 1px var(--dourado);
      box-shadow: 0 4px 10px rgba(111, 116, 51, 0.25);
      width: 100%;
      max-width: 380px;
    }

    .contato-item h3 {
      color: var(--primaria);
      margin-bottom: 10px;
    }

    .contato-item p {
      margin: 6px 0;
      color: #444;
      font-size: 1em;
    }

    .contato a {
      color: var(--dourado);
      font-weight: bold;
      text-decoration: none;
    }

    .contato a:hover {
      text-decoration: underline;
    }

    /* --- Botões de contato --- */

    .contato-botoes {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .btn-contato {
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.1em;
      color: white  !important;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      width: 30vw;
      height: 50px;
    }

    .btn-contato img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
    }

    /* WhatsApp */
    .btn-contato.whatsapp {
      background-color: #25D366;
      box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    }

    .btn-contato.whatsapp:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(37, 211, 102, 0.35);
    }

    /* Instagram */
    .btn-contato.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      box-shadow: 0 4px 10px rgba(204, 35, 102, 0.25);
    }

    .btn-contato.instagram:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(204, 35, 102, 0.35);
    }


    footer {
      background-color: var(--primaria);
      color: white;
      text-align: center;
      padding: 20px;
    } 


    .sub {
      display: flex;
      align-items: center;
    }

    .menu-oculto {
      position: fixed;
      top: 90px;
      right: 0;
      z-index: 5;
      display: none;
      justify-content: center;
      flex-direction: column;
    }

    .menu-toggle {
      display: none;
    }

    .whatsapp-float {
      display: none;
    }

  @media (max-width: 1250px) {

    nav a {
      font-size: 14px;
    }

    header {
      padding: 10px 10px 10px 30px;
    }

  }

  @media (max-width: 1055px) {

    .intro {
      margin-top: 105px;
    }

    .depoimentos {
      grid-template-columns: repeat(auto-fit, minmax(90vw, 1fr));
      margin: 0 5vw;
    }

    header {
      align-items: center;
    }

    header nav {
      display: none;
    }

    .menu-oculto.ativo{
      display: flex;
    }

    .menu-toggle {
      display: inline;
      height: 40px;
      width: 40px;
      font-size: 20px;
      margin-left: 30px;
    }

  }

  @media (max-width: 660px) {

    .intro {
      margin-top: 80px;
    }

    header {
      height: 80px;
    }

    .logo {
      width: 30vw;
      min-width: 110px;
    }

    .menu-oculto {
      top: 70px;
    }

    .contato-botoes {
      width: 100%;
      font-size: 15px;
    }

    .contato-botoes a{
      width: 95%;
      margin-bottom: 20px;
    }

  }

  @media (max-width: 500px) {

    h2 {
      font-size: 22px ;
    }

    .whatsapp-button{
      margin: 0; 
      height: 40px;
      font-size: 12px;
    }

    header {
      padding: 10px 0px;
    }

    .menu-toggle {
      margin: 10px;
    }

    .cards {
      width: 100%;
      margin: 0px !important;
    }

    .card {
      margin: 0px 5px;
    }

    .contato-canais {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
    }

    .contato {
      padding: 60px 0px;
      margin: 0px 5px;
    }

    .contato-item {
      width: 100%;
      font-size: 15px;
    }

    .depoimentos {
      margin: 5px;
    }

    #atuacao .introd  {
      font-size: 16px;
    }

    .intro {
      text-align: left;
      padding: 20vw 20px;
      background-size: cover;
    }

    .intro h1 {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .intro p {
      font-size: 1em;
    }

    .carrossel {
      gap: 20px;
    }

    .advogado {
      padding: 10px;
    }

    .advogado img {
      width: 90vw;
      height: 80vw;
      margin-bottom: 0px;
    }

    .advogado h3 {
      color: var(--primaria);
      margin-bottom: 3px;
    }

    .advogado p {
      font-size: 0.95em;
      color: #555;
    }

    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: block;
    }

    .whatsapp-float img {
      width: 40px;
      height: 40px;
      object-fit: contain;
      display: block;  
    }
  }