/* FONTS - Poppins customizadas */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/poppins-v23-latin-500italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/poppins-v23-latin-700italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('./fonts/poppins-v23-latin-900italic.woff2') format('woff2');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* impede rolagem lateral */
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #551E3E;
}

/* ------------------ HEADER ------------------ */
/* HEADER TikTok - Moderno e Responsivo */
.tiktok-header {
  background: url('../img/Fundopink.jpg') center/cover no-repeat fixed;
  color: white;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tiktok-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tiktok-logo {
  font-size: 1.7rem;
  font-weight: 700; /* Especifica o peso */
  font-family: 'Poppins', sans-serif;
  font-style: italic; /* Especifica o estilo */
  text-align: center;
}

/* Navegação */
.tiktok-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.tiktok-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  /* Aplicando a fonte personalizada */
  font-family: 'Poppins', sans-serif;
  /* Garantindo que o estilo seja italic, conforme a fonte carregada */
  font-style: italic;
  transition: color 0.3s;
}

.tiktok-nav a:hover {
  color: #ffd6ec;
}

/* Responsivo - Desktop */
@media (min-width: 768px) {
  .tiktok-header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .tiktok-logo {
    text-align: left;
  }

  .tiktok-nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

/* BOTÕES */
.tiktok-btn {
  display: inline-block; /* Fundamental para links com padding e animações */
  padding: 14px 28px;
  margin: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white !important; /* Sobrepõe qualquer cor herdada */
  background: linear-gradient(135deg, #551E3E, #c42b89);
  border-radius: 30px;
  text-decoration: none; /* Remove o sublinhado */
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  min-width: 220px; /* Garante que os botões tenham tamanho mínimo */
}

.tiktok-btn:hover {
  background-color: #A62F6A;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* SEÇÃO DESTAQUE */
.tiktok-sec-destaque {
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  padding: 200px 20px;
  text-align: center; 
  position: relative; /* Já está correto */
  z-index: 2;
}

.tiktok-sec-destaque h1 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: #551E3E;
  font-weight: 900;
  position: relative; /* Adicionado */
  z-index: 3;
}

.tiktok-sec-destaque p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A62F6A;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  position: relative; /* Adicionado */
  z-index: 3;
}

.tiktok-btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative; /* Adicionado */
  z-index: 3;
}

.tikq {
  position: absolute;
  top: 0;
  bottom: 0;
  right:15px;
  margin: auto 0;
  transform: none;
  width: 200px;
  z-index: 1;
  pointer-events: none;
}

/* === ANIMAÇÕES PARA tiktok-sec-destaque === */
/* === ANIMAÇÕES PARA tiktok-sec-destaque === */

/* Estados iniciais - elementos começam invisíveis e deslocados */
#tiktok-sec-destaque h1 {
    opacity: 0;
    transform: translateX(-100px); /* Vem da esquerda */
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#tiktok-sec-destaque p {
    opacity: 0;
    transform: translateX(100px); /* Vem da direita */
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: 0.1s; /* Pequeno atraso em relação ao h1 */
}

#tiktok-sec-destaque .tiktok-btn-group {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

#tiktok-sec-destaque .tiktok-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

/* Estados animados - quando a classe 'tiktok-animar' é adicionada ao section */
#tiktok-sec-destaque.tiktok-animar h1,
#tiktok-sec-destaque.tiktok-animar p {
    opacity: 1;
    transform: translateX(0);
}

#tiktok-sec-destaque.tiktok-animar .tiktok-btn-group {
    opacity: 1;
    transition-delay: 0.2s; /* Atraso para o grupo de botões aparecer */
}

#tiktok-sec-destaque.tiktok-animar .tiktok-btn:nth-child(1) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s; /* Primeiro botão */
}

#tiktok-sec-destaque.tiktok-animar .tiktok-btn:nth-child(2) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s; /* Segundo botão com atraso maior */
}

/* Animação flutuar suave */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Fade-in básico */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Classe da imagem com animações */
.tikq {
  max-width: 300px;
  animation: fadeIn 1.2s ease-out forwards, float 4s ease-in-out infinite;
  opacity: 0;
}


/* === FIM DAS ANIMAÇÕES PARA tiktok-sec-destaque === */

/* SEÇÃO DESTAQUE - RESPONSIVO */
@media (max-width: 1250px) {
  .tiktok-sec-destaque {
    padding: 100px 15px;
  }

  .tiktok-sec-destaque h1 {
    font-size: 1.6rem;
  }

  .tiktok-sec-destaque p {
    font-size: 1rem;
  }

  .tikq {
    width: 150px;
    right: 10px;
  }
}

@media (max-width: 1121px) {
  .tikq {
    width: 90px;
    right: 38%;
    transform: translateX(50%); /* Centraliza horizontalmente */
    top: 20px; /* Distância do topo */
    bottom: auto; /* Remove o alinhamento vertical */
    margin: 0; /* Remove a margem automática */
  }
}

/* SEÇÃO FRENTES */
.tiktok-sec-frentes {
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  padding: 70px 20px;
  text-align: center;
  position: relative;
  isolation: isolate; /* Cria novo contexto de empilhamento */
}

.tiktok-sec-frentes h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #551E3E;
  font-weight: 900;
  position: relative; /* Garante que fique na frente */
  z-index: 2; /* Fica acima da imagem */
}

#tiktok-frentes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative; /* Garante que fique na frente */
  z-index: 2; /* Fica acima da imagem */
}

.tiktok-frente-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.76);
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2; /* Fica acima da imagem */
}

.tiktok-frente-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(211, 5, 57, 0.384);
}

.tiktok-frente-card h3 {
  font-size: 1.4rem;
  color: #551E3E;
  margin-bottom: 12px;
  font-weight: 700;
}

.tiktok-frente-card p {
  font-size: 1rem;
  color: #A62F6A;
  margin-bottom: 15px;
  font-weight: 500;
}

.tiktok-frente-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #A62F6A;
  font-weight: 500;
}

.mulher {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto 0;           /* Centraliza verticalmente */
  transform: none;          /* Remove o translateY */
  width: 250px;
  z-index: 1; /* Fica atrás do conteúdo */ /* Reduz a opacidade para não sobrepor */
  pointer-events: none;
}

.publico-item {
  position: relative; /* necessário para posicionar ícone */
  overflow: visible;
}

.publico-icon-topo {
  position: absolute;
  top: -30px; /* metade para fora */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  z-index: 2;
}

/* === ANIMAÇÕES PARA tiktok-sec-frentes === */



/* Entrada animada de baixo */
.mulher.animate {
  animation: slideInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Segunda animação: flutua após entrar */
.mulher.float {
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 0.3s; /* Começa após a entrada */
}

/* Animação de entrada suave */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animação de flutuação natural */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}





/* Estados iniciais */
#tiktok-sec-frentes h2,
#tiktok-sec-frentes .mulher,
#tiktok-sec-frentes .tiktok-frente-card,
#tiktok-sec-frentes .tiktok-frente-card h3,
#tiktok-sec-frentes .tiktok-frente-card p,
#tiktok-sec-frentes .tiktok-frente-card ul,
#tiktok-sec-frentes .tiktok-frente-card .tiktok-btn {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); /* Transição suave */
}

/* Título - vem da direita */
#tiktok-sec-frentes h2 {
    transform: translateX(50px);
}

/* Imagem - vem da esquerda com leve zoom */
#tiktok-sec-frentes .mulher {
    transform: translateX(-30px) scale(0.95);
}

/* Cards - começam menores e deslocados levemente para baixo */
#tiktok-sec-frentes .tiktok-frente-card {
    transform: translateY(30px) scale(0.97);
    /* Garante que o card não fique invisível se o JS falhar */
    will-change: opacity, transform;
}

/* Conteúdo interno dos cards - começam levemente deslocados para cima */
#tiktok-sec-frentes .tiktok-frente-card h3,
#tiktok-sec-frentes .tiktok-frente-card p,
#tiktok-sec-frentes .tiktok-frente-card ul {
    transform: translateY(-10px);
}

/* Botão dos cards - começa menor */
#tiktok-sec-frentes .tiktok-frente-card .tiktok-btn {
    transform: scale(0.9);
}


/* Estados animados - quando a classe 'frentes-animar' é adicionada à section */
#tiktok-sec-frentes.frentes-animar h2,
#tiktok-sec-frentes.frentes-animar .mulher {
    opacity: 1;
    transform: translateX(0) scale(1);
}

#tiktok-sec-frentes.frentes-animar .tiktok-frente-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* Adiciona um pequeno "pop" sutil no final */
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Conteúdo interno dos cards - anima com um pequeno atraso */
#tiktok-sec-frentes.frentes-animar .tiktok-frente-card h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; /* Atraso para o título do card */
}
#tiktok-sec-frentes.frentes-animar .tiktok-frente-card p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Atraso para o parágrafo */
}
#tiktok-sec-frentes.frentes-animar .tiktok-frente-card ul {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s; /* Atraso para a lista */
}
#tiktok-sec-frentes.frentes-animar .tiktok-frente-card .tiktok-btn {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s; /* Atraso para o botão */
}

/* Animação escalonada para os dois cards */
#tiktok-sec-frentes.frentes-animar #tiktok-frentes-container .tiktok-frente-card:nth-child(1) {
    transition-delay: 0.1s; /* Primeiro card começa um pouco antes */
}
#tiktok-sec-frentes.frentes-animar #tiktok-frentes-container .tiktok-frente-card:nth-child(2) {
    transition-delay: 0.3s; /* Segundo card com atraso maior */
}

/* === FIM DAS ANIMAÇÕES PARA tiktok-sec-frentes === */

/* SEÇÃO FRENTES - RESPONSIVO */
@media (max-width: 768px) {
  .tiktok-sec-frentes {
    padding: 50px 15px;
  }

  .tiktok-sec-frentes h2 {
    font-size: 1.7rem;
  }

  .tiktok-frente-card {
    width: 100%;
    max-width: 350px;
  }

  .mulher {
display: none;
  }

  .publico-icon-topo {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

/* SEÇÃO VANTAGENS */
.tiktok-sec-vantagens {
  padding: 200px 20px;
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  text-align: center;
  position: relative;
}

.tiktok-sec-vantagens h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #551E3E;
  font-weight: 900;
}

#tiktok-vantagens-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

#tiktok-vantagens-list li {
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #A62F6A;
  font-weight: 500;
}

.sino {
  position: absolute;
  top: 0;
  bottom: 0;
  right:15px;
  margin: auto 0;           /* Centraliza verticalmente */
  transform: none;          /* Remove o translateY */
  width: 300px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

/* === ANIMAÇÕES PARA tiktok-sec-vantagens === */

/* === ANIMAÇÕES PARA tiktok-sec-vantagens === */

/* Estados iniciais */
#tiktok-sec-vantagens h2,
#tiktok-sec-vantagens .sino {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#tiktok-sec-vantagens h2 {
    transform: translateX(-50px); /* Vem da esquerda */
}

/* Apenas fade-in para o sino */
#tiktok-sec-vantagens .sino {
    /* Removido o transform para evitar o movimento */
    /* transform: translateX(30px) scale(0.95); */
    /* Mantém a escala inicial 1 para evitar flicker */
    transform: scale(1);
}

/* Estados iniciais para os <li> - todos começam invisíveis e deslocados */
#tiktok-sec-vantagens #tiktok-vantagens-list li {
    opacity: 0;
    transform: translateX(-40px); /* Começam deslocados para a esquerda */
    /* Transição base - o delay será controlado pelo JS */
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    /* Garante que o elemento não fique invisível se o JS falhar */
    will-change: opacity, transform;
}

/* Estados animados - quando a classe 'vantagens-animar' é adicionada à section */
#tiktok-sec-vantagens.vantagens-animar h2 {
    opacity: 1;
    transform: translateX(0) scale(1); /* Posição final */
}

/* Apenas fade-in para o sino */
#tiktok-sec-vantagens.vantagens-animar .sino {
    opacity: 1;
    /* Sem transform, apenas aparece */
    transform: scale(1);
}




@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.sino.swing {
  animation: swing 0.6s ease-in-out;
}


/* A animação dos <li> será controlada pelo JavaScript para ter delays específicos */

/* === FIM DAS ANIMAÇÕES PARA tiktok-sec-vantagens === */

/* SEÇÃO VANTAGENS - RESPONSIVO */
/* SEÇÃO VANTAGENS - RESPONSIVO */
@media (max-width: 1100px) {
  .tiktok-sec-vantagens {
    padding: 100px 15px;
  }

  .tiktok-sec-vantagens h2 {
    font-size: 1.5rem;
  }

  #tiktok-vantagens-list li {
    font-size: 0.95rem;
  }

  .sino {
    width: 130px;
    right: 30%;
    transform: translateX(50%); /* Centraliza horizontalmente */
    top: 5px; /* Distância do topo */
    bottom: auto; /* Remove o alinhamento vertical */
    margin: 0; /* Remove a margem automática */
  }
}



/* SEÇÃO REQUISITOS */
.tiktok-sec-requisitos {
  padding: 200px 20px;
  background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  text-align: center;
  position: relative;
}

.tiktok-sec-requisitos h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #551E3E;
  font-weight: 900;
}

#tiktok-requisitos-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A62F6A;
  white-space: pre-line;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 500;
}

.duvidass {
  position: absolute;
  top: 0;
  bottom: 0;
  left:15px;
  margin: auto 0;           /* Centraliza verticalmente */
  transform: none;          /* Remove o translateY */
  width: 270px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

/* === ANIMAÇÕES PARA tiktok-sec-requisitos === */
/* Estado inicial da imagem */

/* Estado inicial da imagem */
.duvidass {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto 0;
    width: 270px;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100px); /* começa fora da tela à esquerda */
}

/* Animação de entrada da esquerda */
.duvidass.animate {
    animation: slideInLeft 0.8s ease forwards;
}

/* Animação de flutuar após entrar */
.duvidass.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}



/* Estados iniciais */
#tiktok-sec-requisitos h2,
#tiktok-sec-requisitos #tiktok-requisitos-text,
#tiktok-sec-requisitos .tiktok-btn {
    opacity: 0;
    /* Define um ponto de origem para transformações 3D, dando um efeito mais suave */
    transform-origin: center center;
    /* Transição base - o delay e timing serão controlados */
    transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    /* Garante que o elemento não fique invisível se o JS falhar */
    will-change: opacity, transform;
}

/* Título - vem da direita com leve rotação */
#tiktok-sec-requisitos h2 {
    transform: translateX(40px) rotate(2deg);
}

/* Texto - vem da esquerda com leve escala e desfoque */
#tiktok-sec-requisitos #tiktok-requisitos-text {
    transform: translateX(-30px) scale(0.97);
    /* filter: blur(4px); /* Opcional: adiciona um leve desfoque inicial */
}

/* Botão - vem de baixo com escala reduzida */
#tiktok-sec-requisitos .tiktok-btn {
    transform: translateY(20px) scale(0.95);
}

/* Imagem - apenas fade-in */
#tiktok-sec-requisitos .duvidass {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    /* Garante que o elemento não fique invisível se o JS falhar */
    will-change: opacity;
}


/* Estados animados - quando a classe 'requisitos-animar' é adicionada à section */
#tiktok-sec-requisitos.requisitos-animar h2,
#tiktok-sec-requisitos.requisitos-animar #tiktok-requisitos-text,
#tiktok-sec-requisitos.requisitos-animar .tiktok-btn {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    /* filter: blur(0); /* Remove o desfoque se tiver sido aplicado */
}

/* Apenas fade-in para a imagem */
#tiktok-sec-requisitos.requisitos-animar .duvidass {
    opacity: 1;
}

/* Atrasos escalonados para criar uma sequência harmoniosa */
#tiktok-sec-requisitos.requisitos-animar h2 {
    transition-delay: 0.1s;
}
#tiktok-sec-requisitos.requisitos-animar #tiktok-requisitos-text {
    transition-delay: 0.25s;
}
#tiktok-sec-requisitos.requisitos-animar .tiktok-btn {
    transition-delay: 0.45s;
}

/* === FIM DAS ANIMAÇÕES PARA tiktok-sec-requisitos === */

/* SEÇÃO REQUISITOS - RESPONSIVO */
@media (max-width: 935px) {
  .tiktok-sec-requisitos {
    padding: 100px 15px;
  }

  .tiktok-sec-requisitos h2 {
    font-size: 1.7rem;
  }

  #tiktok-requisitos-text {
    font-size: 1rem;
  }

  .duvidass {
    width: 110px;
    left: 35%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
    top: 10px; /* Distância do topo */
    bottom: auto; /* Remove o alinhamento vertical */
    margin: 0; /* Remove a margem automática */
  }
}

/* SEÇÃO FINAL */
.tiktok-sec-final {
 background: url('../img/Fundoo.jpg') center/cover no-repeat fixed;
  padding: 250px 20px;
  text-align: center;
  position: relative;
}

.tiktok-sec-final h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #551E3E;
  font-weight: 900;
}

.tiktok-sec-final p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A62F6A;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.tiktok-sec-final .tiktok-btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.coracaoo {
  position: absolute;
  top: 0;
  bottom: 0;
  right:15px;
  margin: auto 0;           /* Centraliza verticalmente */
  transform: none;          /* Remove o translateY */
  width: 210px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}


/* === ANIMAÇÕES PARA tiktok-sec-final === */

/* Estados iniciais - tudo começa invisível */
#tiktok-sec-final h2,
#tiktok-sec-final p,
#tiktok-sec-final .tiktok-btn-group,
#tiktok-sec-final .coracaoo,
#tiktok-sec-final .tiktok-btn {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

/* Título - vem da direita */
#tiktok-sec-final h2 {
    transform: translateX(60px);
}

/* Parágrafo - vem da esquerda */
#tiktok-sec-final p {
    transform: translateX(-40px);
}

/* Grupo de botões - vem de baixo */
#tiktok-sec-final .tiktok-btn-group {
    transform: translateY(30px);
}

/* Botões individuais - começam menores */
#tiktok-sec-final .tiktok-btn {
    transform: scale(0.9);
}

/* Imagem - apenas fade-in */
#tiktok-sec-final .coracaoo {
    /* Transformações removidas para apenas fade-in */
    transform: scale(1); /* Mantém escala 1 para evitar flicker */
}


/* Estados animados - quando a classe 'final-animar' é adicionada à section */
#tiktok-sec-final.final-animar h2,
#tiktok-sec-final.final-animar p,
#tiktok-sec-final.final-animar .tiktok-btn-group,
#tiktok-sec-final.final-animar .coracaoo {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Animação escalonada para os botões */
#tiktok-sec-final.final-animar .tiktok-btn:nth-child(1) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s; /* Primeiro botão */
}

#tiktok-sec-final.final-animar .tiktok-btn:nth-child(2) {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s; /* Segundo botão */
}

/* Atrasos escalonados para criar uma sequência harmônica */
#tiktok-sec-final.final-animar h2 {
    transition-delay: 0.1s;
}
#tiktok-sec-final.final-animar p {
    transition-delay: 0.2s;
}
#tiktok-sec-final.final-animar .tiktok-btn-group {
    transition-delay: 0.3s;
}
/* Os delays dos botões individuais estão definidos acima */

/* Apenas fade-in para a imagem */
#tiktok-sec-final.final-animar .coracaoo {
    opacity: 1;
    /* Sem transform, apenas aparece */
    transform: scale(1);
    transition-delay: 0s; /* Pode aparecer junto ou antes, ajuste se quiser */
}

.coracaoo {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 220px;
    z-index: 1;
    opacity: 0; /* Invisível inicialmente */
    pointer-events: none;
    transform: translateX(100px); /* Começa deslocado para a direita */
}

/* Animação de entrada da direita */
.coracaoo.animate {
    animation: slideInRight 0.8s ease forwards;
}

/* Flutuação suave depois de entrar */
.coracaoo.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}



/* === FIM DAS ANIMAÇÕES PARA tiktok-sec-final === */

@media (max-width: 1300px) {
  .tiktok-sec-final {
    padding: 150px 15px;
  }

  .tiktok-sec-final h2 {
    font-size: 1.5rem;
  }

  .tiktok-sec-final p {
    font-size: 1rem;
  }

  .coracaoo {
    width: 150px;
    right: 10px;
  }
}
@media (max-width: 1194px) {
  .coracaoo {
    display: none;
  }
}


/* SEÇÃO FINAL - RESPONSIVO */
@media (max-width: 768px) {
  .tiktok-sec-final {
    padding: 150px 15px;
  }

  .tiktok-sec-final h2 {
    font-size: 1.5rem;
  }

  .tiktok-sec-final p {
    font-size: 1rem;
  }

  .coracaoo {
   display: none;
  }
}

/* RESPONSIVO GERAL */
@media (max-width: 768px) {
  .tiktok-sec-destaque h1 {
    font-size: 2rem;
  }

  .tiktok-sec-destaque p,
  .tiktok-sec-final p {
    font-size: 1rem;
  }

  .tiktok-frente-card {
    width: 90%;
  }

  .tiktok-btn {
    width: 100%;
    max-width: 300px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

.barra-cores,
.barra-cores-dupla {
  display: flex;
  height: 30px;
  width: 100%;
}

.barra-cores::before,
.barra-cores::after,
.barra-cores div,
.barra-cores-dupla::before,
.barra-cores-dupla::after {
  content: '';
  flex: 1;
}

.barra-cores::before { background-color: #f17dc4; }
.barra-cores div     { background-color: #c42d8e; }
.barra-cores::after  { background-color: #4e1c38; }

.barra-cores-dupla::before { background-color: #c42d8e; }
.barra-cores-dupla::after  { background-color: #4e1c38; }

/* BARRAS - MOBILE */
@media (max-width: 768px) {
  .barra-cores,
  .barra-cores-dupla {
    height: 20px;
  }
}

/* ------------------ FOOTER ------------------ */
footer {
  background: #fefefe;
  color: #000000;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

@media (min-width: 1920px) {
  .kwai-content,
  .kwai-header-container,
  .kwai-card-container {
    max-width: 1400px;
  }
  .kwai-sec-destaque,
  .kwai-sec-servicos,
  .kwai-sec-vantagens,
  .kwai-sec-contato,
  .kwai-sec-final {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .tikq
  {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 150px;
    margin: auto 0;           /* Centraliza verticalmente */
    transform: none;          /* Remove o translateY */
    width: 300px;
    z-index: 1; /* Fica atrás do conteúdo */ /* Reduz a opacidade para não sobrepor */
    pointer-events: none;
  }
  .sino
  {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 150px;
    margin: auto 0;           /* Centraliza verticalmente */
    transform: none;          /* Remove o translateY */
    width: 380px;
    z-index: 1; /* Fica atrás do conteúdo */ /* Reduz a opacidade para não sobrepor */
    pointer-events: none;
  }

  .coracaoo {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: auto;
    max-width: 25%;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
    padding: 100px;
    right: 150px;
  }

  .duvidass {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 150px;
    margin: auto 0;           /* Centraliza verticalmente */
    transform: none;          /* Remove o translateY */
    width: 350px;
    z-index: 1; /* Fica atrás do conteúdo */ /* Reduz a opacidade para não sobrepor */
    pointer-events: none;
  }

  .mulher
   {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 150px;
    margin: auto 0;           /* Centraliza verticalmente */
    transform: none;          /* Remove o translateY */
    width: 300px;
    z-index: 1; /* Fica atrás do conteúdo */ /* Reduz a opacidade para não sobrepor */
    pointer-events: none;
  }
  
}