/*
Theme Name: Shopping Builders
Theme URI:
Author: Shopping Builders
Author URI: https://shoppingbuilders.com/
Description: Tailor-made by Shopping Builders
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* GENERAL */
@font-face {
  font-family: Manrope;
  src: url(assets/fonts/Manrope-VariableFont_wght.ttf);
}

@font-face {
  font-family: PP Telegraf;
  src: url(assets/fonts/PPTelegraf-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: PP Telegraf;
  src: url(assets/fonts/PPTelegraf-Ultrabold.otf);
  font-weight: 800;
}


:root {
  --bg-grey: #EEECE8;
  --grey: #8F8F8F;
  --white: #FBFAF9;
  --black: #171411;
  --red: #FF3C00;
  --container-header: 1324px;
  --container: 1200px;
  --mini-container: 1083px;
  --container-video: 1256px;
}

html,
body {
  scroll-behavior: smooth;
  background-color: var(--bg-grey);
  margin: 0;
  font-smooth: antialiased;
  -moz-osx-font-smoothing: greyscale;
  overflow-x: hidden;
}

.skip-to-content-link {
  position: absolute;
  top: -40px;
  left: -100px;
  color: transparent;
  z-index: 1000;
}

.no-scroll {
  overflow: hidden;
}

.hidden {
  display: none;
}

.vanished {
  opacity: 0;
}

.faded {
  opacity: .3;
}

h1.h1 {
  font-size: 0px;
  opacity: 0;
  position: absolute;
  left: -100px;
  top: -100px;
  line-height: 0;
  background-color: transparent;
  color: transparent;
}

.screen-reader-text {
  color: transparent;
  background-color: transparent;
}

/*  HEADER  */
header.header {
  max-width: var(--container-header);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0;
}

header.header .action-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

header.header .action-side .search {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

header.header .action-side .search .searchform {
  max-width: 0px;
  overflow: hidden;
  transition: max-width .6s ease-out;
}

header.header .action-side .search.active .searchform {
  max-width: 300px;
}

header.header .action-side .search .searchform #searchsubmit {
  display: none;
}

header.header .action-side .search .searchform input[type="text"] {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  width: 15vw;
  padding: 11px 30px;
  font-family: 'Manrope', sans-serif;
}

header.header .action-side .search .searchform input[type="text"]:focus-visible {
  outline: none;
}

header.header .action-side .search #search-icon {
  position: absolute;
  left: -20px;
  top: 8px;
  transition: left .6s ease-out;
}

header.header .action-side .search.active #search-icon {
  left: 0;
}

header.header .action-side .search #search-close {
  position: absolute;
  right: 0;
}

header.header .action-side .login {
  position: relative;
}

header.header .action-side .login .user{
  background-color: transparent;
  border: none;
}

header.header .action-side .login .login-popup {
  position: absolute;
  top: 50px;
  left: 50%;
  background-color: var(--black);
  padding: 40px 16px;
  transform: translateX(-50%);
  color: var(--white);
  width: 377px;
  z-index: 999;
}

header.header .action-side .login .login-popup::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10.5px solid transparent;
  border-right: 10.5px solid transparent;
  border-bottom: 14px solid var(--black);
}

header.header .action-side .login .login-popup #login-close {
  position: absolute;
  top: 56px;
  right: 16px;
}

header.header .action-side .login .login-popup .pop-title {
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 64px;
  color: var(--white);
  margin: 0;
}

header.header .action-side .login .login-popup form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

header.header .action-side .login .login-popup form p {
  margin: 0;
}

header.header .action-side .login .login-popup form label {
  display: none;
}

header.header .action-side .login .login-popup form input[type="text"],
header.header .action-side .login .login-popup form input[type="password"],
header.header .action-side .login .login-popup form input[type="email"] {
  width: calc(100% - 35px);
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 16px;
  color: var(--grey) !important;
  padding: 10px 16px;
  background-color: var(--bg-grey) !important;
  border: none;
}

header.header .action-side .login .login-popup form .form-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.5px;
}

header.header .action-side .login .login-popup form input[type="text"]:focus-visible,
header.header .action-side .login .login-popup form input[type="password"]:focus-visible,
header.header .action-side .login .login-popup form input[type="email"]:focus-visible {
  outline: none;
}

header.header .action-side .login .login-popup form input[type="submit"] {
  position: absolute;
  right: 19px;
  bottom: 80px;
  background-color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 13px 53px 13px 32px;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 16px;
  color: var(--black);
}

header.header .action-side .login .login-popup form .login-submit::before, 
header.header .action-side .login .login-popup form .register-submit::before {
  content: '';
  position: absolute;
  right: 44px;
  bottom: 80px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/05/cornerArrowDark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  transition: all .35s ease-out;
}

header.header .action-side .login .login-popup form .login-submit:hover::before, 
header.header .action-side .login .login-popup form .register-submit:hover::before {
  transform: rotate(45deg);
  right: 42px;
  bottom: 90px;
}

header.header .action-side .login .login-popup .switch {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

header.header .action-side .login .login-popup .switch-anchor {
  text-decoration: underline;
  color: var(--white)!important;
}

header.header .action-side .menu-container {
  position: fixed;
  top: 0;
  right: -101vw;
  height: 100vh;
  width: 45vw;
  z-index: 999;
  backdrop-filter: blur(5px);
  transition: all .35s ease-out;
}

header.header .action-side .menu-container.menu-active {
  right: 0;
  width: 100vw;
}

header.header .action-side .menu-container .main-menu {
  background-color: var(--black);
  color: white;
  display: flex;
  flex-direction: column;
  width: 40vw;
  right: -45vw;
  top: 0;
  position: absolute;
  height: 100vh;
  list-style: none;
  padding-left: 64px;
  justify-content: center;
  row-gap: 32px;
  transition: all .35s ease-out;
}

header.header .action-side .menu-container.menu-active .main-menu {
  right: 0;
}

header.header .action-side .menu-container #menu-close {
  position: absolute;
  right: 64px;
  top: 10vh;
  z-index: 1;
}

header.header .action-side .menu-container .main-menu li a {
  color: var(--white);
  font-family: 'PP Telegraf';
  font-weight: 400;
  font-size: 40px;
  line-height: 64px;
  text-decoration: none;
  position: relative;
}

header.header .action-side .menu-container .main-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 80px;
  height: 0px;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transition: all .35s ease-out;
}

header.header .action-side .menu-container .main-menu li a:hover::after {
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
}

header.header .action-side .cta {
  border-radius: 2px;
  padding: 15px 32px;
  background-color: var(--black);
  color: var(--white);
  font-size: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

header.header .action-side .cta img {
  transition: all .35s ease-out;
}

header.header .action-side .cta:hover img {
  transform: rotate(45deg);
}

header.header .lang-switcher {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: calc(40vw - 64px);
}

header.header .lang-switcher a {
  font-size: 24px;
  line-height: 64px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
}

header.header .lang-switcher a.active-lang {
  color: var(--red);
}

header.header .lang-switcher .dash {
  font-size: 24px;
  line-height: 64px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  color: var(--white);
}


/* FOOTER */
footer#footer {
  background-color: var(--black);
  color: var(--white);
}

footer#footer .footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

footer#footer .footer-container .footer-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 83px;
}

footer#footer .footer-container .footer-info .col-left {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  row-gap: 62px;
}

footer#footer .footer-container .footer-info .col-left>img {
  filter: invert(1);
}

footer#footer .footer-container .footer-info .col-left .social-media {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

footer#footer .footer-container .footer-info .col-right {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  text-align: left;
}

footer#footer .footer-container .footer-info .col-right a {
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  text-decoration: none;
}

footer#footer .footer-container .footer-legal {
  border-bottom: 3px solid var(--red);
  width: 100%;
  padding-bottom: 24px;
}

footer#footer .footer-container .footer-legal .footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  column-gap: 40px;
  list-style-type: none;
  margin: 0;
}

footer#footer .footer-container .footer-legal .footer-menu li a {
  color: var(--grey);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
}

footer#footer .footer-container .copyright {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

footer#footer .footer-container .copyright .copyright-text {
  color: var(--grey);
}

footer#footer .footer-container .copyright .signature,
footer#footer .footer-container .copyright .signature a {
  color: var(--white);
  text-transform: none;
  text-decoration: none;
}

#whatsapp-floater {
  display: flex;
  background-color: var(--white);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0px 3px 6px #00000029;
  position: fixed;
  right: 24px;
  bottom: 32px;
  transition: all .35s ease-out;
  z-index: 998;
}

#whatsapp-floater:hover {
  box-shadow: 0px 3px 12px #00000029;
}


/* SECTIONS - video-homepage-section */
#video-homepage-section {
  display: grid;
  grid-template-columns: 55% 1fr;
  max-width: var(--container-video);
  column-gap: 60px;
  margin: 80px auto 160px;
}

#video-homepage-section .title h2 {
  font-family: 'PP Telegraf';
  font-weight: 800;
  font-size: 110px;
  line-height: 110px;
  color: var(--black);
  margin: 0;
}

#video-homepage-section .video {
  position: relative;
  width: min-content;
  height: fit-content;
}

#video-homepage-section .video-ask {
  border: none;
  border-radius: 2px;
  width:auto;
  min-width:415px;
}

#video-homepage-section .video::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 64px;
  width: 80px;
  height: 80px;
  background-image: url(https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/05/square.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

#video-homepage-section .video .video-redbar {
  position: absolute;
  left: -130px;
  bottom: 34px;
}

#video-homepage-section .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 610px;
  margin-left: auto;
}

#video-homepage-section .content p {
  margin: 66px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--black);
  text-align: left;
}

.cta {
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 18px;
  font-weight: 400;
  color: var(--white);
  border-radius: 2px;
  background-color: var(--black);
  padding: 10px 28px 10px 32px;
  text-decoration: none;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8px;
}

.cta img {
  transition: all .35s ease-out;
}

.cta:hover img {
  transform: rotate(45deg);
}

/* SECTIONS - slider-de-transacoes */
#slider-de-transacoes {
  position: relative;
}

#slider-de-transacoes .slider-de-transacoes-container {
  max-width: var(--container);
  margin: 80px auto;
}

#slider-de-transacoes::after {
  content: '';
  position: absolute;
  right: 0;
  top: 140px;
  width: 80px;
  height: 80px;
  background-image: url(https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/05/square.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

#slider-de-transacoes h2 {
  font-family: 'PP Telegraf';
  font-size: 110px;
  font-weight: 800;
  line-height: 110px;
  color: var(--black);
  max-width: 1010px;
}

#slider-de-transacoes .transaction-card {
  min-width: 336px;
  max-width: 336px;
  height: 383px;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  border-radius: 2px;
  background-color: var(--white);
  justify-content: space-between;
  white-space: normal;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#slider-de-transacoes .transaction-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  color: var(--black);
  margin: 0;
}

#slider-de-transacoes .transaction-card p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  color: var(--grey);
}

#slider-de-transacoes .glide__track {
  overflow: visible;
}

#slider-de-transacoes .glide__arrows {
  margin-top: 40px;
}

#slider-de-transacoes .glide__arrow {
  background-color: transparent;
  border: none;
  transition: opacity .35s ease-out;
}

#slider-de-transacoes .glide__arrow--left {
  transform: scaleX(-1);
  margin-right: 40px;
}

#slider-de-transacoes .cta {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* SECTIONS - testemunhos */
#testemunhos {
  max-width: var(--container);
  margin: 80px auto;
  position: relative;
}

#testemunhos h2 {
  font-family: 'PP Telegraf';
  font-size: 110px;
  line-height: 110px;
  color: var(--black);
  font-weight: 800;
}

#testemunhos .col-3 {
  max-width: 1034px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 16px;
}

#testemunhos .col-3 .testemunho-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

#testemunhos .col-3 .testemunho-container img {
  border-radius: 2px;
  object-fit: cover;
}

#testemunhos .col-3 .testemunho-content {
  background-color: var(--white);
  border-radius: 2px;
  width: calc(334px - 48px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;

}

#testemunhos .col-3 .testemunho-content .aspas {
  font-family: 'PP Telegraf';
  font-weight: 400;
  font-size: 80px;
  line-height: 38px;
  color: var(--black);
  margin: 0;
  position: relative;
  top: 10px;
}

#testemunhos .col-3 .testemunho-content .texto-testemunho {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  margin: 0;
}

#testemunhos .col-3 .testemunho-content .nome-testemunho {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey);
  margin: 0;
  padding-top: 20px;
  margin-top: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#testemunhos .col-3 .testemunho-content .nome-testemunho::before {
  display: block;
  content: '';
  width: 39.34px;
  height: 1px;
  background-color: var(--red);
  margin-right: 8px;
}

#servicos {
  max-width: var(--container);
  margin: 70px auto 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

#servicos .top-part {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#servicos .top-part h2 {
  font-size: 110px;
  line-height: 110px;
  margin: 0;
  text-align: left;
  color: var(--black);
  font-weight: 900;
  font-family: 'PP Telegraf', sans-serif;
}

#servicos .top-part p {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  line-height: 28px;
  color: var(--black);
  max-width: 50%;
  align-self: flex-end;
  margin: 0;
}

#servicos .bottom-part {
  align-self: flex-end;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

#servicos .bottom-part .servico {
  padding: 32px 0 32px 50px;
  border-bottom: 1px solid var(--black);
  position: relative;
  text-decoration: none;
}

#servicos .bottom-part .servico .dynamic-arrow {
  position: absolute;
  top: 40px;
  right: 37px;
  user-select: none;
  transition: all .35s ease-out;
}

#servicos .bottom-part .servico:hover .dynamic-arrow {
  transform: rotate(-45deg);
}

#servicos .bottom-part .servico .counter {
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 55px;
  color: var(--black);
  font-weight: 400;
  user-select: none;
  font-family: 'Manrope', sans-serif;
}

#servicos .bottom-part .servico h3 {
  font-size: 40px;
  line-height: 64px;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  font-weight: 400;
  margin: 0;
  user-select: none;
  position: relative;
  max-width: fit-content;
}

#servicos .bottom-part .servico h3:after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--red);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all .35s ease-out;
}

#servicos .bottom-part .servico:hover h3::after {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

#servicos .bottom-part .servico p {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  overflow-y: hidden;
  user-select: none;
  transition: all .35s ease-out;
  max-height: 0px;
  margin-top: 0;
  pointer-events: none;
  opacity: 0;
}

#servicos .bottom-part .servico:hover p {
  max-height: 150px;
  opacity: 1;
  margin-top: 38px;
  pointer-events: auto;
}

#cta-com-imagem {
  max-width: var(--container);
  margin: 200px auto 160px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}

#cta-com-imagem .col-left {
  position: relative;
  padding-left: 57px;
  padding-top: 54px;
}

#cta-com-imagem .col-left::before {
  content: '';
  background-image: url('https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/06/madreIcon.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 114px;
  height: 108px;
  position: absolute;
  left: 0;
  top: 0;
}

#cta-com-imagem .col-left::after {
  content: '';
  background-image: url('https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/05/bar.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 196.5px;
  height: 5px;
  position: absolute;
  right: -90px;
  bottom: 50px;
}

#cta-com-imagem .col-left img {
  object-fit: contain;
}

#cta-com-imagem .col-right {
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 40px;
  max-height: fit-content;
  max-width: 430px;
  margin-top: 54px;
}

#cta-com-imagem .col-right h2 {
  font-size: 64px;
  line-height: 64px;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--white);
  font-weight: 400;
  margin: 0;
  max-width: 70%;
}

#cta-com-imagem .col-right p {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  color: var(--white);
  font-weight: 400;
  margin: 0;
  max-width: 80%;
}

#cta-com-imagem .col-right a {
  background-color: var(--bg-grey);
  color: var(--black);
  align-self: flex-end;
}

#faqs {
  max-width: var(--container);
  margin: 0 auto 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#faqs h2 {
  max-width: 70%;
  margin: 0 0 80px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
  color: var(--black);
  text-align: left;
  width: 100%;
  font-size: 110px;
  line-height: 110px;
}

#faqs .faqs-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  max-width: 70%;
}

#faqs .faqs-list .faq-item {
  padding: 32px 0 32px 8px;
  position: relative;
  border-bottom: 1px solid var(--black);
}

#faqs .faqs-list .faq-item::after {
  font-size: 32px;
  line-height: 38px;
  content: '+';
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  position: absolute;
  top: 30px;
  right: 0;
  transition: all .35s ease-out;
}

#faqs .faqs-list .faq-item.active-accordion::after {
  content: '-';
}

#faqs .faqs-list .faq-item h3 {
  font-size: 32px;
  line-height: 38px;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  font-weight: 400;
  margin: 0;
  user-select: none;
}

#faqs .faqs-list .faq-item p {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  max-height: 150px;
  margin: 0;
  overflow-y: hidden;
  pointer-events: auto;
  opacity: 1;
  padding-left: 36px;
  user-select: none;
  margin-top: 32px;
  max-width: 85%;
  transition: all .35s ease-out;
}

#faqs .faqs-list .faq-item p.tucked {
  max-height: 0px;
  pointer-events: none;
  margin-top: 0px;
  opacity: 0;
}

#servico-main {
  max-width: var(--container);
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

#servico-main .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

#servico-main .head h2 {
  font-size: 110px;
  line-height: 110px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
  color: var(--black);
  margin: 0;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--black);
  max-width: 60%;
}

#servico-main .foot {
  display: flex;
  flex-direction: row;
  gap: 54px;
}

#servico-main .foot .descricao-servico {
  max-width: 60%;
  width: 100%;
}

#servico-main .foot .descricao-servico p {
  max-width: 600px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  margin-left: auto;
  font-size: 20px;
  line-height: 28px;
}

#servico-main .foot .colaborador {
  max-width: calc(40% - 54px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#servico-main .foot .colaborador img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

#servico-main .foot .colaborador h3 {
  font-size: 40px;
  line-height: 56px;
  color: var(--black);
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  margin: 0;
}

#servico-main .foot .colaborador span.cargo {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--black);
  font-family: 'Manrope';
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

#servico-main .foot .colaborador span.cargo a {
  width: 24px;
  height: 24px;
}

#ativos-relacionados {
  max-width: var(--container);
  margin: 160px auto;
}

#ativos-relacionados h2 {
  font-size: 110px;
  line-height: 110px;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  font-weight: 900;
  margin: 0 0 40px;
  max-width: 900px;
}

#ativos-relacionados .ativos-flex {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

#ativos-relacionados .ativos-flex .ativo-card {
  max-width: 575px;
  border-radius: 2px;
  background-color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  height: 326px;
}

#ativos-relacionados .ativos-flex .ativo-card .col-left {
  background-color: var(--red);
  border-radius: 2px;
  padding: 8px;
  position: relative;
  max-width: 252px;
}

#ativos-relacionados .ativos-flex .ativo-card .col-left p {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  opacity: .85;
  font-size: 50px;
  line-height: 50px;
  overflow-wrap: break-word;
  margin: 0;
}

#ativos-relacionados .ativos-flex .ativo-card .col-left img {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 54px;
  height: 52px;
  object-fit: contain;
}

#ativos-relacionados .ativos-flex .ativo-card .col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#ativos-relacionados .ativos-flex .ativo-card .col-right h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--black);
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  margin-top: auto;
}

#ativos-relacionados .ativos-flex .ativo-card .col-right p {
  font-size: 15px;
  line-height: 20px;
  color: var(--grey);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  margin: 0;
}

#ativos-relacionados .ativos-flex .ativo-card .col-right .separator {
  width: 100%;
  height: 1px;
  background-color: var(--black);
}

#transacoes-main {
  max-width: var(--container);
  margin: 80px auto 160px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#transacoes-main h2 {
  font-size: 110px;
  line-height: 110px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
  color: var(--black);
  margin: 0;
}

#transacoes-main>p {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  color: var(--black);
  font-weight: 400;
}

#transacoes-main .grid-transacoes {
  display: grid;
  max-width: 1056px;
  margin-right: auto;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px;
  row-gap: 80px;
}

#transacoes-main .grid-transacoes .transacao-card {
  background-color: var(--white);
  border-radius: 2px;
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 319px;
}

#transacoes-main .grid-transacoes .transacao-card h3 {
  margin: 0;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 32px;
  font-size: 24px;
}

#transacoes-main .grid-transacoes .transacao-card p {
  margin: auto 0 0 0;
  color: var(--grey);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
}


/* EQUIPA */
#madre-team {
  display: flex;
  flex-direction: column;
  margin: 80px 0 160px;
}

#madre-team .topo {
  max-width: var(--container);
  margin: 0 auto 104px;
  width: 100%;
}

#madre-team .topo h2 {
  font-size: 110px;
  line-height: 110px;
  color: var(--black);
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
  margin: 0 0 64px;
}

#madre-team .topo p {
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  max-width: 850px;
  margin: 0;
  padding-left: 11.6vw;
}

#madre-team .imagem-total {
  width: 100%;
  position: relative;
} 

#madre-team .imagem-total .decoration {
  max-width: var(--container);
  width: 100%;
  position: absolute;
  height: 433px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#madre-team .imagem-total .decoration .madre-icon {
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 114px;
  height: 109px;
}

#madre-team .imagem-total .decoration .red-square {
  position: absolute;
  top: -40px;
  right: 0;
  width: 80px;
  height: 80px;
}

#madre-team .imagem-total img {
  width: 100vw;
  height: auto;
  max-height: 433px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

#madre-team .stats {
  max-width: var(--container);
  width: 100%;
  margin: 94px auto 160px;
}

#madre-team .stats .stats-container {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: flex-end;
  width: 100%;
}

#madre-team .stats .estatistica {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#madre-team .stats .estatistica .stat-title {
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

#madre-team .stats .estatistica .separator {
  width: 100%;
  height: 1px;
  background-color: var(--black);
}

#madre-team .stats .estatistica .data {
  font-size: 64px;
  line-height: 64px;
  color: var(--black);
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
}

#madre-team .conteudo {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

#madre-team .conteudo .conteudo-container {
  width: 910px;
  margin-right: auto;
  font-family: 'Manrope', sans-serif;
  color: var(--black);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

#madre-team .conteudo .conteudo-container ul li {
  font-family: 'Manrope', sans-serif;
  color: var(--black);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

#madre-team .equipa-partial {
  max-width: var(--container);
  margin: 0 auto;
}

#madre-team .equipa-partial h2 {
  margin: 0 0 80px;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  font-weight: 900;
  font-size: 110px;
  line-height: 110px;
}

#madre-team .equipa-partial .equipa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 40px;
}

#madre-team .equipa-partial .equipa-grid .membro-equipa {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#madre-team .equipa-partial .equipa-grid .membro-equipa h3 {
  margin: 0;
  color: var(--black);
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
}

#madre-team .equipa-partial .equipa-grid .membro-equipa a {
  text-decoration: none;
}

#madre-team .equipa-partial .equipa-grid .membro-equipa .cargo {
  font-size: 24px;
  line-height: 32px;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-right: 24px;
}


/* EQUIPA SINGLE */
#equipa {
  max-width: var(--container);
  margin: 80px auto 160px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#equipa h2 {
  margin: 0;
  font-weight: 800;
  color: var(--black);
  font-family: 'PP Telegraf', sans-serif;
  font-size: 110px;
  line-height: 110px;
  max-width: 800px;
}

#equipa a {
  font-weight: 600;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

#equipa .separador {
  background-color: var(--black);
  width: 85%;
  height: 1px;
}

#equipa .equipa-flex {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 96px;
}

#equipa .equipa-flex .col-left {
  max-width: 50%;
}

#equipa .equipa-flex .col-left p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 20px;
  line-height: 28px;
}

#equipa .equipa-flex .col-right img {
  object-fit: cover;
}

#especialista-em {
  max-width: var(--container);
  margin: 0 auto 160px;
  display: flex;
  justify-content: flex-end;
}

#especialista-em .especialista-container {
  max-width: 80%;
}

#especialista-em .especialista-container h2 {
  margin: 0 0 80px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 800;
  color: var(--black);
  font-size: 110px;
  line-height: 110px;
}

#especialista-em .especialista-container .especializacoes {
  display: flex;
  flex-direction: column;
}

#especialista-em .especialista-container .especializacoes .especializacao {
  padding: 32px 0 32px 50px;
  border-bottom: 1px solid var(--black);
  position: relative;
  text-decoration: none;
}

#especialista-em .especialista-container .especializacoes .especializacao .dynamic-arrow {
  position: absolute;
  top: 40px;
  right: 37px;
  user-select: none;
  transition: all .35s ease-out;
}

#especialista-em .especialista-container .especializacoes .especializacao:hover .dynamic-arrow {
  transform: rotate(-45deg);
}

#especialista-em .especialista-container .especializacoes .especializacao .counter {
  font-size: 20px;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 55px;
  color: var(--black);
  font-weight: 400;
  user-select: none;
  font-family: 'Manrope', sans-serif;
}

#especialista-em .especialista-container .especializacoes .especializacao h3 {
  font-size: 40px;
  line-height: 64px;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  font-weight: 400;
  margin: 0;
  user-select: none;
  position: relative;
  max-width: fit-content;
}

#especialista-em .especialista-container .especializacoes .especializacao h3:after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--red);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all .35s ease-out;
}

#especialista-em .especialista-container .especializacoes .especializacao:hover h3::after {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

#especialista-em .especialista-container .especializacoes .especializacao p {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  overflow-y: hidden;
  user-select: none;
  transition: all .35s ease-out;
  max-height: 0px;
  margin-top: 0;
  pointer-events: none;
  opacity: 0;
}

#especialista-em .especialista-container .especializacoes .especializacao:hover p {
  max-height: 150px;
  opacity: 1;
  margin-top: 38px;
  pointer-events: auto;
}


/* CAREERS */
#careers-main {
  max-width: var(--container);
  margin: 120px auto 160px;
}

#careers-main h2 {
  margin: 0 0 40px;
  font-weight: 800;
  font-family: 'PP Telegraf', sans-serif;
  color: var(--black);
  font-size: 110px;
  line-height: 110px;
}

#careers-main .careers-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#careers-main .careers-flex .col-left img {
  margin: 0 0 24px;
}

#careers-main .careers-flex .col-left p {
  max-width: 580px;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--black);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

#careers-main .careers-flex .col-right {
  position: relative;
}

#careers-main .careers-flex .col-right .form-box {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--white);
  padding: 48px 24px;
  width: 500px;
  z-index: 1;
}

#careers-main .careers-flex .col-right .form-box h3 {
  margin: 0 0 40px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 64px;
  line-height: 64px;
}

#careers-main .careers-flex .col-right .form-box input[type="text"],
#careers-main .careers-flex .col-right .form-box input[type="email"],
#careers-main .careers-flex .col-right .form-box textarea {
  background-color: var(--bg-grey);
  color: var(--grey);
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 16px;
  padding: 10px 16px;
  border: none;
  outline: none;
  width: calc(100% - 32px);
}

#careers-main .careers-flex .col-right .form-box input[type="file"] {
  width: calc(100% - 32px);
  background-color: var(--bg-grey);
  color: var(--grey);
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 16px;
  padding: 10px 16px;
  border: none;
  outline: none;
  position: relative;
}

#careers-main .careers-flex .col-right .form-box input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

#careers-main .careers-flex .col-right .form-box input[type="file"]::file-selector-button {
  visibility: hidden;
}

#careers-main .careers-flex .col-right .form-box input[type="file"]::before {
  content: 'Carregar CV *';
  display: inline-block;

}

#careers-main .careers-flex .col-right .form-box .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: -20px;
}

#careers-main .careers-flex .col-right .form-box .form-col-2 p {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 0;
}

#careers-main .careers-flex .col-right .form-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

#careers-main .careers-flex .col-right .form-box form>p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#careers-main .careers-flex .col-right .form-box form>p span {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#careers-main .careers-flex .col-right .form-box button[type="submit"] {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--black);
  border-radius: 2px;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
  height: 44px;
  padding: 10px 32px 10px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
}

#careers-main .careers-flex .col-right .form-box button[type="submit"] img {
  transition: transform .35s ease-out;
}

#careers-main .careers-flex .col-right .form-box button[type="submit"]:hover img {
  transform: rotate(45deg);
}

#careers-main .careers-flex .col-right .form-box button[type="submit"]::before {
  content: '';
  width: 110px;
  height: 44px;
  background-color: var(--bg-grey);
  position: absolute;
  right: 170px;
  bottom: 0;
}

#careers-main .careers-flex .col-right .form-box .ajax-loader {
  position: absolute;
  right: 0;
  bottom: -20px;
}

#careers-main>img {
  object-fit: cover;
  width: 100%;
  height: auto;
  margin-top: 250px;
  filter: saturate(0);
  position: relative;
  z-index: 0;
}


/* CONTACTS */
#contactos-main {
  max-width: var(--container);
  margin: 120px auto 440px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#contactos-main .col-left h2 {
  font-size: 110px;
  line-height: 110px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
  color: var(--black);
  margin: 0;
  max-width: 617px;
}

#contactos-main .col-left .contact-info {
  margin-left: 144px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 54px;
  max-width: 400px;
}

#contactos-main .col-left .contact-info::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 96px;
  background-color: var(--red);
  left: -29px;
  top: 0;
}

#contactos-main .col-left .contact-info p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 20px;
  line-height: 28px;
}

#contactos-main .col-left .contact-info .contact-socials {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}

#contactos-main .col-right {
  display: flex;
  flex-direction: column;
  position: relative;
}

#contactos-main .col-right .form {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--white);
  width: calc(500px);
  border-radius: 2px;
  z-index: 1;
}

#contactos-main .col-right .form h3 {
  margin: 40px 0 40px;
  padding: 0 24px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 64px;
  line-height: 64px;
}

#contactos-main .col-right .form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
  position: relative;
  margin-bottom: 36px;
}

#contactos-main .col-right .form form>p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contactos-main .col-right .form form>p span {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contactos-main .col-right .form form .form-col-2 p {
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

#contactos-main .col-right .form form input[type="text"],
#contactos-main .col-right .form form input[type="email"],
#contactos-main .col-right .form form textarea {
  background-color: var(--bg-grey);
  color: var(--grey);
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 16px;
  padding: 10px 16px;
  border: none;
  outline: none;
  width: calc(100% - 32px);
}

#contactos-main .col-right .form form button[type="submit"] {
  background-color: var(--black);
  color: var(--white);
  border-radius: 2px;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 16px;
  padding: 10px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 24px;
  bottom: 16px;
  height: 42px;
  font-family: 'Manrope', sans-serif;
}

.wpcf7-not-valid-tip {
  color: var(--red)!important;
  font-size: 12px!important;
  font-family: 'Manrope', sans-serif;
  position: absolute;
  bottom: -16px;
}

#contactos-main .col-right .form .book-meeting {
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px;
}

#contactos-main .col-right .form .book-meeting p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--white);
  max-width: 229px;
  font-size: 20px;
  line-height: 28px;
}

#contactos-main .col-right .form .book-meeting .cta {
  background-color: var(--white);
  color: var(--black);
  border-radius: 2px;
  width: 196px;
}

#contactos-main .col-right>img {
  filter: saturate(0);
  position: absolute;
  bottom: -260px;
  right: 80px;
}

/* BLOG */
#blog-header {
  max-width: var(--container);
  margin: 120px auto 80px;
}

#blog-header h2 {
  font-size: 110px;
  line-height: 110px;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 900;
  color: var(--black);
  margin: 0 0 70px;
}

#blog-header .highlighted-post {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
}

#blog-header .highlighted-post .col-left {
  display: flex;
  flex-direction: column;
}

#blog-header .highlighted-post .col-left .top-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.post-date {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--grey);
  text-transform: uppercase;
}

.post-cat {
  border-radius: 2px;
  border: 1px solid var(--black);
  padding: 10px 32px;
  font-size: 16px;
  line-height: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  background-color: transparent;
  color: var(--black);
}

#blog-header .highlighted-post .col-left h3 {
  margin: 0;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 64px;
  line-height: 64px;
  margin-top: 64px;
  max-width: 90%;
}

#blog-header .highlighted-post .col-right img {
  filter: saturate(0);
  object-fit: cover;
}

#blog-header .highlighted-post .col-left p {
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  margin: 24px 0 0;
  max-width: 90%;
}

#blog-header .post-content-text {
  margin: 120px auto;
  position: relative;
}

#blog-header .post-content-text p:first-of-type::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 96px;
  background-color: var(--red);
  top: 0px;
  left: -29px;
}

#blog-header .post-content-text p,
#blog-header .post-content-text ul li,
#blog-header .post-content-text ol li {
  max-width: 854px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--black);
  position: relative;
}

.single-post #blog-header {
  margin: 80px auto;
}

#blog-header .post-content-text ol li::marker {
  font-weight: 600;
}

#blog-header .post-content-text img {
  width: 100%;
  height: auto;
}

#blog-header .post-content-text .wp-block-image {
  position: relative;
  width: 80%;
}

#blog-header .post-content-text .wp-block-image::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background-image: url(https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/05/square.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

.posts-separator {
  max-width: var(--container);
  width: 100%;
  height: 5px;
  background-color: var(--red);
  display: block;
  margin: 80px auto 70px;
}

.posts-section {
  max-width: var(--container);
  margin: 0 auto 160px;
  position: relative;
  min-height: 400px;
}

.posts-section.loading {
  opacity: 0.5;
  transition: opacity .35s ease-in-out;
}

.posts-section.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px; 
  height: 80px;
  background-image: url('https://dev.shoppingbuilders.com/madre-advogados/wp-content/uploads/2025/06/madreIcon.svg'); 
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: center;
  animation: logoBlink 1.5s ease-in-out infinite alternate; 
}

@keyframes logoBlink {
  0% {
    opacity: 0.3; 
  }
  100% {
    opacity: 1; 
  }
}

.posts-section .filters {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.posts-section .filters .filter-button.active {
  background-color: var(--black);
  color: var(--white);
}

.posts-section .posts-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 25fr 31fr;
  grid-auto-rows: minmax(200px, auto);
  align-items: start; 
  direction: rtl;
}

.posts-section .grid-item {
  display: flex;
  flex-direction: column;
  border-radius: 2px; 
  text-decoration: none; 
  color: inherit;
  direction: ltr;
  position: relative;
}

.posts-section .grid-item img {
  width: 100%;
  height: auto; 
  display: block;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0);
}

.posts-section .grid-item .grid-item-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 40px 0 16px;
}

.posts-section .grid-item h4 {
  margin: 0;
  font-family: 'PP Telegraf', sans-serif;
  font-weight: 400;
  color: var(--black);
}

.posts-section .grid-item:nth-child(even) h4 {
  font-size: 64px;
  line-height: 64px;
}

.posts-section .grid-item:nth-child(odd) img {
  max-height: 382px;
}

.posts-section .grid-item:nth-child(odd) h4 {
  font-size: 40px;
  line-height: 48px;
}

/* MEDIA QUERIES */
/* TABLET L UP */
@media (min-width: 1025px) {
  .col-3.mobile-version {
    display: none!important;
  }
}

/* TABLET L */
@media (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }

  header.header {
    padding: 34px 16px;
  }

  header.header .logo-side img {
    width: 165px;
    height: 44px;
    object-fit: cover;
  }

  header.header .action-side .search,
  header.header .action-side .cta.dark-el {
    display: none;
  }

  header.header .action-side .menu-container .main-menu {
    width: 100vw;
    padding-left: 32px;
    row-gap: 16px;
  }

  .col-3.mobile-version {
    display: block!important;
  }

  .col-3:not(.mobile-version) {
    display: none!important;
  }

  #testemunhos .col-3.col-3.mobile-version .testemunho-content .texto-testemunho {
    text-wrap: auto;
  }

  #testemunhos .col-3.mobile-version .testemunho-container img {
    width: 100%;
  }

  #testemunhos .col-3.mobile-version .testemunho-content {
    width: calc(100% - 48px);
  }

  #testemunhos .col-3.mobile-version .glide__arrows {
    margin-top: 16px;
  }

  #testemunhos .col-3.mobile-version .glide__arrow {
    position: absolute;
    right: 0;
  }

  #testemunhos .col-3.mobile-version .glide__arrow {
    background-color: transparent;
    border: none;
    transition: opacity .35s ease-out;
  }

  #testemunhos .col-3.mobile-version .glide__arrow--left {
    margin-right: 80px;
  }

  #testemunhos .col-3.mobile-version .glide__arrow img {
    max-width: 40px;
    height: auto;
  }

  #testemunhos .col-3.mobile-version .glide__arrow--left {
    transform: scaleX(-1);
  }
}

/* TABLET M */
@media (max-width: 768px) {
  header.header .action-side .menu-container .main-menu li a {
    font-size: 24px;
    line-height: 32px;
  }

  header.header .action-side .menu-container .main-menu {
    row-gap: 20px;
  }

  header.header .action-side .menu-container #menu-close {
    right: 24px;
    top: 24px;
  }

  #video-homepage-section {
    grid-template-columns: 1fr;
    margin: 30px auto;
    padding: 0 16px;
    gap: 40px;
  }

  #video-homepage-section .title h2 {
    font-size: 40px;
    line-height: 40px;
    max-width: 50%;
  }

  #video-homepage-section .video {
    width: 100%;
  }

  #video-homepage-section .video img {
    max-width: calc(100% - 60px);
    height: auto;
    padding: 0 30px;
  }

  #video-homepage-section .video::after {
    right: 16px;
    width: 56px;
    height: 56px;
  }

  #video-homepage-section .video .video-redbar {
    left: -30px;
    width: 100px;
  }

  #video-homepage-section .content p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
  }

  #video-homepage-section .content {
    padding-left: 0;
    margin-top: 24px;
    gap: 24px;
    max-width: calc(100% - 32px);
    margin-left: 0;
  }

  #video-homepage-section .video-ask {
    min-width: calc(100% - 60px);
    margin: 0 30px;
    height: 130vw;
  }

  #video-homepage-section .cta {
    align-self: flex-end;
  }

  #slider-de-transacoes .slider-de-transacoes-container {
    padding: 0 16px;
    margin: 80px auto 254px;
  }

  #slider-de-transacoes h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 96px;
  }

  #slider-de-transacoes::after {
    right: 16px;
    top: 40px;
    width: 56px;
    height: 56px;
  }

  #slider-de-transacoes .transaction-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  #slider-de-transacoes .glide__arrows {
    margin-top: 16px;
  }

  #slider-de-transacoes .glide__arrow {
    position: absolute;
    right: 0;
  }

  #slider-de-transacoes .glide__arrow img {
    max-width: 40px;
    height: auto;
  }

  #slider-de-transacoes .glide__arrow--left {
    margin-right: 80px;
  }

  #slider-de-transacoes .cta {
    bottom: -134px;
  }

  #testemunhos h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 40px;
  }

  #testemunhos {
    margin: 80px 0 120px;
    padding: 0 16px;
  }

  footer#footer .footer-container {
    padding: 64px 16px;
  }

  footer#footer .footer-container .footer-info {
    flex-direction: column;
    gap: 56px;
    margin-bottom: 56px;
  }

  footer#footer .footer-container .footer-legal .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  footer#footer .footer-container .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  footer#footer .footer-container .footer-info .col-left img {
    max-width: 283px;
    height: auto;
  }

  #servicos {
    padding: 0 16px;
  }

  #servicos .top-part h2 {
    font-size: 40px;
    line-height: 40px;
  }

  #servicos .top-part p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  #servicos .bottom-part {
    max-width: 100%;
  }

  #servicos .bottom-part .servico .counter {
    font-size: 16px;
    line-height: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  #servicos .bottom-part .servico h3 {
    font-size: 24px;
    line-height: 24px;
  }

  #servicos .bottom-part .servico .dynamic-arrow {
    height: 24px;
    width: 24px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  #cta-com-imagem {
    margin: 200px auto 160px;
    flex-direction: column;
    padding: 0 16px;
    gap: 16px;
  }

  #cta-com-imagem .col-left {
    padding-left: 0;
    padding-top: 0;
    margin: 0 6px;
  }

  #cta-com-imagem .col-left::before {
    width: 60px;
    height: 57px;
    top: -28px;
    left: -6px;
  }

  #cta-com-imagem .col-left img {
    max-width: 100%;
    height: auto;
  }

  #cta-com-imagem .col-right {
    margin-top: 0;
    gap: 24px;
    padding: 32px;
  }

  #cta-com-imagem .col-left::after {
    width: 100px;
    height: 3px;
    right: -22px;
  }

  #cta-com-imagem .col-right h2 {
    font-size: 32px;
    line-height: 32px;
    max-width: 50%;
  }

  #cta-com-imagem .col-right p {
  font-size: 16px;
  line-height: 24px;
  }

  #faqs {
    padding: 0 16px;
  }

  #faqs h2 {
    max-width: 100%;
    font-size: 40px;
    line-height: 40px;
  }

  #faqs .faqs-list {
    max-width: 100%;
  }

  #faqs .faqs-list .faq-item h3 {
    font-size: 24px;
    line-height: 28px;
  }

  #faqs .faqs-list .faq-item::after {
    font-size: 24px;
    line-height: 64px;
  }

  #faqs .faqs-list .faq-item p {
    font-size: 16px;
    line-height: 24px;
    padding-left: 0px;
    max-width: 100%;
  }

  #transacoes-main {
    padding: 0 16px;
  }

  #transacoes-main h2 {
    font-size: 40px;
    line-height: 40px;
  }

  #transacoes-main>p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
  }

  #transacoes-main .grid-transacoes {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  #transacoes-main .grid-transacoes .transacao-card h3 {
    line-height: 28px;
    font-size: 20px;
  }

  #madre-team {
    display: flex;
    flex-direction: column;
    margin: 40px 0 120px;
  }

  #madre-team .topo {
    padding: 0 16px;
  }

  #madre-team .topo h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 40px;
  }

  #madre-team .topo p {
    font-size: 16px;
    line-height: 24px;
    padding-left: 0;
  }

  #madre-team .imagem-total img {
    height: 280px;
    object-fit: cover;
    width: 100%;
  }

  #madre-team .imagem-total .decoration .red-square {
    top: -27px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  #madre-team .imagem-total .decoration {
    height: 280px;
  }

  #madre-team .imagem-total .decoration .madre-icon {
    bottom: -28px;
    left: 16px;
    width: 60px;
    height: 57px;
  }

  #madre-team .stats {
    margin: 108px auto 120px;
    padding: 0 16px;
  }

  #madre-team .stats .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  #madre-team .stats .estatistica .data {
    font-size: 40px;
    line-height: 40px;
  }

  #madre-team .conteudo {
    margin: 0 auto 120px;
    padding: 0 16px;
  }

  #madre-team .conteudo .conteudo-container {
    width: calc(100% - 32px);
    margin-right: 0;
    font-size: 16px;
    line-height: 24px;
  }

  #madre-team .conteudo .conteudo-container ul li {
    font-size: 24px;
    line-height: 40px;
  }

  #madre-team .conteudo .conteudo-container ul {
    padding-inline-start: 24px;
  }

  #madre-team .equipa-partial {
    padding: 0 16px;
  }

  #madre-team .equipa-partial h2 {
    margin: 0 0 40px;
    font-size: 40px;
    line-height: 40px;
  }

  #madre-team .equipa-partial .equipa-grid {
    grid-template-columns: 1fr;
  }

  #madre-team .equipa-partial .equipa-grid .membro-equipa {
    gap: 16px;
  }

  #madre-team .equipa-partial .equipa-grid .membro-equipa>img {
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    height: auto;
  }

  #madre-team .equipa-partial .equipa-grid .membro-equipa h3 {
    font-size: 24px;
    line-height: 28px;
  }

  #madre-team .equipa-partial .equipa-grid .membro-equipa .cargo {
    font-size: 20px;
    line-height: 28px;
    margin-right: 0;
  }

  #madre-team .equipa-partial .equipa-grid .membro-equipa .membro-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  #equipa {
    padding: 0 16px;
    gap: 40px;
    margin: 80px auto 120px;
  }

  #equipa h2 {
    font-size: 40px;
    line-height: 40px;
  }

  #equipa a {
    justify-content: space-between;
  }

  #equipa .separador {
    width: 100%;
  }

  #equipa .equipa-flex {
    margin-top: 0px;
    flex-direction: column;
    gap: 40px;
  }

  #equipa .equipa-flex .col-left {
    max-width: 100%;
  }

  #equipa .equipa-flex .col-left p {
    font-size: 16px;
    line-height: 24px;
  }

  #equipa .equipa-flex .col-right>img {
    width: 100%;
    max-height: 481px;
  }

  #especialista-em {
    margin: 0 auto 120px;
    padding: 0 16px;
  }

  #especialista-em .especialista-container h2 {
    margin: 0 0 40px;
    font-size: 40px;
    line-height: 40px;
  }

  #especialista-em .especialista-container {
    max-width: 100%;
  }

  #especialista-em .especialista-container .especializacoes .especializacao .counter {
    font-size: 16px;
    line-height: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  #especialista-em .especialista-container .especializacoes .especializacao h3 {
    font-size: 24px;
    line-height: 28px;
  }

  #especialista-em .especialista-container .especializacoes .especializacao .dynamic-arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 24px;
    height: 24px;
  }

  #especialista-em .especialista-container .especializacoes .especializacao p {
    font-size: 16px;
    line-height: 24px;
  }

  #careers-main {
    margin: 40px auto 120px;
    padding: 0 16px;
  }

  #careers-main h2 {
    margin: 0 0 40px;
    font-size: 40px;
    line-height: 40px;
    max-width: 80%;
  }

  #careers-main .careers-flex {
    flex-direction: column;
    gap: 40px;
  }

  #careers-main .careers-flex .col-left img {
    margin: 0 0 40px;
  }

  #careers-main .careers-flex .col-left p {
    font-size: 16px;
    line-height: 24px;
  }

  #careers-main .careers-flex .col-right .form-box {
    position: relative;
    width: calc(100% - 32px);
    padding: 48px 16px;
  }

  #careers-main .careers-flex .col-right .form-box h3 {
    font-size: 32px;
    line-height: 32px;
  }

  #careers-main .careers-flex .col-right .form-box .form-col-2 p {
    flex-direction: column;
    gap: 16px;
  }

  #careers-main .careers-flex .col-right .form-box button[type="submit"]::before {
    width: 0px;
  }

  #careers-main>img {
    margin-top: 24px;
  }

  #contactos-main {
    margin: 40px auto 300px;
    padding: 0 16px;
    flex-direction: column;
    gap: 40px;
  }

  #contactos-main .col-left h2 {
    font-size: 40px;
    line-height: 40px;
  }

  #contactos-main .col-left .contact-info {
    margin-left: 0;
    gap: 24px;
    margin-top: 40px;
  }

  #contactos-main .col-right .form {
    position: relative;
    width: 100%;
  }

  #contactos-main .col-right>img {
    bottom: -180px;
    right: -16px;
    max-width: 300px;
    max-height: 260px;
  }

  #contactos-main .col-right .form h3 {
    font-size: 32px;
    line-height: 32px;
  }

  #contactos-main .col-right .form form .form-col-2 p {
    flex-direction: column;
  }

  #contactos-main .col-right .form .book-meeting {
    flex-direction: column;
    align-items: unset;
  }

  #contactos-main .col-right .form .book-meeting p {
    font-size: 16px;
    line-height: 24px;
  }

  #contactos-main .col-right .form .book-meeting .cta {
    align-self: flex-end;
    width: fit-content;
  }

  #contactos-main .col-left .contact-info p {
    font-size: 16px;
    line-height: 24px;
    margin-left: 24px;
  }

  #contactos-main .col-left .contact-info::before {
    width: 3px;
    height: 58px;
    left: 0px;
  }

  #blog-header {
    margin: 40px auto 80px;
    padding: 0 16px;
  }

  #blog-header h2 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 40px;
  }

  .post-date {
    font-size: 16px;
    line-height: 24px;
  }

  #blog-header .highlighted-post .col-left h3 {
    font-size: 32px;
    line-height: 32px;
    margin-top: 40px;
    max-width: 100%;
  }

  #blog-header .highlighted-post .col-left p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  #blog-header .highlighted-post {
    flex-direction: column;
    gap: 24px;
  }

  #blog-header .highlighted-post .col-right img {
    width: 100%;
    height: auto;
  }

  .posts-separator {
    width: calc(100% - 32px);
    height: 3px;
    margin: 80px 16px 80px;
  }

  .posts-section {
    padding: 0 16px;
  }

  .posts-section .filters {
    gap: 16px;
    flex-wrap: wrap;
  }

  .posts-section .posts-grid {
    gap: 80px;
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
    direction: ltr;
  }

  .posts-section .grid-item img {
    max-height: 262px!important;
  }

  .posts-section .grid-item h4 {
    font-size: 24px!important;
    line-height: 28px!important;
  }

  .posts-section .grid-item {
    margin-top: 0!important;
  }

  .single-post #blog-header {
    margin: 40px auto;
  }

  #blog-header .post-content-text {
    margin: 80px auto;
  }

  #blog-header .post-content-text p, 
  #blog-header .post-content-text ul li, 
  #blog-header .post-content-text ol li {
    max-width: 300px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 24px;
  }

  #blog-header .post-content-text .wp-block-image {
    width: 100%;
  }

  #blog-header .post-content-text img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  #blog-header .post-content-text .wp-block-image::after {
    right: 16px;
    top: -26px;
    transform: unset;
    width: 56px;
    height: 56px;
  }

  #servico-main {
    margin: 40px auto;
    padding: 0 16px;
    gap: 60px;
  }

  #servico-main .head {
    border-bottom: 1px solid var(--black);
    padding: 0 0 40px;
    flex-direction: column;
    align-items: unset;
  }

  #servico-main .head h2 {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 40px;
    max-width: 100%;
    border: none;
    max-width: 70%;
  }

  #servico-main .head>a {
    align-self:flex-end;
    width: fit-content;
  }

  #servico-main .foot {
    flex-direction: column;
    gap: 40px;
  }

  #servico-main .foot .descricao-servico {
    max-width: 100%;
    width: 100%;
  }

  #servico-main .foot .colaborador {
    max-width: 100%;
  }

  #servico-main .foot .descricao-servico p {
    font-size: 16px;
    line-height: 24px;
  }

  #servico-main .foot .colaborador img {
    aspect-ratio: 1/1;
  }

  #servico-main .foot .colaborador h3 {
    font-size: 24px;
    line-height: 28px;
  }

  #servico-main .foot .colaborador span.cargo {
    font-size: 20px;
    line-height: 28px;
    justify-content: space-between;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  
}