/* PÁGINA HOME */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.carousel-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  /* Firefox */
  scrollbar-width: none; 
}
/* Chrome, Edge, Safari */
.carousel-track::-webkit-scrollbar {
  display: none;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  color: #fff;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; 
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2% 0%; 
  transition: background 0.5s, padding 0.3s;
  z-index: 1000;
}
.menu-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 0.5%; 
  margin-top: 2%;
}
.menu-scrolled {
  background: #1d2c3f;
  opacity: 90%;
  padding: 1% 0%; 
  color: white;
}
.menu-scrolled nav ul li a {
  color: #fff; 
    align-items: center; 
}
.menu-scrolled .menu-container {
  align-items: center; 
}
.logo-menu {
  display: flex;
  align-items: center;
  margin-right: 2%;
}
.logo-menu img {
  height: 3.6rem;
}
.logo-menu .divider {
  display: inline-block;
  width: 2px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .logo-menu {
    display: none;
  }
}
nav ul {
  list-style: none;
  display: flex;
  gap: 60px; 
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 100;
  font-size: 24px; 
  transition: 0.3s;
}
nav ul li a:hover {
  color: #e0c591;
}
nav ul li a.active {
  font-weight: 700;
}
/* BANNER */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(29,44,63,0.8), rgba(29,44,63,0.8)), /* azul com opacidade */
              url('assets/images/handshake-men.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}
.hero-left {
  max-width: 50%;
  text-align: center;
  padding-left: 4vh;
}
.hero-left .hero-logo {
  width: 80%;
  margin-bottom: 5%;
  margin-left: 1%;
}
.hero-right {
  max-width: 50%;
  padding-top: 2%;
  padding-left: 5%;
}
@media (min-width: 1450px){
  .hero-right {
  max-width: 50%;
  padding-right: 130px;
  padding-left: 30px;
}
  
}
.hero-right h2 {
  font-size: 4.0vw; /* Ajustado para VW */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-right p {
  font-size: 1.3vw; /* Ajustado para VW */
  font-weight: 100;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: justify;
}
.hero-right .btn {
  display: inline-flex; /* pra alinhar texto + ícone */
  align-items: center;
  gap: 10px; 
  width: fit-content;
  margin-top: 15px;
  font-size: 1.48vw; /* Ajustado para VW */
  font-weight: 700;
  background: #e0c591;
  color: #1d2c3f;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.hero-right .btn:hover {
  background: #e0c591;
}
.hero-right .btn-icon {
  background: #1d2c3f; /* círculo azul */
  color: #fff; /* seta branca */
  width: 37px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.3s;
}
.hero-right .btn:hover .btn-icon {
  background: #1d2c3f;
}
.solutions { 
  padding: 100px 30px; 
}
.solutions-header { 
  display: flex;
  align-items: flex-end; 
  gap: 60px; 
  max-width: 1200px; 
  margin: 0 auto 50px;
}
.solutions-header h2 { 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 700; 
  font-size: 60px; 
  color: #1d2c3f; 
  margin: 0;
  line-height: 1.2; 
  flex-shrink: 0;
}
.solutions-header p { 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 300; 
  font-size: 22px; 
  color: #1d2c3f; 
  margin: 0;
  flex: 1; 
  line-height: 1.2; 
  text-align: justify;
}

.solutions-carousel { 
  position: relative; 
  max-width: 1200px; 
  margin: 0 auto; 
  overflow: hidden; 

}
.carousel-track {
  display: flex;
  flex-wrap: nowrap; /* Impede a quebra de linha dos cards */
  transition: transform 0.5s ease-in-out;
  gap: 25px;
  overflow-x: auto;
}
.carousel-page { 
  display: flex; 
  gap: 25px; 
  min-width: 100%; 
}
.solution-card {
  position: relative; 
  flex: 0 0 25%; 
  max-width: 23%;
  min-width: 24%; /* Garante que os cards não fiquem muito pequenos */
  padding: 60px 25px 60px 30px; 
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 20px;
  align-content: center;
}
.solution-card::before {
  content: "";
  position: absolute;
  left: 0; 
  top: 15%; 
  width: 1px; 
  height: 70%; 
  background-color: #777777;
}
.solution-card h3 { 
  font-weight: 700; 
  color: #1d2c3f; 
  font-size: 26px; 
  margin-bottom: 10px; 
}
.solution-card p { 
  font-weight: 300; 
  color: #1d2c3f; 
  font-size: 20px; 
  margin: 0; 
}
.carousel-indicators { 
  display: flex;
  align-items: center; 
  gap: 12px; 
}
.carousel-indicators .dot { 
  display: inline-block; 
  width: 12px; 
  height: 12px; 
  margin: 0 6px; 
  background-color: #ccc; 
  border-radius: 50%; 
  cursor: pointer; 
}
.carousel-indicators .dot.active { 
  background-color: #1d2c3f; 
}
.carousel-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
  margin-top: 20px;
  height: 60px;
}
.carousel-indicators {
  display: flex;
  gap: 12px;
}
.carousel-link {
  position: absolute;
  right: 0; 
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #1d2c3f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.carousel-link:hover {
  color: #e0c591;
}
.carousel-link .link-icon {
  background: #1d2c3f; /* círculo azul */
  color: #fff; /* seta branca */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.3s;
}
.carousel-link:hover .link-icon {
    color: #b89d6c;
}
.about-section {
  position: relative;
  margin: 100px auto;
  padding: 0; /* Removido padding fixo */
}
.about-bg {
  position: absolute;
  top: -10%; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 85%; 
  height: 90%; 
  background: #f0f0f0;
  border-radius: 40px;
  z-index: 1;
}
.about-content {
  position: relative;
  background: #e0c591;
  border-radius: 0 40px 40px 0;
  padding: 1%;
  height: fit-content;
  width: 90%;
  z-index: 2;
}
/* Header do bloco: título e parágrafo lado a lado */
.about-header {
  display: flex;
  padding-left: 10%; /* Ajustado para % */
  padding-right: 15%; /* Ajustado para % */
  padding-top: 30px;
  align-items: flex-end; 
  gap: 60px; 
  margin-bottom: 60px;
}
.about-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.2;
  flex-shrink: 0;
}
.about-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 131%;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.4;
  flex: 1; 
  text-align: justify;
}
/* Serviços em 4 colunas */
.about-services {
  display: grid;
  padding-left: 10%; /* Ajustado para % */
  padding-right: 10%; /* Ajustado para % */
  padding-bottom: 30px;
  grid-template-columns: repeat(4, 1fr); 
  gap: 3%;
  margin-bottom: 10%;
  padding-top: 4%;
}
.service-block {
  position: relative;
  align-content: center;
  padding-left: 20px;
}
.service-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4%;
  width: 1px;
  height: 90%;
  background: #1d2c3f;
}
.service-block p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 112%; /* Ajustado para VW */
  color: #1d2c3f;
  margin: 0;
  line-height: 1.3;
}
.service-block strong {
  font-weight: 700;
}
.about-link {
  position: absolute; 
  bottom: 7%;       
  right: 4%;        
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #1d2c3f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.about-link:hover {
  color: #e0c591;
}
.about-link .link-icon {
  background: #1d2c3f; 
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.3s ease;
}
.about-link:hover .link-icon {
  color: #e0c591;
}
.results-section {
  padding-bottom: 40px;
}
/* Header do bloco: título e parágrafo */
.results-header {
  display: flex;
  padding-left: 10%; /* Ajustado para % */
  padding-right: 10%; /* Ajustado para % */
  padding-top: 60px;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
}
.results-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.2;
  flex-shrink: 0;
}
.results-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 131%;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  text-align: justify;
}
/* Cards de resultados */
.results-cards {
  display: grid;
  padding-left: 10%; /* Ajustado para % */
  padding-right: 10%; /* Ajustado para % */
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 80px;
  padding-top: 20px;
}
.result-card {
  background-color: #e6e6e6;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
}
.result-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #1d2c3f;
  margin-bottom: 15px;
}
.result-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .arrow {
    display: none;
  }
}
/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  nav ul {
    gap: 30px;
    font-size: 20px;
  }
  .hero-right h2 { font-size: 40px; }
  .hero-right p { font-size: 18px; }
  .hero-right .btn { font-size: 20px; }
}
@media (max-width: 768px) {
  /* HEADER */
  .menu-container {
    justify-content: flex-end;
    margin-top: 0;
  }
  .menu-scrolled {
    height: 60px;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #1d2c3f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40px;
    transition: right 0.3s ease-in-out;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 30px;
  }
  nav ul li a {
    font-size: 22px;
  }
  /* BOTÃO HAMBURGER */
.hamburger {
  display: block;
  cursor: pointer;
  z-index: 1100;
  padding-top: 10px;
  padding-right: 30px;
}
.hamburger div {
  width: 30px;
  height: 3px;
  background: white;
  margin: 6px 0;
  transition: 0.4s;
}
/* Quando ativo, vira X */
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(8px, 7px);
  transform-origin: center;
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  transform-origin: center;
}
  /* HERO */
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
    gap: 12px;
    height: 950px;
    max-width: 100%;
    justify-content: flex-start; 
  }
  .hero-left, .hero-right {
    max-width: 100%;
    padding: 0;
  }
  .hero-left .hero-logo {
    width: 300px;
    height: auto;
    margin-top: 120px;
    padding-bottom: 40px;
  }
  .hero-right h2 {
    font-size: 36px;
    padding-left: 20px;
    text-align: left;
  }
  .hero-right p {
    font-size: 18px;
    text-align: left;
    padding-left: 20px;
    padding-right: 25px;
  }
  .hero-right .btn {
    padding-top: 10px;
    margin-left: 16px;
    font-size: 20px;
    border-radius: 16px;
  }
  .hero-right .btn-icon {
    width: 26px;
    height: 26px;
    font-size: 20px;
  }
  /* SOLUÇÕES */
  .arrow {
  position:absolute;
  bottom: 120px;
  color: #1d2c3f;
  border: none;
  font-size: 20px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  z-index: 10;
  border-radius: 50%;
}
.arrow.left {
  left: 120px;
}
.arrow.right {
  right: 120px;
}
.solutions { 
  padding-top: 120px;
  padding-left: 10px; 
}
.solutions-carousel { 
  padding-left: 20px; 
  padding-right: 20px;
}
.solutions-header { 
  align-items: flex-start; 
  gap: 10px; 
  margin: 0 auto 0px;
}
  .solutions-header {
    flex-direction: column;
    padding: 0 20px;
  }
  .solutions-header h2 {
    font-size: 42px;
    text-align: left;
    padding-right: 100px;
  }
    .solutions-header p {
    font-size: 22px;
    text-align: left;
    padding-right: 40px;
    padding-bottom: 50px;
  }
  .solution-card {
    flex: 0 0 50%;
    min-width: 300px; 
    height: 400px;
    padding-left: 20px;
  }
    .solution-card::before {
    height: 300px;
  }
  .carousel-indicators {
    display: none;
  }
   .solution-card h3 {
    font-size: 30px;
    padding-right: 10px;
  }
   .solution-card p {
    font-size: 22px;
    padding-right: 20px;
  }
  .carousel-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }
  .solution-card {
    scroll-snap-align: start;
  }
  .carousel-footer {
    margin-top: 21px;
    height: 60px;
  }
  .carousel-link {
    font-size: 18px;
    gap: 20px;
    text-align: right;
  }
  .link-icon {
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
  }
  /* ABOUT */
  .about-services {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }
  .about-header {
    flex-direction: column;
    text-align: left;
    padding-left: 10px;
    padding-right: 20px;
    align-items: flex-start;
  }
  .about-header h2 {
    font-size: 42px;
    text-align: left;
    padding-left: 10px;
  }
  .about-header p {
  font-size: 22px;
  padding-right: 10px;
  padding: 10px;
  }
.about-section {
  margin-top: 20px;
}
.about-bg {
  left: 50%;
  top: -5%;
  width: 350px;
}
.about-content {
width: 350px;
height: 1150px;
padding-top: 20px;
padding-left: 10px;
padding-right: 10px;
}
.about-services {
  display: contents;
  gap: 20px;
}
.about-link {
  bottom: 20px;
  font-size: 18px;
  text-align: right;
  padding-left: 100px;
  column-gap: 20px;
}
.about-link .link-icon {
  height: 40px;
  width: 40px;
  aspect-ratio: 1;
}
.service-block {
  padding-bottom: 50px;
  align-items: start;
}
.service-block p {
  font-size: 19px;
  padding-left: 20px;
  padding-right: 60px
}
.service-block strong br {
    display: none; 
  }
.service-block::before {
 display: none;
}
  /* RESULTS */
  .results-cards {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .results-header {
    display: flex;
    flex-direction: column; /* já faz você empilhar h2 e p */
    text-align: left;
    padding-left: 20px;
    padding-right: 30px;
    gap: 30px; /* separação entre h2 e p */
    align-items: flex-start; /* garante alinhamento à esquerda */
  }
  .results-header h2 {
    font-size: 42px;
    text-align: left;
    margin: 0; /* remove possíveis margens herdadas */
  }
  .results-header p {
    font-size: 22px;
    margin: 0;
  }
.result-card {
padding: 30px 40px;
}
.result-card p {
  font-size: 20px;
}
.cv-photo-left img { 
  width: 250px; 
  height: 250px; 
  object-fit: cover; 
  margin-left: 10px; 
  border-radius: 20px; 
  margin-right: 60px;
  object-position: top;  /* foca na parte superior da imagem */
} 
.cv-photo-right img { 
  width: 250px; 
  height: 250px; 
  object-fit: cover; 
  margin-right: -15px; 
  border-radius: 20px;
  object-position: top;  /* foca na parte superior da imagem */
 }
}
/* RODAPÉ */
.site-footer {
  background: linear-gradient(rgba(29,44,63,0.8), rgba(29,44,63,0.8)),
              url('assets/images/handshake-men.jpeg') center/cover no-repeat;
  color: #ffffff;
  padding: 3% 7%;
  border-radius: 40px 40px 0 0;
  font-family: 'Montserrat', sans-serif;
}
/* Linha superior: três colunas */
.footer-container {
  display: flex;
  /* Removido justify-content e gap */
  flex-wrap: wrap;
}

.footer-logo,
.footer-address,
.footer-contact {
  text-align: center;
  /* flex-basis: Define a largura base do item. 30% é um bom ponto de partida para 3 colunas. */
  flex-basis: 30%; 
  /* flex-grow: Permite que o item cresça para preencher o espaço disponível. */
  flex-grow: 1;
}
.footer-logo-img {
  max-width: 250px; /* Use max-width para que a imagem não estoure em telas pequenas */
  display: block;
  margin: 0 auto;
}
/* Títulos das seções */
.footer-address,
.footer-contact {
  padding-top: 2%;
}
.footer-address h3,
.footer-contact h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-address p,
.footer-contact p {
  font-weight: 300;
  font-size: 18px;
  margin: 5px 0;
  color: #ffffff;
}
.footer-address p {
 line-height: 1.4;
}
/* Link de e-mail */
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #b89d6c;
}
.linkedin-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-top: 10%; 
  gap: 5%; 
}
.linkedin-wrapper p {
  margin: 0; 
  text-align: right;
  font-size: 18px;
}
.linkedin-wrapper img {
  width: 30px;
  padding: 0; 
  margin: 0; 
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom a:hover {
color: #e0c591;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
  .footer-logo img {
    width: 200px;
    height: auto;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-address p {
    font-size: 15px;
  }
  .footer-contact h3,
  .footer-contact p {
    font-size: 15px;
  }
  .linkedin-wrapper {
    flex-direction: column; 
    align-items: center; 
    text-align: center;        
    gap: 5px;   
    padding-top: 30px;             
  }
  .linkedin-wrapper p {
    text-align: center; 
  }
}


/* MENU PÁGINAS COM FUNDO BRANCO  */
@media (min-width: 769px) {
  .about
{
  padding-top:10%;  
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #1d2c3f;
}
.about-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1%;
  padding-top: 100px;
  padding-bottom: 100px;
}
}
@media (min-width: 1000px)
{
.about {
  padding-top:10%;  
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #1d2c3f;
}

.menu-white nav ul li a {
  color: #1d2c3f; 
}

.menu-white nav ul li a:hover {
  color: #d9c28e; 
}

.menu-white .logo-menu .divider {
  background-color: rgba(29, 44, 63, 0.6); 
}

.menu-white.menu-scrolled .logo-menu .divider {
  background-color: rgba(255, 255, 255, 0.6); 
}

.menu-white.menu-scrolled nav ul li a {
  color: #fff; 
  align-items: center; 
}

.menu-white .logo-menu img {
  content: url('assets/images/aptar-azul.png'); 
  transition: all 0.3s ease;
  height: 3.6rem; 

}

.menu-white.menu-scrolled .logo-menu img {
  content: url('assets/images/aptar-branco.png'); 
}

.about {
  padding-top:10%;  
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #1d2c3f;
}

.about-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6%;
  padding-bottom: 60px;
}

.about-text {
  flex: 1;
  padding-left: 15%;
 
}

.about-text h2 {
  font-size: 70px;
  font-weight: 700;
  padding-bottom: 20px;
  line-height: 1.2;
  
}

.about-text p {
  font-size: 22px;
  font-weight: 300;
  color: #1d2c3f;
  margin-bottom: 20px;
  line-height: 1.6;
  padding-right: 4%;
  text-align: justify;
}

.about-logo {
  flex: 0 0 45%; 
  background: #1d2c3f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px 0 0 20px;
  height: 800px; 
}

.about-logo img {
  max-width: 65%; 
  height: auto;
  padding-bottom: 160px;
}

.about-highlight {
  max-width: 75%;
  height: 320px;
  margin: -250px auto 0 auto; 
  background: #e0c591; 
  border-radius: 40px;
  padding-left: 10%;
  padding-top: 15%;
  padding-bottom: 4%;
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  gap: 40px;
  position: relative; 
  z-index: 2; 
}

.about-highlight p {
  flex: 2;
  font-size: 20px;
  font-weight: 300;
  color: #1d2c3f;
  line-height: 1.5;
  text-align: justify;
}

.about-highlight h3 {
  flex: 1;
  font-size: 50px;
  font-weight: 700;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.socios-titulo {
  max-width: 75%;
  height: 700px;
  margin: 100px auto 0 auto; 
  background: #1d2c3f; 
  border-radius: 40px;
  padding: 6% 4%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative; 
  z-index: 1; 
}

.socios-titulo h3 {
  font-size: 50px;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  
}

.socios-titulo p {
  font-size: 20px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
}

.cv-box-left {
  position: relative;
  background: #e5e5e5;
  border-radius: 0 40px 40px 0;
  margin-top: -280px;
  z-index: 2;
  width: 80%;
  height: fit-content;
}

/* Flex do topo: foto + texto */
.cv-top-left {
  display: flex;
  gap: 1%;
  align-items: flex-start;
}

/* Foto com destaque amarelo */
.cv-photo-left {
  position: relative;
}

.cv-photo-left img {
  width: 400px;
  height: 330px;
  object-fit: cover;
  object-position: top;  /* foca na parte superior da imagem */
  border-radius: 20px;
  margin-top: -50px;
  margin-left: -25%;
  position: relative;
  z-index: 2;
}

.photo-decor-left {
  position: absolute;
  width: 400px;
  height: 330px;
  background: #d9c28e;
  border-radius: 20px;
  margin-top: -80px;
  margin-left: -15%;
  z-index: 1;
}

.cv-text-left {
  padding-left: 5%;
  padding-right: 8%;
  padding-top: 10px;
}

.cv-text-right {
  padding-right: 12%;
  padding-left: 6%;
  padding-top: 10px;
}

.cv-text-left h3 {
  font-size: 50px;
  font-weight: 700;
  text-align: left;
  color: #1d2c3f;
  margin: 0 0 10px 0;
  padding-left: 30%;
  padding-top: 40px;
}

.cv-text-left p {
  font-size: 20px;
  font-weight: 300;
  padding-left: 30%;
  text-align: left;
  color: #1d2c3f;
  margin: 0;
}

/* Corpo do CV */
.cv-body-left {
  margin-top: 80px;
  padding-left: 20.5%;
  margin-right: 100px;
  margin-bottom: 20px;
}

.cv-body-left p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 300;
  color: #1d2c3f;
  text-align: justify;
}

/* Alinhamentos específicos */
.cv-box.left .cv-top {
  flex-direction: row;
}

.cv-footer-left {
  display: flex;
  justify-content: center; 
  gap: 80px;
  margin-top: 70px; 
  padding-bottom: 60px;
  padding-left: 10%;
}

.contact-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-footer-left img {
  width: 30px;   
  height: 30px;  
}

.cv-footer-left a {
  color: #1d2c3f; 
  font-size: 18px;
  font-style: italic;
  text-decoration: none; 
  font-weight: 300; 
  transition: color 0.3s ease; 
}

.cv-footer-left a:hover {
  color: #d9c28e; 
}


/*DIREITA */

.cv-box-right {
  position: relative;
  background: #e5e5e5;
  border-radius: 40px 0 0 40px;
  margin-top: 20%;
  margin-left: auto;   /* força o box a encostar na direita */
  margin-right: 0;     /* garante que não tenha espaço extra */
  z-index: 1;
  width: 80%;
  height: fit-content;
  margin-bottom: 100px;
}


.cv-top-right {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cv-photo-right {
  position: relative;
}

.cv-photo-right img {
  width: 400px;
  height: 330px;
  object-fit: cover;
  object-position: 50% 8%; /* ajusta o recorte, tipo zoom */
  border-radius: 20px;
  margin-top: -50px;
  margin-left: -50%;
  position: relative;
  z-index: 2;
}

.photo-decor-right {
  position: absolute;
  width: 400px;
  height: 330px;
  background: #d9c28e;
  border-radius: 20px;
  margin-top: -80px;
  margin-left: -40%;
  z-index: 1;
}

/* Texto do topo */
.cv-text-right h3 {
  font-size: 60px;
  font-weight: 700;
  color: #1d2c3f;
  margin: 0 0 10px 0;
  padding-left: 10%;
  padding-top: 40px;
}

.cv-text-right p {
  font-size: 20px;
  font-weight: 300;
  color: #1d2c3f;
  padding-left: 10%;
  padding-right: 90px;
  margin: 0;
}

/* Corpo do CV */
.cv-body-right {
  margin-top: 80px;
  margin-left: 10%;
  margin-right: 20.5%;
  margin-bottom: 20px;
  
}

.cv-body-right p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 20px;
  font-weight:300;
  text-align: justify;
  color: #333;
}

.cv-box.right .cv-top {
  flex-direction: row;
}

.cv-footer-right {
  display: flex;
  justify-content: center; 
  gap: 80px;
  margin-top: 70px;
  margin-bottom: 60px;
  padding-right: 10%;
  padding-bottom: 7%;
}

.contact-footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-footer-right img {
  width: 30px;   
  height: 30px;  
}

.cv-footer-right a {
  color: #1d2c3f; 
  font-size: 18px;
  font-style: italic;
  text-decoration: none; 
  font-weight: 200; 
  transition: color 0.3s ease; 
}

.cv-footer-right a:hover {
  color: #e0c591; 
}


}
@media (min-width: 1800px)
{
.about {
  padding-top:10%;  
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #1d2c3f;
}

.menu-white nav ul li a {
  color: #1d2c3f; 
}

.menu-white nav ul li a:hover {
  color: #d9c28e; 
}

.menu-white .logo-menu .divider {
  background-color: rgba(29, 44, 63, 0.6); 
}

.menu-white.menu-scrolled .logo-menu .divider {
  background-color: rgba(255, 255, 255, 0.6); 
}

.menu-white.menu-scrolled nav ul li a {
  color: #fff; 
  align-items: center; 
}

.menu-white .logo-menu img {
  content: url('assets/images/aptar-azul.png'); 
  transition: all 0.3s ease;
  height: 3.6rem; 

}

.menu-white.menu-scrolled .logo-menu img {
  content: url('assets/images/aptar-branco.png'); 
}

.about {
  padding-top:10%;  
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #1d2c3f;
}

.about-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 7%;
  padding-top: 10%;
  padding-bottom: 100px;
}

.about-text {
  flex: 1;
  padding-left: 10%;
 
}

.about-text h2 {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  
}

.about-text p {
  font-size: 28px;
  font-weight: 300;
  color: #1d2c3f;
  margin-bottom: 50px;
  line-height: 1.6;
  margin-top: 10px;
  
}

.about-logo {
  flex: 0 0 800px; 
  background: #1d2c3f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px 0 0 20px;
  height: 800px; 
}

.about-logo img {
  max-width: 65%; 
  height: auto;
  padding-bottom: 100px;
}

.about-highlight {
  max-width: 80%;
  height: 500px;
  margin: -200px auto 0 auto; 
  background: #e0c591; 
  border-radius: 40px;
  padding: 40px 50px;
  margin-top: -8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative; 
  z-index: 2; 
}

.about-highlight p {
  flex: 2;
  font-size: 28px;
  font-weight: 200;
  color: #1d2c3f;
  line-height: 1.6;

  text-align: right;
}

.about-highlight h3 {
  flex: 1;
  font-size: 90px;
  font-weight: 700;
  padding-top: center;
  color: #1d2c3f;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.socios-titulo {
  max-width: 80%;
  height: 600px;
  margin: 100px auto 0 auto; 
  background: #1d2c3f; 
  border-radius: 40px;
  padding: 2% 4%;
  display: flex;
  align-items: top;
  justify-content: space-between;
  gap: 30px;
  position: relative; 
  z-index: 1; 
}

.socios-titulo h3 {
  padding-top: 60px;
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  
}

.socios-titulo p {
  font-size: 150%;
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 10px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}

.cv-box-left {
  position: relative;
  background: #e5e5e5;
  border-radius: 0 40px 40px 0;
  margin-top: -13%;
  margin-right: 13%;
  z-index: 2;
  height: fit-content;
}

/* Flex do topo: foto + texto */
.cv-top-left {
  display: flex;
  gap: 1%;
  align-items: flex-start;
}

/* Foto com destaque amarelo */
.cv-photo-left {
  position: relative;
}

.cv-photo-left img {
  width: 500px;
  height: 450px;
  object-fit: cover;
  object-position: top;  /* foca na parte superior da imagem */
  border-radius: 20px;
  margin-top: -40px;
  margin-left: -15%;
  position: relative;
  z-index: 2;
}

.photo-decor-left {
  position: absolute;
  width: 500px;
  height: 450px;
  background: #d9c28e;
  border-radius: 20px;
  margin-top: -80px;
  margin-left: -7%;
  z-index: 1;
}

.cv-text-left {
  padding-left: 4%;
  padding-right: 10%;
  padding-top: 10px;
}

.cv-text-left h3 {
  font-size: 380%;
  font-weight: 700;
  text-align: left;
  color: #1d2c3f;
  margin: 0 0 10px 0;
  padding-left: 30%;
  padding-right: 0%;
  padding-top: 40px;
  text-align: left;
}

.cv-text-left p {
  font-size: 150%;
  font-weight: 300;
  padding-left: 30%;
  padding-right: 0%;
  text-align: left;
  color: #1d2c3f;
  text-align: left;
  margin: 0;
}

/* Corpo do CV */
.cv-body-left {
  margin-top: 80px;
  padding-left: 20%;
  margin-right: 10%;
  margin-bottom: 20px;
}

.cv-body-left p {
  margin-bottom: 3%;
  line-height: 1.6;
  font-size: 160%;
  font-weight: 300;
  color: #1d2c3f;
}

/* Alinhamentos específicos */
.cv-box.left .cv-top {
  flex-direction: row;
}

.cv-footer-left {
  display: flex;
  justify-content: center; 
  gap: 40px;
  margin-top: 60px; 
}

.contact-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-footer-left img {
  width: 30px;   
  height: 30px;  
}

.cv-footer-left a {
  color: #1d2c3f; 
  font-size: 18px;
  font-style: italic;
  text-decoration: none; 
  font-weight: 300; 
  transition: color 0.3s ease; 
}

.cv-footer-left a:hover {
  color: #d9c28e; 
}


/*DIREITA */

.cv-box-right {
  position: relative;
  background: #e5e5e5;
  border-radius: 40px 0 0 40px;
  margin-top: 20%;
  margin-left: auto;   /* força o box a encostar na direita */
  margin-right: 0;     /* garante que não tenha espaço extra */
  z-index: 1;
  width: 80%;
  height: fit-content;
  margin-bottom: 100px;
}

.cv-top-right {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cv-photo-right {
  position: relative;
}

.cv-photo-right img {
  width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-top: -40px;
  margin-left: -17%;
  position: relative;
  z-index: 2;
}

.photo-decor-right {
  position: absolute;
  width: 400px;
  height: 350px;
  background: #d9c28e;
  border-radius: 20px;
  margin-top: -90px;
  margin-left: -30px;
  z-index: 1;
}

.cv-text-right {
  padding-right: 15%;
  padding-left: 5%;
  padding-top: 10px;
}

/* Texto do topo */
.cv-text-right h3 {
  font-size: 380%;
  font-weight: 700;
  color: #1d2c3f;
  margin: 0 0 10px 0;
  padding-left: 16%;
  padding-right: 30%;
  padding-top: 40px;
  text-align: left;
}

.cv-text-right p {
  font-size: 150%;
  font-weight: 300;
  color: #1d2c3f;
  padding-left: 16%;
  padding-right: 20%;
  text-align: left;
  margin: 0;
}

/* Corpo do CV */
.cv-body-right {
  margin-top: 80px;
  margin-left: 10%;
  margin-bottom: 20px;
  
}

.cv-body-right p {
  margin-bottom: 3%;
  line-height: 1.6;
  font-size: 160%;
  font-weight:300;
  color: #333;
}

.cv-box.right .cv-top {
  flex-direction: row;
}

.cv-footer-right {
  display: flex;
  justify-content: center; 
  gap: 40px;
  margin-top: 6%;
  margin-bottom: 6%;
}

.contact-footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-footer-right img {
  width: 30px;   
  height: 30px;  
}

.cv-footer-right a {
  color: #1d2c3f; 
  font-size: 18px;
  font-style: italic;
  text-decoration: none; 
  font-weight: 200; 
  transition: color 0.3s ease; 
}

.cv-footer-right a:hover {
  color: #e0c591; 
}
}

@media (max-width: 768px) {

  /* --- ABOUT --- */
  .about {
    padding-top: 0px;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 0px;
    margin-top: 0;
  }

  .about-logo {
    width: 100%;
    height: auto;
    background: #1d2c3f; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 0;
    border-radius: 0 0 20px 20px; 
    padding: 40px 0;
    order: -1; 
    aspect-ratio: 1;
  }

  .about-logo img {
    max-width: 70%;
    padding-top: 100px;
    height: auto;
  }

  .about-text {
    flex: 1;
    padding: 20px 10px 60px 20px;
    color: #1d2c3f; 
  }

  .about-text h2 {
    font-size: 40px;
    padding: 20px 0;
  }

  .about-text p {
    font-size: 20px;
    line-height: 1.6;
    padding: 0 20px 20px 0;
  }

  .about-highlight {
    display: flex;
    flex-direction: column;
    width: 85%;
    height: fit-content;
    align-items: flex-start;  
    border-radius: 0 20px 20px 0;
    margin: 0;
    background: #e0c591; 
    padding: 40px 50px;
    margin-top: -8%;
    justify-content: space-between;
    gap: 40px;
    position: relative; 
    z-index: 2; 
  }

  .about-highlight h3 {
    order: -1; /* título antes */
    font-size: 40px;
    font-weight: 700;
    color: #1d2c3f;
    margin: 0;
    line-height: 1.2;
    text-align: left;
  }

  .about-highlight p {
    order: 0;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    color: #1d2c3f;
    line-height: 1.5;
    text-align: left;
  }

  /* --- SÓCIOS TÍTULO --- */
  .socios-titulo {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    border-radius: 20px 0 0 20px;
    padding: 40px 20px 40px 20px;
    margin-top: 50px;
    width: 85%;
    margin-left: 65px;
    height: fit-content;
    background: #1d2c3f; 
    gap: 30px;
    position: relative; 
  }

  .socios-titulo h3 {
    font-size: 36px;
    text-align: right;
    padding-top: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .socios-titulo p {
    font-size: 20px;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.6;
    text-align: right;
  }

  /* --- CV BOXES --- */
  .cv-box-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    border-radius: 0 20px 20px 0;
    margin: 80px 60px 0 0;
    background: #e5e5e5;
    width: 85%;
    height: fit-content;
  }

  .cv-box-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    border-radius: 20px 0 0 20px;
    margin: 80px 0 100px 85px;
    background: #e5e5e5;
    width: 80%;
    height: fit-content;
    position: relative;
  }

  /* --- TOPO EM COLUNA --- */
  .cv-top-left,
  .cv-top-right {
    display: flex;   /* essencial pro order */
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  /* ORDEM dos blocos */
  .cv-photo-left,
  .cv-photo-right { order: 1;
  margin-top: -20px; }

  .cv-text-left,
  .cv-text-right {
    display: flex;
    flex-direction: column;
    order: 2;
    padding: 0;
    text-align: center;
  }

  .cv-text-left h3 {
    order: 2;
    font-size: 28px;
    text-align: left;
    padding: 40px 90px 0 30px;
    font-weight: 700;
    color: #1d2c3f;
    margin: 0 0 10px 0;
  }

  .cv-text-right h3 {
    order: 2;
    font-size: 28px;
    text-align: right;
    padding-right: 40px;
    padding-left: 60px;
    padding-top: 20px;
    font-weight: 700;
    color: #1d2c3f;
  }

  .cv-text-left p {
    order: 3;
    font-size: 16px;
    text-align: left;
    padding-left: 30px;
    font-weight: 300;
    color: #1d2c3f;
  }

  .cv-text-right p {
    order: 3;
    font-size: 16px;
    text-align: right;
    padding: 0 40px 0 10px;
    font-weight: 300;
    color: #1d2c3f;
  }

  .cv-body-left,
  .cv-body-right { order: 4; margin: 20px 0; }

  .cv-body-left p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 25px 0 30px;
    text-align: left;
    font-weight: 200;
    color: #1d2c3f;
  }

  .cv-body-right p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 40px 0 25px;
    text-align: right;
    font-weight: 200;
    color: #1d2c3f;
  }

  .cv-footer-left {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 40px 70px;
    align-items: flex-start;
  }

  .cv-footer-right {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 60px 40px 0;
    align-items: flex-end;
  }

  .cv-footer-left a,
  .cv-footer-right a {
    color: #1d2c3f; 
    font-size: 18px;
    font-style: italic;
    text-decoration: none; 
    font-weight: 300; 
    transition: color 0.3s ease; 
  }

  /* --- FOOTER CONTATO --- */
  .contact-footer-left,
  .contact-footer-right {
    align-items: center;
    gap: 10px;
    display: flex;
    margin-left: 20px;
  }

  .contact-footer-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .contact-footer-left a,
  .contact-footer-right a {
    font-size: 14px;
    text-align: center;
  }

  .contact-footer-left img,
  .contact-footer-right img {
    width: 25px;
    height: 25px;
  }
}

/* MATERIAIS PÁGINA */

.publicacoes-section {
  width: 100%;
  background-color: #1d2c3f; 
  height: 500px;
  border-radius: 0 0 40px 40px;
  color: #fff; 
  padding: 60px 20px; 
  box-sizing: border-box;
}

.publicacoes .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;            
  align-items: center;      
  justify-content: space-between; 
  gap: 40px;                
}

.publicacoes h2 {
  font-size: 50px;
  font-weight: 700;
  margin-top: 250px;
  text-align: right;
  flex: 1;   
}

.publicacoes p {
  font-size: 22px;
  line-height: 1.6;
  margin: 0;   
  margin-top: 250px;
  padding-right: 120px;
  text-align: justify;
  flex: 2;   
}

.livro-section {
  width: 100%;
  padding-top: 100px;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.livro-section .container {
  padding-right: 10%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.livro-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-top: 30px;
  padding-left: 200px;
}

.livro-right {
  flex: 2;
  padding-left: 80px;
}

.livro-right h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d2c3f;
  margin-bottom: 10px;
}

.livro-right h4 {
  font-size: 20px;
  font-weight: 400;
  color: #1d2c3f;
  margin-bottom: 30px;
}

.livro-right p {
  font-size: 22px;
  line-height: 1.6;
  color: #1d2c3f;
  margin-bottom: 15px;
  font-weight: 300;
  text-align: justify;
}

/* Retângulo decorativo padrão (imagem à esquerda) */
.livro-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; 
  width: 400px;
  height: 520px;
  background-color: #f0f0f0;
  border-radius: 0 40px 40px 0;
  z-index: 0;
}

.livro-left img {
  max-width: 250px;
  max-height: 400px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/*LADO DIREITO*/

/* Container principal */
.livro-section.livro2 .livro2-container {
  display: flex;
  flex-direction: row-reverse; 
  align-items: center;
  gap: 20px;
  padding-left: 2%;
}

.livro2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative; 
  padding-top: 30px;
  padding-left: 200px;
}

.livro2-imagem {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  padding-right: 200px;
}

/* Retângulo decorativo à direita */
.livro2-imagem::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 520px;
  background-color: #f0f0f0;
  border-radius: 40px 0 0 40px;
  z-index: 0;
}

.livro2-imagem img {
  max-height: 400px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.livro2-texto {
  flex: 2;
  padding-right: 60px;
}

.livro2-texto h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d2c3f;
  margin-bottom: 10px;
}

.livro2-texto h4 {
  font-size: 20px;
  font-weight: 400;
  color: #1d2c3f;
  margin-bottom: 30px;
}

.livro2-texto p {
  font-size: 22px;
  line-height: 1.6;
  color: #1d2c3f;
  margin-bottom: 15px;
  font-weight: 300;
  text-align: justify;
}

.btn-comprar {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  height: 50px;
  color: #1d2c3f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: #e0c591; 
  border-radius: 12px; 
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-comprar:hover {
  background: #e0c591;
  color: #ffffff;
}

.btn-comprar .btn-icon {
  background: #1d2c3f; 
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-comprar:hover .btn-icon {
  background: #1d2c3f;
  color: #ffffff;
}

.separador {
  border: none;
  border-top: 1px solid #ddd;
  margin: 40px auto;
  width: 60%;
}

/* ================== MOBILE ================== */
@media (max-width: 768px) {
  /* Seção Materiais */
  .publicacoes-section {
    height: auto;
    padding: 70px 20px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 60px;
    text-align: center;
  }

.publicacoes .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start; 
    text-align: left;
  }

  .publicacoes h2 {
    font-size: 36px;
    margin: 0;            
    padding-top: 70px;           
    text-align: left;
  }

  .publicacoes p {
    font-size: 16px;
    margin: 10px 0 0 0;   
    padding: 0;           
    text-align: left;
  }

  /* Seções de livros */
  .livro-section .container,
  .livro-section.livro2 .livro2-container {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .livro-section {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .livro2 {
    padding-left: 0;
  }

  .livro-left,
  .livro2-imagem {
    padding: 0;
    align-items: center;
  }

  .livro-left::before,
  .livro2-imagem::before {
    display: none; /* remove retângulos decorativos no mobile */
  }

  .livro-left img,
  .livro2-imagem img {
    max-width: 200px;
    max-height: 300px;
  }

  .livro-right,
  .livro2-texto {
    padding: 0;
    text-align: center;
  }

  .livro-right h2,
  .livro2-texto h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .livro-right h4,
  .livro2-texto h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .livro-right p,
  .livro2-texto p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  /* Botão comprar */
  .btn-comprar {
    font-size: 16px;
    padding: 12px 20px;
    gap: 10px;
  }

  .btn-comprar .btn-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .separador {
    width: 80%;
    margin: 30px auto;
  }
}


/* CONTATO */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh; /* altura mínima igual à da tela */
}

main {
  background: linear-gradient(rgba(29,44,63,0.8), rgba(29,44,63,0.8)),
              url('assets/images/handshake-men.jpeg') center/cover no-repeat;
  background-attachment: fixed; 
  background-size: cover;
  padding: 60px 20px;
  color: #fff;
  min-height: auto; 
}

.contato-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  margin-top: 200px;
  margin-right: 300px;
}

/*  Lado esquerdo  */
.info-contato {
  flex: 1;
}

.info-contato h2 {
  font-size: 60px;
  font-weight: 700;
  text-align: right;
  margin-bottom: 15px;
}

.info-contato p {
  font-size: 20px;
  line-height: 1.3;
  text-align: right;
  padding-left: 100px;
  margin-bottom: 30px;
}

.info-contato a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  display: block;
  text-align: right;
  padding-left: 200px;
}

.linkedin {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  gap: 2px;
  margin-top: 22px;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  text-align: right;
  padding-top: 20px;
}

.linkedin a {
    color: #fff;
  font-size: 20px;
  text-decoration: none;
  display: block;
  text-align: right;
  padding-left: 10px;
}

.linkedin img {
  width: 30px;
}

/* Formulário */
.formulario-contato {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.formulario-contato label {
  margin-bottom: 0px;
  margin-top: 0px;
}

.formulario-contato input,
.formulario-contato textarea {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 550px;
  font-family: 'Montserrat', sans-serif;
}

.formulario-contato button {
  padding: 12px;
  background-color: #e0c591; 
  font-size: 16px;
  border: none;
  border-radius: 8px;
  width: 200px;
   cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.formulario-contato button:hover {
  background-color: #ffffff;   
  transform: translateY(-2px); 
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.mapa-wrapper {
  width: 100%;
  display: block; 
  margin-top: 60px;
}

.mapa {
  padding: 100px 20px 60px 20px; 
  display: flex;            
  align-items: center;      
  justify-content: center;  
  gap: 40px;               
  color: #fff;
  flex-wrap: wrap;          
}

@media (min-width: 1800px) {

.mapa {
  padding: 100px 20px 60px 20px; 
  display: flex;            
  align-items: center;      
  justify-content: center;  
  gap: 55px;               
  color: #fff;
  flex-wrap: wrap;   
}

.mapa iframe {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  border: none;
  display: block;   
  border-radius: 16px;
}

}

.mapa h3 {
  font-size: 50px;
  margin: 0;   
  text-align: right;            
}

.endereco {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;               
  max-width: 400px;        
  text-align: left;
  padding-right: 60px;
}

.mapa iframe {
  width: 100%;
  max-width: 1000px;
  height: 350px;
  border: none;
  display: block;   
  border-radius: 16px;
}

@media (max-width: 768px) {
  main {
    padding: 40px 15px;
    background-attachment: scroll; /* evita bug em alguns celulares */
  }

  .contato-wrapper {
    flex-direction: column;
    gap: 40px;
    margin: 60px auto 0 auto;
    padding: 0;
    margin-right: 0;
  }

  /* Info de contato */
  .info-contato {
    text-align: left;
  }

  .info-contato h2 {
    font-size: 40px;
    padding-left: 10px;
    padding-top: 30px;
    text-align: left;
  }

  .info-contato p,
  .info-contato a {
    font-size: 18px;
    text-align: left;
    padding-left: 10px;
  }

  .linkedin {
  display: none;
  }

  .linkedin a {
    padding-left: 0;
  }

   .linkedin img {
    width: 40px;
    margin-left: 20px;
  }


  /* Formulário ocupa a tela */
  .formulario-contato {
    width: 90%;
    margin-left: 10px;
  }

  .formulario-contato input,
  .formulario-contato textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .formulario-contato button {
    width: 100%;
    max-width: 100%;
  }

  /* Mapa em coluna */
.mapa {
  flex-direction: column;
  text-align: left;
  gap: 20px;
  padding-top: 70px;
  padding-left: 10px;           
  margin: 0;
  align-items: flex-start; 
  justify-content: flex-start; 
}

.mapa h3 {
  font-size: 40px;
  text-align: left;
  margin: 0;            
}

.endereco {
  font-size: 16px;
  padding: 0;            
  margin: 0;
  max-width: 100%;
  text-align: left;
  padding-bottom: 20px;
}

  .mapa iframe {
    width: 100%;
    height: 250px;
  }
}

/* POLÍTICA DE PRIVACIDADE */

.politica-text h2 {
font-size: 50px;
padding-bottom: 40px;
}

.politica p  {
  font-size: 18px;
  padding-bottom: 20px;
}

.politica p strong {
  display: block; 
  margin-bottom: 4px; 
  font-weight: 700;
}

body.politica-page {
  background-color: #1d2c3f;
  margin: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

body.politica-page .politica {
  padding-top: 200px;
  padding-left: 20px;
  padding-bottom: 100px;
  padding-right: 30px;
}

body.politica-page .politica-text {
  max-width: 1000px;
  margin: 0 auto; 
}

@media (max-width: 768px) {

  body.politica-page .politica {
    padding-top: 120px;
  }

  body.politica-page .politica-text h2 {
    font-size: 36px;
  }

  body.politica-page .politica p {
    font-size: 15px;
  }

}

/* SOLUÇÕES PÁGINA */ 

.solucoes-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.yellow-rect {
  position: absolute;
  top: 2%;
  right: -16%;
  width: 700px;
  height: 200px;
  background-color: #e0c591;
  border-radius: 50px 0 0 50px;
  margin-top: 8%;
  z-index: 1; /* Camada mais baixa */
}

.hero-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  z-index: 3; /* Camada intermediária, acima do fundo amarelo */
}

.hero-image img {
  width: 44%;
  height: 44%;
  border-radius: 50px 0 0 50px;
  margin-top: 13%;
  margin-right: -5%;
}

.hero-text {
  position: absolute;
  background-color: #1d2c3f;
  color: #fff;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-right: 5%;
  padding-left: 5%;
  margin-left: 13%;
  margin-top: 22%;
  width: 54%;
  height: fit-content;
  border-radius: 50px;
  z-index: 2; /* Camada mais alta para o texto e os botões */
}

.hero-text h1 {
  font-size: 270%;
  padding-top: 20px;
  font-weight: 700;
  margin-bottom: 2%;
  padding-right: 12%;
  padding-left: 10%;
  text-align: right;
}

.hero-text p {
  font-size: 150%;
  padding-right: 12%;
  padding-left: 12%;
  text-align: right;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2%;
  color: #ffffff;
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  padding-right: 12%;
  padding-top: 6%;
  padding-bottom: 5%;
  position: relative;
  z-index: 4; /* Opcional, para garantir que os botões fiquem acima de qualquer coisa no bloco de texto */
}

    .btn {
      background-color: #e0c591;
      color: #1d2c3f;
      padding: 12px 20px;
      border: none;
      text-decoration: none;  
      border-radius: 10px;
      font-weight: 700;
      font-size: 18px;
      width: 175px;
      height: 65px;
      cursor: pointer;
      transition: 0.3s;
      text-align: center;
      align-content: center;
      z-index: 4;
    }

    .btn:hover {
      background-color: #e0c591;
    }

    .solutions-page {
      padding-bottom: 90px;
    }

  .solutions-page-header { 
  display: flex;
  gap: 60px; 
  align-items: flex-end; 
  max-width: 1200px; 
  margin: 0 auto 30px; 
  padding-top: 100px;
}

.solutions-page-header h2 { 
  font-family: 'Montserrat', sans-serif; 
  width: 400px;
  font-weight: 700; 
  font-size: 60px; 
  padding-top: 8px;
  color: #1d2c3f; 
  margin: 0;
  line-height: 1.2; 
  flex-shrink: 0;
}

.solutions-page-header p { 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 300; 
  margin-left: 1000px;
 font-size: 22px; 
  color: #1d2c3f; 
  margin: 0;
  flex: 1; 
  line-height: 1.2; 
}

    .solucoes-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding-top: 40px;
      justify-content: center;
    }

    .solucao-card {
      border-radius: 30px;
      padding: 60px 40px;
      width: 600px;
      height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .solucao-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .credor {
      background-color: #e5e7eb; 
      color: #1f2937;
    }

    .devedor {
      background-color: #1d2c3f; 
      color: #ffffff;
    }

    .solucao-card h2 {
      font-weight: 600;
      font-size: 30px;
      text-align: center;
      margin-bottom: 20px;
    }

    .solucao-card p {
      font-weight: 300;
      font-size: 18px;
      text-align: justify;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .solucao-card ul {
      list-style:none;
      padding-left: 0;
    }

    .solucao-card li {
      margin-bottom: 10px;
      font-size: 18px;
      position: relative;
      padding-left: 20px;
      font-weight: 300;
      text-align: justify;
    }
     .solucao-card li::before {
      content: "-";
      position: absolute;
      left: 0;
      font-weight: 100;
    }

    .solucao-card-menor {
      border-radius: 30px;
      padding: 60px 40px;
      width: 600px;
      height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .solucao-card-menor:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .credor {
      background-color: #e5e7eb; 
      color: #1f2937;
    }

    .devedor {
      background-color: #1d2c3f; 
      color: #ffffff;
    }

    .solucao-card-menor h2 {
      font-weight: 600;
      font-size: 30px;
      text-align: center;
      margin-bottom: 20px;
    }

    .solucao-card-menor p {
      font-weight: 300;
      font-size: 18px;
      text-align: justify;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .solucao-card-menor ul {
      list-style:none;
      padding-left: 0;
    }

    .solucao-card-menor li {
      margin-bottom: 10px;
      font-size: 18px;
      position: relative;
      padding-left: 20px;
      font-weight: 300;
      text-align: justify;
    }

    .solucao-card-menor li::before {
      content: "-";
      position: absolute;
      left: 0;
      font-weight: 100;
    }

    .slider-indicator {
      margin-top: 40px;
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .slider-indicator span {
      display: block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #d1d5db;
      transition: background-color 0.3s ease;
    }

    .slider-indicator span.active {
      background-color: #1e293b;
    }

@media (max-width: 768px) {
  /* HERO */
  .solucoes-hero {
    flex-direction: column;
    padding-bottom: 30px;
  }

  .yellow-rect {
    display: none; /* tira o retângulo amarelo que quebra no mobile */
  }

  .hero-text {
    order: 2;
    position: relative;
    margin: 0;
    margin-top: -60px;
    padding-bottom: 30px;
    padding-top: 30px;
    width: 90%;
    height: fit-content;
    text-align: center;
    background-color: #1d2c3f;
    border-radius: 20px;
    z-index: 2;
  }
  
  .hero-text h1 {
    font-size: 32px;
    padding: 0;
    text-align: left;
  }

  .hero-text p {
    font-size: 16px;
    padding: 0;
    text-align: left;
  }

  .hero-image {
    justify-content: center;
    margin-top: 20px;
    z-index: 1;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 20px 20px;
    margin: 0;
  }

  .btn-group {
    display: none;
  }

  .solutions-page-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 40px;
  }

  .solutions-page-header h2 {
    font-size: 32px;
    width: 100%;
    text-align: left;
  }

  .solutions-page-header p {
    font-size: 16px;
    margin: 0;
    text-align: left;
  }

  /* CARDS */
  .solucoes-container {
    flex-direction: column;
    padding: 20px;
  }

  .solucao-card,
  .solucao-card-menor {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .solucao-card h2,
  .solucao-card-menor h2 {
    font-size: 22px;
  }

  .solucao-card p,
  .solucao-card-menor p {
    font-size: 16px;
  }

  .solucao-card li,
  .solucao-card-menor li {
    font-size: 14px;
  }

  /* ordem dos elementos */
  .hero-image {
    order: 1;
    justify-content: center;
    margin: 0 auto 20px;
  }

  /* esconde o retângulo amarelo no mobile */
  .yellow-rect {
    display: none;
  }
}

  .form-status {
    display: none;
    font-weight: 600;
    margin-top: 8px;
  }

  .form-status.success {
    color: green;
  }

  .form-status.error {
    color: red;
  }