/*************************************************************
  HEADER
    **************************************************************/

/* Fontes elegantes para tattoo studio */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Playfair+Display:wght@400;700;900&display=swap");

.header-content {
  position: absolute;
  top: 45%; /* Ajustado para subir um pouco */
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-0.5px) scale(1.5);
  z-index: 5;
  text-align: center;

  max-width: 1200px;
}

header {
  position: relative;
  min-height: 100vh;
  width: 100%;
  transform-style: inherit;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
 
  background-size: cover;
  transform: translateZ(-1px) scale(2.1);
  min-height: 100%;
  z-index: -2;
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(-1px) scale(2.1); /* mantém seu efeito parallax */
  z-index: -2;
}

/* Por padrão: desktop */
#video-bg-desktop { display: block; }
#video-bg-mobile { display: none; }

/* Mobile */
@media (max-width: 768px) {
  #video-bg-desktop { display: none; }
  #video-bg-mobile { display: block; }
}


/* Background de vídeo / SVG */
.videoSvg-bg {
  position: absolute; /* chave do parallax */
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -10;
  max-width: 100%;
  object-fit: cover;
  transform: translateY(-5%);
  will-change: transform;
}

/* Vídeos internos */
.videoSvg-bg video,
.videoSvg-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop visível */
.vdesktop {
  display: block;
}
.vmobile {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .vdesktop {
    display: none;
  }

  .vmobile {
    display: block;
  }

  /* Parallax mais suave no mobile */
  .videoSvg-bg {
    transform: translateY(-6%);
  }
}

/*************************************************************
  SECTIONS
**************************************************************/
section {
  position: relative;
  min-height: 120vh;
  width: 100%;
  position: relative;
  transform-style: inherit;
  overflow: hidden;
}
/* Wrapper para o vídeo ficar fixo no fundo da section */
.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


.section1 {
  position: relative;    
  min-height: 100vh; 
  overflow: hidden;
  box-shadow: 0 0 20px #333;
  z-index: 1;
}

.section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: url(https://picsum.photos/g/1920/1080?random) top center;
  background-size: cover;
  transform: translateZ(-0.5px) scale(1.6);
  z-index: -1;
}

/*************************************************************
  HEADINGS
**************************************************************/
h1 {
  font-size: 4rem;
  text-align: center;
  position: absolute;
  padding: 1rem;
  background: #fafafa;
  box-shadow: 0 0 20px #333;
  top: 50%;
  left: 50%;
  transform: translateZ(-1px) scale(2) translate(-25%, -25%);
}

.section1 h1 {
  z-index: 3;
  transform: translate(-50%, -50%);
  box-shadow: none;
}

.section2 h1 {
  transform: translateZ(-0.3px) scale(1.3) translate(-39%, -39%);
  z-index: 3;
}

/*************************************************************
  BASIC STYLES
**************************************************************/
*,
*::before,
*::after,
:root {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@import "https://fonts.googleapis.com/css?family=Overlock:400,400i,700|Oleo+Script";

html {
  overflow: hidden;
  height: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  perspective: 1px;
  transform-style: preserve-3d;
  font-size: 62.5%;
  font-family: "Overlock", Arial, Helvetica, sans-serif;
}

.author {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  padding: 0.5rem 1rem;
  background: #fafafa;
  border-bottom-left-radius: 5px;
  transition: 300ms;
}

.author a,
.author a:visited {
  color: #333;
  text-decoration: none;
  display: block;
  transition: 300ms;
}

.author:hover,
.author:active {
  box-shadow: 0 0 10px #33333350;
}
/*************************************************************
  HEADER - LOGO NO TOPO
**************************************************************/
.header-logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateZ(0); /* Fica fixo, não sofre parallax */
  z-index: 10;
  text-align: center;
}

.header-logo h2 {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fafafa;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

/*************************************************************
  TEXTO KNOCKOUT (VAZADO/TRANSPARENTE) - REDESENHADO
**************************************************************/
.knockout-text {
  font-family: "Cinzel", serif; /* Fonte elegante e sofisticada */
  font-size: 6rem; /* Tamanho reduzido */
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 1rem 0;

  /* Efeito Knockout */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  /* Contorno elegante */
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);

  padding: 2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Segunda linha: "tattoo" menor e estilizada */
.knockout-text .tattoo-line {
  display: block;
  font-family: "", serif; /* Fonte cursiva elegante */
  font-size: 2.5rem; /* Bem menor */
  font-weight: 400; /* Mais leve */
  font-style: italic; /* Itálico para sofisticação */
  letter-spacing: 8px; /* Espaçamento amplo */
  margin-top: 1rem;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  text-transform: lowercase; /* Força minúsculas */
}

/*************************************************************
  BOTÃO DE SCROLL - INDEPENDENTE E CENTRALIZADO
**************************************************************/
.scroll-btn {
  /* Posicionamento absoluto independente */
  position: absolute;
  bottom: 3rem; /* Distância do fundo do header */
  left: 50%;
  transform: translateX(-50%) translateZ(0); /* Centraliza horizontalmente */
  z-index: 10;

  /* Estilos visuais */
  display: inline-block;
  text-decoration: none;
  color: #fafafa;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 1.2rem 2.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border: 2px solid #fafafa;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) translateY(-5px); /* Mantém centralização no hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.scroll-btn span {
  display: block;
  margin-bottom: 0.5rem;
}

.arrow-down {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-right: 3px solid #fafafa;
  border-bottom: 3px solid #fafafa;
  transform: rotate(45deg);
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(10px);
  }
}

/*************************************************************
  RESPONSIVIDADE ATUALIZADA
**************************************************************/
@media screen and (max-width: 1024px) {
  .knockout-text {
    font-size: 5rem;
    -webkit-text-stroke: 1.8px rgba(255, 255, 255, 0.9);
    padding: 1.8rem 2.5rem;
  }

  .knockout-text .tattoo-line {
    font-size: 2rem;
    letter-spacing: 6px;
  }

  .scroll-btn {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .knockout-text {
    font-size: 3.5rem;
    padding: 1.5rem 2rem;
  }

  .knockout-text .tattoo-line {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-top: 0.8rem;
  }

  .scroll-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .knockout-text {
    font-size: 2.2rem;
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
  }

  .knockout-text .tattoo-line {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.7);
  }

  .scroll-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.8rem;
    margin-top: 2.5rem;
    letter-spacing: 2px;
  }

  .arrow-down {
    width: 14px;
    height: 14px;
  }
}
/*************************************************************
  EFEITOS DE LUZ NO VÍDEO
**************************************************************/

/* Overlay escuro com gradiente */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;

  /* Gradiente radial do centro para as bordas */
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );

  /* Vinheta nas bordas */
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);

  pointer-events: none;
}

/* Efeito de luz spotlight animado */
/* Efeito de múltiplos feixes de luz */
.light-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;

  /* Múltiplos feixes de luz */
  background-image:
    radial-gradient(
      ellipse 30% 40% at 30% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 50%
    ),
    radial-gradient(
      ellipse 30% 40% at 70% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 60% at 50% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    );

  animation: lightFlicker 5s ease-in-out infinite;
}

@keyframes lightFlicker {
  0%,
  100% {
    opacity: 0.7;
  }
  25% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.85;
  }
}

/* Animação de pulsação da luz */
@keyframes lightPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.05);
  }
}

/* Efeito de névoa/fumaça (opcional) */
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/*************************************************************
  FILTROS DE CATEGORIA - FIXO NO TOPO
**************************************************************/

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInFilters 1s ease-in 1s forwards;

  /* Fixa no topo quando a galeria abre */
  position: sticky;
  top: 0;
  background: #fafafa;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
}

@keyframes fadeInFilters {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-btn {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: 2px solid #333;
  background: transparent;
  color: #333;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover {
  background: #333;
  color: #fafafa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.filter-btn.active {
  background: #333;
  color: #fafafa;
}

/*************************************************************
  GALERIA COM FILTRO - ABAIXO DOS FILTROS
**************************************************************/

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 2rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInGallery 1s ease-in 1.5s forwards; /* Aparece após textos */
}

@keyframes fadeInGallery {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Resto do CSS da galeria permanece igual */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  aspect-ratio: 4/5;
}

.gallery-item.hide {
  display: none;
}

.gallery-item.show {
  animation: scaleUp 0.4s ease;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/*************************************************************
  RESPONSIVIDADE TEXTO INTRO E FILTROS
**************************************************************/

@media screen and (max-width: 1024px) {
  .intro-text {
    font-size: 3.5rem;
  }

  .filter-buttons {
    padding: 1.5rem 1.5rem;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .text-intro {
    min-height: 40vh;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .intro-text {
    font-size: 2.5rem;
  }

  .filter-buttons {
    gap: 10px;
    padding: 1.5rem 1rem;
    border-radius: 0 0 10px 10px;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 1.5rem 1rem 3rem;
  }
}

@media screen and (max-width: 480px) {
  .text-intro {
    min-height: 35vh;
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .intro-text {
    font-size: 1.8rem;
  }

  .filter-buttons {
    gap: 8px;
    padding: 1rem 0.5rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}
/*************************************************************
  LIGHTBOX ESTILO INSTAGRAM - CORRIGIDO
**************************************************************/

.lightbox {
  position: fixed;
  inset: 0; /* TELA INTEIRA: top:0 right:0 bottom:0 left:0 */
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox.active {
  display: flex;
  pointer-events: all;
}

@media (max-height: 600px) {
  .lightbox {
    top: 5vh;
    height: 90vh;
  }
}

@media (max-width: 768px) {
  .lightbox {
    top: 5vh; /* Mais espaço em mobile */
    height: 90vh;
    flex-direction: column;
    padding: 1rem;
  }
}

.lightbox-backdrop {
  position: fixed; /* MUDADO de absolute para fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99998;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 99999; /* Acima do backdrop */
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-image-container {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 2rem;
  color: #fff;
  z-index: 100000;
}

.lightbox-caption p {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff; /* GARANTIDO */
}

/*************************************************************
  BOTÕES DO LIGHTBOX - CORRIGIDOS
**************************************************************/

.lightbox-close {
  position: fixed; /* MUDADO para fixed */
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  cursor: pointer;
  z-index: 100001; /* MUITO ALTO */
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: fixed; /* MUDADO para fixed */
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100001; /* MUITO ALTO */
  border-radius: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/*************************************************************
  RESPONSIVIDADE DO LIGHTBOX
**************************************************************/

@media screen and (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 0.8rem 1rem;
  }

  .lightbox-close {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .lightbox-caption p {
    font-size: 1.2rem;
    padding: 1rem;
  }

  #lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

@media screen and (max-width: 480px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.6rem 0.8rem;
  }

  .lightbox-close {
    font-size: 2rem;
    width: 35px;
    height: 35px;
  }

  .lightbox-caption p {
    font-size: 1rem;
  }
}
/*************************************************************
  SECTION ABOUT - COM PARALLAX
**************************************************************/

.section-about {
  position: relative;
  min-height: 150vh; /* Altura maior para permitir parallax */
  width: 100%;
  overflow: hidden;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vídeo de Background - Camada mais profunda (movimento mais lento) */
.about-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(-3px) scale(2.5); /* MAIS PROFUNDO = mais lento */
  z-index: -3;
}

/* Overlay escuro */
.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.85) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: -2;
}

/*************************************************************
  CAMADA PARALLAX - IMAGEM DO VITOR
**************************************************************/

.parallax-image {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) translateZ(-1.5px) scale(1.8); /* Velocidade média-lenta */
  z-index: 1;
  opacity: 0.3; /* Semi-transparente para não competir com texto */
  pointer-events: none;
}

.parallax-image img {
  width: 400px;
  height: auto;
  filter: grayscale(100%) contrast(1.2);
  /* Efeito de recorte/silhueta */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

/*************************************************************
  CAMADA PARALLAX - TEXTO (AJUSTADO)
**************************************************************/

.parallax-text {
  position: relative;
  transform: translateZ(-0.2px) scale(1.1); /* REDUZIDO - menos movimento */
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 4rem 2rem;
}

.about-content {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 900px; /* LIMITADO para não ficar muito largo */
  margin: 0 auto;
}

/* Título Principal */
.about-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Divisor decorativo */
.about-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  margin: 0 auto 3rem;
}

/* Seções de texto */
.about-section {
  margin-bottom: 3rem;
}

.about-section h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section p {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: justify;
}

/* Localização */
.about-location {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-location p {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

/*************************************************************
  RESPONSIVIDADE ABOUT
**************************************************************/

@media screen and (max-width: 1024px) {
  .parallax-image {
    right: 5%;
    opacity: 0.2;
  }

  .parallax-image img {
    width: 300px;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-content {
    padding: 3rem;
  }

  .about-section h3 {
    font-size: 1.6rem;
  }

  .about-section p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .section-about {
    min-height: 120vh;
  }

  .parallax-image {
    display: none;
  }

  .parallax-text {
    transform: translateZ(-0.1px) scale(1.05); /* AINDA MENOR em mobile */
  }

  .about-content {
    padding: 2.5rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-section h3 {
    font-size: 1.4rem;
  }

  .about-section p {
    font-size: 1.3rem;
    text-align: left;
  }

  .about-location p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .section-about {
    min-height: 100vh;
  }

  .parallax-text {
    transform: translateZ(0) scale(1); /* SEM parallax em telas pequenas */
  }

  .about-content {
    padding: 2rem;
    border-radius: 15px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-section {
    margin-bottom: 2rem;
  }

  .about-section h3 {
    font-size: 1.2rem;
  }

  .about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .about-location p {
    font-size: 1rem;
  }
}
/*************************************************************
  SECTION TESTIMONIALS - 3 AVALIAÇÕES
**************************************************************/

.section-testimonials {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Efeito de fundo animado */
.section-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/*************************************************************
  HEADER DA SEÇÃO
**************************************************************/

.testimonials-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-divider {
  width: 150px;
  height: 3px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  margin: 0 auto;
  animation: expandWidth 1s ease 0.3s backwards;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 150px;
  }
}

/*************************************************************
  CONTAINER DOS CARDS - 3 COLUNAS
**************************************************************/

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/*************************************************************
  CARDS DE DEPOIMENTOS
**************************************************************/

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(50px);
  overflow: hidden;
}

/* Animação de entrada dos cards */
.testimonial-card[data-aos="fade-up"] {
  animation: fadeUpCard 0.8s ease forwards;
}

@keyframes fadeUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delays para efeito cascata */
.testimonial-card[data-aos-delay="0"] {
  animation-delay: 0.2s;
}
.testimonial-card[data-aos-delay="200"] {
  animation-delay: 0.4s;
}
.testimonial-card[data-aos-delay="400"] {
  animation-delay: 0.6s;
}

/* Hover Effect */
.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/*************************************************************
  FOTO DO CLIENTE
**************************************************************/

.testimonial-photo {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(100%);
}

.testimonial-card:hover .testimonial-photo img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/*************************************************************
  CONTEÚDO DO CARD
**************************************************************/

.testimonial-content {
  padding: 2.5rem;
}

/*************************************************************
  RATING (ESTRELAS)
**************************************************************/

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.star {
  font-size: 2rem;
  color: #ffd700;
  transition: transform 0.3s ease;
  display: inline-block;
}

.testimonial-card:hover .star {
  transform: scale(1.2) rotate(10deg);
}

/*************************************************************
  TEXTO DO DEPOIMENTO
**************************************************************/

.testimonial-text {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  font-style: italic;
  text-align: center;
}

/*************************************************************
  AUTOR DO DEPOIMENTO
**************************************************************/

.author-name {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.author-detail {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: center;
}

/*************************************************************
  RESPONSIVIDADE
**************************************************************/

@media screen and (max-width: 1024px) {
  .testimonials-title {
    font-size: 3rem;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
  }

  .testimonial-photo {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .section-testimonials {
    padding: 6rem 1.5rem;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-header {
    margin-bottom: 4rem;
  }

  .testimonial-content {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1.3rem;
  }

  .star {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-photo {
    height: 250px;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1.2rem;
  }

  .author-name {
    font-size: 1.2rem;
  }

  .author-detail {
    font-size: 1.1rem;
  }

  .star {
    font-size: 1.5rem;
  }
}

/*************************************************************
  GALERIA - SUPORTE PARA VÍDEOS
**************************************************************/

/* Vídeo thumbnail na galeria */
.gallery-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ícone de play sobre o vídeo */
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.6);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  transition: all 0.3s ease;
}

.gallery-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  background: rgba(0, 0, 0, 0.8);
}

/*************************************************************
  LIGHTBOX - VÍDEO
**************************************************************/

#lightbox-video {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Esconde o elemento não usado */
#lightbox-img[style*="display: none"],
#lightbox-video[style*="display: none"] {
  display: none !important;
}

/*************************************************************
  PROFILE IMAGE BOX - CONTAINER DA FOTO
**************************************************************/

.profile-image-box {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.profile-img {
  width: 400px;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
  display: block;
}

.profile-img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/*************************************************************
  PROFILE INFO BOX - CONTAINER DO TEXTO
**************************************************************/

.profile-info-box {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/*************************************************************
  PROFILE NAME - NOME
**************************************************************/

.profile-name {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

/*************************************************************
  PROFILE DESCRIPTION - DESCRIÇÃO
**************************************************************/

.profile-description {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
}

/*************************************************************
  PROFILE LOCATION - LOCALIZAÇÃO
**************************************************************/

.profile-location {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*************************************************************
  RESPONSIVIDADE - TABLET
**************************************************************/

@media screen and (max-width: 1200px) {
  .profile-image-box {
    left: 5%;
  }

  .profile-img {
    width: 320px;
  }

  .profile-info-box {
    right: 5%;
    max-width: 600px;
  }

  .profile-name {
    font-size: 2.5rem;
  }

  .profile-description {
    font-size: 1.3rem;
  }
}

/*************************************************************
  RESPONSIVIDADE - MOBILE (70% CENTRALIZADO)
**************************************************************/

@media screen and (max-width: 768px) {
  .profile-image-box {
    left: 50%;
    top: 15%;
    transform: translate(-50%, 0);
  }

  .profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
  }

  .profile-info-box {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: none;
    padding: 2rem;
    text-align: center;
    max-height: 100vh;
    overflow-y: auto;
  }

  .profile-name {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .profile-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .profile-location {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .profile-image-box {
    top: 2%;
    margin-bottom: 10px;
    z-index: 1;
  }

  .profile-img {
    width: 150px;
    height: 100%;
    border-radius: 2px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-width: 3px;
  }

  .profile-info-box {
    margin-top: 100px;
    width: 85%;
    padding: 1.5rem;
    max-height: 100vh;
  }

  .profile-name {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .profile-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .profile-location {
    font-size: 1rem;
    padding-top: 0.8rem;
  }
}
/*************************************************************
  CTA SECTION - CALL TO ACTION
**************************************************************/

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 50vh;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  max-width: 500px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.cta-subtitle {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 3rem 0;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*************************************************************
  CTA BUTTON - BOTÃO WHATSAPP
**************************************************************/

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #25d366;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  transition: all 0.4s ease;
  animation: fadeInUp 1.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
}

/*************************************************************
  CONTACT SECTION - CONTATOS
**************************************************************/

/*************************************************************
  CONTACT SECTION - CONTATOS
**************************************************************/

.contact-section {
  background: #f8f8f8;
  padding: 5rem 2rem;
  min-height: 50vh;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/*************************************************************
  ÍCONES COLORIDOS
**************************************************************/

.contact-icon-img {
  width: 55px;
  height: 55px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card:hover .contact-icon-img {
  transform: scale(1.15);
}

/*************************************************************
  TÍTULOS E TEXTOS
**************************************************************/

.contact-title {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.8rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/*************************************************************
  RESPONSIVIDADE - TABLET
**************************************************************/

@media screen and (max-width: 1024px) {
  .contact-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-icon-img {
    width: 50px;
    height: 50px;
  }
}

/*************************************************************
  RESPONSIVIDADE - MOBILE
**************************************************************/

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .contact-card {
    padding: 1.8rem 1.2rem;
  }

  .contact-icon-img {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }

  .contact-title {
    font-size: 1.2rem;
  }

  .contact-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-icon-img {
    width: 42px;
    height: 42px;
  }

  .contact-title {
    font-size: 1.15rem;
  }

  .contact-text {
    font-size: 0.95rem;
  }
}

/*************************************************************
  MAP SECTION - MAPA FULL WIDTH
**************************************************************/

.map-section {
  width: 100%;
  background: #e0e0e0;
  min-height: 30vh;
}

.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*************************************************************
  FOOTER - RODAPÉ
**************************************************************/

.site-footer {
  background: #1a1a1a;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-text {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem 0;
}

/*************************************************************
  FOOTER SOCIAL - ÍCONES COLORIDOS
**************************************************************/

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.1);
}

.social-link:hover img {
  transform: scale(1.1);
}

/*************************************************************
  FOOTER COPYRIGHT
**************************************************************/

.footer-copy {
  font-family: "Overlock", Arial, sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*************************************************************
  RESPONSIVIDADE FOOTER
**************************************************************/

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .footer-brand {
    font-size: 1.7rem;
  }

  .footer-text {
    font-size: 1.1rem;
  }

  .footer-social {
    gap: 1.5rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    padding: 9px;
  }
}

@media screen and (max-width: 480px) {
  .site-footer {
    padding: 2rem 1.5rem 1.5rem;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-social {
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .footer-copy {
    font-size: 0.9rem;
    padding-top: 1.5rem;
  }
}

/*************************************************************
  RESPONSIVIDADE
**************************************************************/

@media screen and (max-width: 768px) {
  .cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-subtitle {
    font-size: 1.4rem;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .map-responsive {
    padding-bottom: 75%; /* 4:3 para mobile */
  }

  .site-footer {
    padding: 2rem 1.5rem;
  }

  .footer-brand {
    font-size: 1.6rem;
  }
  .videoSvg-bg {
    height: 100%;
  }
}

@media screen and (max-width: 480px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .videoSvg-bg {
    height: 100%;
  }
}

/* NARRATIVA BIOGRÁFICA */
/* Wrapper do conteúdo que vai rolar por cima do vídeo */
.content-wrapper {
    position: relative;
    z-index: 2; /* Acima do vídeo */
    width: 100%;
}

/* --- ESTILO NARRATIVA (CORRIGIDO) --- */
/* --- NARRATIVA SEQUENCIAL --- */

/* O Container principal */
.bio-narrative {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}

/* O "Vidro" do texto */
.bio-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4rem 2rem; /* Mais espaço vertical */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    
    /* O container em si fica estável */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* --- ESTADO DOS PARÁGRAFOS (CADA FRASE) --- */
.bio-content p {
    /* Começam invisíveis e deslocados para baixo */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out; /* Velocidade da subida */
    
    /* Estilos de fonte mantidos */
    font-family: 'Overlock', sans-serif;
    font-size: 1.5rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 2rem; /* Espaço entre frases para forçar rolagem */
}

.bio-content p.highlight {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 1.5rem 0;
}

/* CLASSE QUE O JS VAI ADICIONAR EM CADA FRASE */
.bio-content p.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- CLASSE DE SAÍDA EM MASSA --- */
/* Quando essa classe entrar no container pai, tudo some junto */
.bio-content.fade-out-all {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    transition: all 0.8s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .bio-content { padding: 2rem 1.5rem; }
    .bio-content p { font-size: 1.2rem; margin-bottom: 1.5rem; }
    .bio-content p.highlight { font-size: 1.5rem; }
}
#preloader {
  position: fixed;
  inset: 0;                 /* top/right/bottom/left: 0 */
  background: #000;         /* ou a cor que você quiser */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* exemplo de spinner simples */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}