body {
      background-color: white;
      color: #582924;
      font-size: 1.3rem;
      overflow-x: hidden;
    }

    .titulo-decorado {
      position: relative;
      background-color: white;
      height: auto;
      min-height: 140px;
      display: flex;
      align-items: center;
      padding: 20px 0;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-bottom: 40px;
    }

    .titulo-content {
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 140px;
      width: 100%;
    }

    .grafico-v {
      position: relative;
      width: 150px;
      height: 100%;
      flex-shrink: 0;
    }

    .linha1, .linha2 {
      position: absolute;
      width: 100%;
      height: 100%;
      clip-path: polygon(0 0, 100% 100%, 50% 100%, 0 50%);
    }

    .linha1 {
      background-color: #BFA48F;
      z-index: 1;
    }

    .linha2 {
      background-color: #582924;
      transform: translateX(20px);
      z-index: 2;
      clip-path: polygon(0 100%, 100% 0, 100% 50%, 50% 100%);
    }

    .faixa-texto {
      background-color: #582924;
      color: #C8AD97;
      padding: 30px 40px;
      z-index: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      text-align: right;
      min-height: 100px;
    }

    .faixa-texto h2 {
      font-size: 1.8rem;
      /*font-weight: bold;
      font-style: italic; */
      margin: 0;
      text-align: right;
      line-height: 1.2;
    }

    .equipe-img {
      width: 100%;
      border-radius: 10px;
      height: auto;
      max-width: 100%;
      object-fit: cover;
    }

    .area-item {
      background: linear-gradient(135deg, #BFA48F 0%, #C8AD97 100%);
      color: #582924;
      padding: 25px;
      border-radius: 50px;
      margin-bottom: 0;
      font-size: 1.4rem;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
      height: 80px;
    }

    .area-item::before {
      content: "";
      background-image: url('assets/direito-empresarial.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      width: 64px;
      height: 64px;
      margin-right: 18px;
      display: inline-block;
      flex-shrink: 0;
    }

    .area-item[data-area="civil"]::before {
      background-image: url('assets/direito-civil.png');
    }

    .area-item[data-area="consumidor"]::before {
      background-image: url('assets/direito-consumidor.png');
    }

    .area-item[data-area="familia"]::before {
      background-image: url('assets/direito-familia.png');
    }

    .area-item[data-area="administrativo"]::before {
      background-image: url('assets/direito-administrativo.png');
    }

    .area-item[data-area="empresarial"]::before {
      background-image: url('assets/direito-empresarial.png');
    }

    .area-item[data-area="trabalho"]::before {
      background-image: url('assets/direito-trabalho.png');
    }

    .area-item[data-area="digital"]::before {
      background-image: url('assets/direito-digital.png');
    }

    footer {
      background-color: #BFA48F;
      color: #582924;
    }
	
	
	.titulo-decorado {
  position: relative;
  background-color: white;
  height: auto;
  min-height: 140px;
  display: flex;
  align-items: center;
  padding: 20px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 40px;
}

.titulo-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 140px;
  width: 100%;
}

.vs-decorativos {
  position: absolute;
  top: 20px;
  left: 10%;
  width: 140px;
  height: 200px;
}

.v-claro, .v-escuro {
  position: absolute;
  width: 60px;
  height: 280px;
  transform: rotate(-45deg) skewY(45deg);
  bottom: 0;
}

.v-invertido-claro, .v-invertido-escuro {
  position: absolute;
  width: 60px;
  height: 280px;
  transform: rotate(45deg) skewY(-45deg);
  bottom: 0;
}

.v-claro {
  background-color: #C8AD97;
  left: 100px;
  z-index: 1;
}

.v-escuro {
  background-color: #582924;
  left: 30px;
  z-index: 2;
}

.v-invertido-claro {
  background-color: #C8AD97;
  left: 298px;
  z-index: 1;
}

.v-invertido-escuro {
  background-color: #582924;
  left: 228px;
  z-index: 2;
}

.faixa-texto {
  background-color: #582924;
  color: #C8AD97;
  padding: 10px 40px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: right;
  min-height: 100px;
}

.faixa-texto h2 {
  font-size: 1.8rem;
  /* font-weight: bold;
  font-style: italic; */
  margin: 0;
  text-align: right;
  line-height: 1.2;
  margin-left: 90px;
}

/* Home Section Styles */
.home-section {
  height: 100vh;
  background-image: url('assets/home.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 41, 36, 0.3);
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.company-name {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  color: #C8AD97;
  font-family: 'Georgia', serif;
  display: none;
}

.company-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Home Bottom Banner */
.home-banner {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #C8AD97;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 3;
}

.banner-text {
  color: #582924;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  /*letter-spacing: 1px;*/
  flex: 1;
}

.banner-logo {
  height: 60px;
  width: auto;
  margin-left: 20px;
}

/* Second Home Banner */
.home-banner-secondary {
  position: absolute;
  bottom: calc(10% - 60px);
  right: 0;
  width: 65%;
  height: 60px;
  background-color: #582924;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  z-index: 3;
}

.banner-secondary-text {
  color: #C8AD97;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Team Section Background */
.team-section {
    
  background: rgba(88, 41, 36, 0.3);
  background-image: url('assets/equipe.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  position: relative;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 41, 36, 0.3);
  z-index: 1;
}

.team-content {
  position: relative;
  z-index: 2;
}

/* Team Section Styles */
.team-member {
  align-items: stretch !important;
  position: relative;
  z-index: 2;
}

.team-member-text {
  background-color: rgba(88, 41, 36, 0.8);
  padding: 30px;
  border-radius: 10px;
  color: #C8AD97;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 550px;
}

.team-member-image {
  display: flex;
  align-items: center;
}

.equipe-img {
  width: 100%;
  border-radius: 10px;
  height: 550px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.team-member-text h4 {
  color: #C8AD97;
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}

.team-member:nth-child(even) .oab-info:nth-child(even) .team-member-text h4 {
  text-align: right;
}

.team-member-text .oab-info {
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
}

.team-member-text .curriculum {
  color: white;
  line-height: 1.6;
  text-align: justify;
}

/* About Section Styles */
.about-section {
  background-image: url('assets/escritorio.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 41, 36, 0.3);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-text {
  background-color: rgba(88, 41, 36, 0.8);
  padding: 90px;
  border-radius: 10px;
  color: white;
  line-height: 1.8;
  text-align: justify;
}

/* Areas Section Styles */
.areas-section {
  background-image: url('assets/areas.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.areas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 41, 36, 0.3);
  z-index: 1;
}

.areas-content {
  position: relative;
  z-index: 2;
}

.area-text-box {
  background-color: rgba(88, 41, 36, 0.9);
  padding: 30px;
  border-radius: 0px;
  color: white;
  margin-bottom: 30px;
  margin-top: -10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
}

.area-text-box p {
  color: white;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 0;
}

/* Contact Section Styles */
.contact-section {
  background-image: url('assets/contato.jpg');
  background-size: cover;
  background-position: center -100%;
  background-attachment: fixed;
  position: relative;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 41, 36, 0.3);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-form-box {
  background-color: rgba(88, 41, 36, 0.8);
  padding: 90px;
  border-radius: 10px;
  color: white;
}

.contact-form-box .form-label {
  color: #C8AD97;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-form-box .form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1rem;
}

.contact-form-box .btn-dark {
  background-color: #C8AD97;
  border-color: #C8AD97;
  color: #582924;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 30px;
}

.contact-form-box .btn-dark:hover {
  background-color: #BFA48F;
  border-color: #BFA48F;
}

/* General font size increases */
p {
  line-height: 1.7;
}

h4 {
  font-size: 1.4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Hide decorative elements on smaller screens */
  .vs-decorativos {
    display: none;
  }
  
  .titulo-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .faixa-texto {
    padding: 20px;
    text-align: center;
    justify-content: center;
  }
  
  .faixa-texto h2 {
    text-align: center;
    font-size: 1.3rem;
  }
  
  /* Mobile banner adjustments */
  .home-banner {
    height: 60px;
    padding: 0 20px;
  }
  
  .banner-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  .banner-logo {
    height: 40px;
  }
  
  .home-banner-secondary {
    height: 50px;
    padding: 0 20px;
    bottom: calc(10% - 60px);
    width: 80%;
  }
  
  .banner-secondary-text {
    font-size: 0.8rem;
  }
  
  /* Mobile text boxes */
  .about-text,
  .contact-form-box,
  .area-text-box {
    padding: 20px;
    margin: 15px 0;
  }
  
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Mobile area items - centralizar tudo */
  .area-item {
    font-size: 1.2rem;
    padding: 20px;
    text-align: center;
    height: 70px;
    min-height: 70px;
    border-radius: 35px;
    margin: 0 auto 0 auto;
  }
  
  .area-item::before {
    width: 56px;
    height: 56px;
    margin-right: 15px;
  }
  
  .area-text-box {
    padding: 25px;
    min-height: 180px;
    margin: -5px auto 30px auto;
    width: 87%;
  }
  
  .area-text-box p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Mobile contact form */
  .contact-form-box .form-label {
    font-size: 1rem;
  }
  
  .contact-form-box .btn-dark {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}

/* Team Section Mobile Layout */
@media (max-width: 767.98px) {
  .team-member {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(88, 41, 36, 0.9);
  }
  
  /* Force text to appear first on mobile */
  .team-member .team-member-text {
    order: 1 !important;
    width: 100%;
    padding: 25px;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
    min-height: auto;
    background-color: rgba(88, 41, 36, 0.95);
  }
  
  .team-member .team-member-image {
    order: 2 !important;
    width: 100%;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  
  .team-member .equipe-img {
    height: auto;
    min-height: 350px;
    max-height: 400px;
    border-radius: 15px;
    object-fit: cover;
    aspect-ratio: 4/5;
  }
  
  .team-member-text h4 {
    font-size: 1.6rem !important;
    text-align: center !important;
    margin-bottom: 8px;
    color: #C8AD97;
  }
  
  .team-member-text .oab-info {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 18px;
    color: white;
    font-weight: bold;
  }
  
  .team-member-text .curriculum {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
    color: white;
  }
  
  /* Override any order classes on mobile */
  .team-member .col-md-7.order-md-1,
  .team-member .col-md-5.order-md-2 {
    order: unset !important;
  }
  
  .team-member .team-member-text {
    order: 1 !important;
  }
  
  .team-member .team-member-image {
    order: 2 !important;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  body {
    font-size: 1rem;
  }
  
  .faixa-texto h2 {
    font-size: 1.1rem;
  }
  
  .banner-text {
    font-size: 0.8rem;
  }
  
  .banner-logo {
    height: 35px;
  }
  
  .home-banner-secondary {
    width: 85%;
    height: 40px;
    bottom: calc(10% - 50px);
  }
  
  .banner-secondary-text {
    font-size: 0.7rem;
  }
  
  .about-text,
  .contact-form-box,
  .area-text-box {
    padding: 15px;
  }
  
  .team-member {
    margin-bottom: 35px;
    border-radius: 18px;
  }
  
  .team-member .team-member-text {
    padding: 20px !important;
    border-radius: 18px 18px 0 0;
  }
  
  .team-member .team-member-image {
    padding: 0 15px 15px 15px;
  }
  
  .team-member .equipe-img {
    min-height: 320px;
    max-height: 350px;
    border-radius: 12px;
    aspect-ratio: 4/5;
  }
  
  .team-member-text h4 {
    font-size: 1.4rem !important;
  }
  
  .team-member-text .oab-info {
    font-size: 1rem;
  }
  
  .team-member-text .curriculum {
    font-size: 1rem;
  }
}

/* Add spacing to section content */
.about-content,
.team-content,
.areas-content,
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}