body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* BARRA SUPERIOR */
.menu-topo {
  width: 100%;
  height: 90px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: 20;
  border-bottom: 1px solid #f5f5f5;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navegacao {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navegacao a {
  color: #000000;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.navegacao a.ativo {
  background: #2c2c2c;
  color: #ffffff;
  border-radius: 2px;
}

.navegacao a:not(.ativo) {
  opacity: 0.7;
}

.navegacao a:hover {
  opacity: 1;
}

/* REDE SOCIAL */
.redes-sociais a {
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.redes-sociais a:hover {
  opacity: 0.6;
}

/* CONTAINER SOBRE / QUEM SOMOS */
.secao-sobre-mim {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  box-sizing: border-box;
  padding: 40px;
  overflow-y: auto;
}

.escondido {
  opacity: 0;
  pointer-events: none;
}

.container-sobre {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  color: #000000;
  text-align: left;
}

.coluna-texto h2, .coluna-dados h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.coluna-texto p, .coluna-dados p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 15px;
}

.contatos-sobre {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contatos-sobre a {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s;
}

.contatos-sobre a:hover {
  opacity: 0.6;
}

/* CARROSSEL COM EFEITO DE ZOOM LENTO (KEN BURNS) */
.swiper {
  width: 100%;
  flex: 1;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s linear; /* Faz o zoom ser contínuo e suave */
}

/* Aplica o zoom sutil na foto que está aparecendo na tela */
.swiper-slide-active img,
.swiper-slide-duplicate-active img {
  transform: scale(1.12);
}

/* Reseta o tamanho da foto que saiu da tela instantaneamente */
.swiper-slide:not(.swiper-slide-active) img {
  transform: scale(1);
  transition: none;
}

.swiper-button-next, .swiper-button-prev {
  color: #000000 !important;
  opacity: 0.5;
  transform: scale(0.6);
  z-index: 10;
}

.swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.3) !important;
}

.swiper-pagination-bullet-active {
  background: #000000 !important;
}