/*
Theme Name: Telo Advogados Associados
Author: Gabriel Chaves
Description: Tema WordPress de propriedade exclusiva à Telo Advogados Associados.
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  height: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

body {
  background-color: #1e1e21 !important;
  color: #e0e0e0;
}

#page-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000, #3b3d49);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading-screen img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.mouse-icon {
  width: 25px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  animation: scrollAnimation 1.5s infinite ease-in-out;
}

@keyframes scrollAnimation {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 30px;
    opacity: 0.5;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}

.fade-out {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.telo-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #3b3d49 0%, #1e1e21 10%);
  padding: 10px 20px;
  color: white;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#main-content {
  padding-top: 80px;
}

.menu-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: 20px;
  margin-top: 15px;
}

.menu-logo img {
  max-height: 50px;
  width: auto;
}

.custom-logo {
  max-height: 40px;
  width: auto;
  height: auto;
}

.menu-toggle {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: none;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 10px;
}
.menu-toggle span:nth-child(3) {
  top: 20px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.telo-menu-list-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.telo-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.telo-menu-list a {
  color: white;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  padding: 5px 0;
}

.telo-menu-list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #a6a6a7;
  bottom: 0;
  left: 50%;
  transition: width 0.3s ease, left 0.3s ease;
}

.telo-menu-list a:hover::after,
.telo-menu-list a.active::after {
  width: 100%;
  left: 0;
  background: #0d6dc0;
}

.telo-button-desktop {
  background-color: #252525;
  color: white;
  padding: 10px 40px;
  border-radius: 15px 0 15px 0;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: italic;
  border: 2px solid white;
  margin-left: auto;
  margin-right: 30px;
}

.telo-button-mobile {
  display: none;
}

.hero-image {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.telo-about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e21;
  color: white;
  padding: 50px 50px;
}

.telo-about-container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 60px;
}

.telo-about-image img {
  width: 100%;
  max-width: 435px;
  border-radius: 20px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
}

.telo-about-content {
  flex: 1;
  text-align: justify;
}

.telo-about-content h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: "Manrope", serif;
}

.telo-about-content h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 5px 0 8px;
  font-family: "Manrope", serif;
  letter-spacing: 0px;
  word-spacing: -2px;
}

.telo-about-content h3::before {
  content: " ";
  margin-right: -2px;
}

.telo-about-content h3::after {
  content: " ";
  margin-left: -2px;
}

.telo-about-content h4 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 5px 0 25px;
  font-family: "Manrope", serif;
}

.telo-about-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 25px;
  letter-spacing: -2%;
  font-family: "Manrope", serif;
  font-weight: 400;
}

.telo-about-content p strong {
  color: #ffffff;
  font-weight: 700;
}

.telo-about-button {
  display: inline-block;
  background-color: #252525;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  padding: 15px 50px;
  border-radius: 15px 0;
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid white;
  text-align: center;
}

.telo-areas-section {
  background-color: #1e1e21;
  color: white;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.telo-areas-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
  font-family: "Cormorant Garamond", serif;
}

.telo-areas-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 950px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.telo-area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(20% - 50px);
}

.telo-area-item img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.telo-area-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.telo-area-item p {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbbbbb;
  font-family: "Manrope", serif;
  margin-top: -5px;
}

.telo-advogados-section {
  color: white;
  text-align: center;
  padding: 20px 20px;
  background-image: url("./assets/fundo2.png") !important;
}

.telo-advogados-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  font-family: "Cormorant Garamond", serif;
}

.telo-advogados-grid {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  background: #fff !important;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.telo-advogado-item {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 5px solid #19191b;
  color: #000;
  text-align: center;
}

.telo-advogado-item:last-child {
  border-right: none;
}

.telo-advogado-item img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  display: block;
  object-position: 50% 13%;
}

.telo-advogado-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.telo-advogado-info h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: -7px;
  font-family: "Manrope", serif;
}

.telo-advogado-info p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
  font-family: "Manrope", serif;
}

.telo-advogado-info a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.telo-advogado-info a:hover img {
  transform: scale(1.1);
}

.telo-blog-section {
  background-color: #1e1e21;
  color: white;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.telo-blog-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
}

.telo-blog-container h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
}

.telo-blog-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.telo-blog-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
  width: max-content;
}

.blog-item {
  background-color: white;
  color: black;
  border-radius: 15px 0px 15px 0px;
  padding: 30px;
  width: 500px;
  text-align: left;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

.blog-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-category {
  font-weight: bold;
  color: #007bff;
  font-size: 1rem;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
}

.blog-date {
  font-size: 0.9rem;
  color: #1e1e21;
  font-family: "Montserrat", serif;
}

.blog-author {
  font-size: 0.9rem;
  color: #777;
  font-family: "Montserrat", serif;
}

.blog-item h3 {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Montserrat", serif;
  color: #1e1e21;
}

.blog-item p {
  font-size: 1rem;
  color: #1e1e21;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Montserrat", serif;
}

.blog-button {
  display: inline-block;
  align-self: flex-start;
  margin-top: 1rem;
  background-color: #1e1e21 !important;
  color: white;
  font-size: 15px;
  padding: 12px 35px;
  border-radius: 15px 0px 15px 0px !important;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Montserrat", serif;
  font-weight: 400;
}

.telo-blog-controls {
  position: absolute;
  bottom: -40px;
  right: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.telo-blog-controls button {
  background: white;
  color: black;
  font-size: 1.5rem;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.telo-blog-controls button:hover {
  background-color: #3b3d49;
  color: white;
}

.telo-contact-content h2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
  color: white;
}

.telo-contact-content h2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
  color: white;
}

.form-container {
  max-width: 1250px;
  margin: 60px auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}

.contact-info {
  position: relative;
  width: 30%;
  background: #181818;
  color: #fff;
  margin: 20px;
  border-radius: 10px;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 30px;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.contact-info > * {
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Montserrat", serif;
}

.contact-info .subtitle {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 100px;
  font-family: "Montserrat", serif;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.info-item i {
  color: white;
  font-size: 20px;
}

.info-item a {
  text-decoration: none;
}

.info-item span {
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat", serif;
}

.social-icons {
  margin-top: auto;
}

.social-icons a i {
  font-size: 40px;
  transition: transform 0.3s;
}

.contact-form {
  flex: 1;
  background: #f9f9f9;
  border-radius: 10px;
  margin: 20px;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: "Montserrat", serif;
}

.contact-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .col {
  flex: 1;
}

.contact-form .form-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

.contact-form .checkbox-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 16px;
  color: #333;
  padding: 8px 0;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
  outline: none;
}

.contact-form .checkbox-group .wpcf7-list-item-label {
  color: #333;
  font-size: 12px;
}

.contact-form .checkbox-group label {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.contact-form .checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  transform: translateY(2px);
  accent-color: #000;
}

.contact-form input[type="submit"] {
  background: #1e1e21;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 15px 0 15px 0;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: auto;
  align-self: flex-end;
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  border-top: 7px solid #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-left {
  width: 30%;
  margin-right: 70px;
}

.footer-logo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 10px;
  text-align: justify;
  font-family: "Manrope", serif;
}

.footer-compliance {
  font-size: 12px;
  margin-top: 10px;
  color: #777;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.footer-compliance a {
  text-decoration: underline !important;
  color: #777;
  font-weight: bold;
}

.footer-center {
  width: 25%;
  margin-right: 20px;
}

.footer-center h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Manrope", serif;
  font-weight: 600;
}

.footer-center p {
  font-size: 14px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-family: "Manrope", serif;
}

.footer-center a {
  text-decoration: none !important;
  color: white !important;
}

.footer-center p i {
  margin-right: 15px;
  font-size: 24px;
}

.footer-right {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-right-content {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-right-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-right-content p {
  font-size: 14px;
  margin: 5px 0 15px 0;
  color: #ddd;
}

.footer-buttons {
  display: flex;
  gap: 10px;
}

.footer-button {
  background-color: #d9d9d9;
  color: #1e1e21;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s;
  font-family: "Manrope", serif;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-buttons .footer-button:nth-child(3) {
  flex-basis: 100%;
  text-align: left;
  margin-left: 0;
}

.footer-button i {
  font-size: 20px;
  color: #1e1e21;
}

.footer-aurum-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-aurum-img {
  width: 150px;
  height: auto;
}

@media (max-width: 1024px) and (orientation: landscape) {
  .telo-menu {
    padding: 15px 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .menu-logo img {
    max-height: 45px;
  }

  .telo-menu-list-container {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #1e1e21;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    gap: 10px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    border-radius: 2px;
  }

  .telo-menu-list-container .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  .telo-menu-list-container.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }

  .telo-menu-list a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    text-align: center;
  }

  .telo-button-desktop {
    display: none;
  }

  .telo-button-mobile {
    display: block;
    background-color: #252525;
    color: white;
    padding: 10px 20px;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 16px;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid white;
  }

  .footer-aurum-img {
    width: 150px;
    height: auto;
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  html,
  body,
  #page-container {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    margin-right: 10px;
  }
  .telo-menu-list-container {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #1e1e21;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 999;
    width: 100%;
    margin-top: 15px;
  }
  .telo-menu-list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
  }
  .telo-menu-list-container.active {
    display: flex;
  }
  .telo-button-desktop {
    display: none;
  }
  .telo-button-mobile {
    display: block;
    background-color: #252525;
    color: white;
    padding: 10px 20px;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    font-family: Georgia, serif;
    font-size: 16px;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid white;
  }

  .hero-image {
    width: 100%;
    height: 50vh;
  }

  .telo-about-section {
    padding: 30px 20px !important;
    text-align: left;
  }

  .telo-about-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    width: 90% !important;
    margin: 0 auto !important;
  }

  .telo-about-image {
    width: 100%;
    max-width: 350px;
    height: 180px;
    overflow: hidden;
    margin-bottom: -15px !important;
    position: relative;
  }

  .telo-about-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 15px 0 !important;
  }

  .telo-about-content {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: left !important;
  }

  .telo-about-content h2,
  .telo-about-content h3,
  .telo-about-content h4 {
    margin: 5px 0 !important;
    text-align: left !important;
  }

  .telo-about-content p {
    margin-bottom: 10px !important;
    line-height: 1.4;
    text-align: justify !important;
    font-size: 18px;
  }

  .telo-about-button {
    display: inline-block;
    margin-top: 15px !important;
    text-align: center !important;
  }

  .telo-areas-grid::after {
    content: "";
    display: none;
  }

  .telo-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    justify-content: flex-start;
  }

  .telo-area-item {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 15px;
  }

  .telo-area-item:nth-last-child(1):nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
  }

  .telo-advogados-section {
    background-image: none !important;
  }

  .telo-advogados-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    background: none !important;
    box-shadow: none !important;
  }

  .telo-advogado-item {
    background: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .telo-advogado-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .telo-advogado-info {
    width: 100%;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    color: #333;
  }

  .telo-advogado-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #000;
  }

  .telo-advogado-info p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    margin-bottom: 20px;
    margin-top: unset;
  }

  .telo-advogado-info a img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
  }

  .telo-advogado-info a:hover img {
    transform: scale(1.1);
  }

  .telo-blog-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .telo-blog-slider {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .blog-item {
    flex: 0 0 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .blog-item h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 8px;
  }

  .blog-item p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .blog-item-meta {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 5px;
  }

  .form-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 90% !important;
    margin: 20px auto !important;
    padding: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .contact-info,
  .contact-form {
    width: 85% !important;
    max-width: 550px !important;
    margin-bottom: 20px !important;
    box-sizing: border-box;
  }
  .contact-info {
    background: #181818;
    border-radius: 10px;
    padding: 20px !important;
  }
  .contact-form {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px !important;
  }
  .contact-form .row {
    display: flex;
    flex-direction: column !important;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-form .col {
    width: 100% !important;
    box-sizing: border-box;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .contact-form .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    gap: 10px;
  }
  .contact-form input[type="submit"] {
    margin: 0 auto;
    display: block;
  }

  .footer-description,
  .footer-compliance {
    width: 80% !important;
    margin: 10px auto !important;
    text-align: justify !important;
  }

  .footer-container {
    width: 80% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .footer-left h3,
  .footer-center h3,
  .footer-right h3,
  .footer-right-content h3 {
    text-align: left !important;
    margin: 15px 0 !important;
    padding: 0;
  }

  .footer-left p,
  .footer-center p,
  .footer-right p,
  .footer-right-content p {
    text-align: left !important;
    margin: 8px 0 !important;
    padding: 0 !important;
  }

  .footer-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-button {
    padding: 12px 25px;
    font-size: 16px;
    min-width: 90px;
  }

  .footer-aurum-img {
    margin: 20px 0px 0px 0px !important;
    max-width: 80%;
    height: auto;
    display: block;
  }
}
