/* RESET */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #1f2933;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER GERAL */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER VERDE PROFISSIONAL ================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;

  background: linear-gradient(
    120deg,
    #27c200,
    #32d400,
    #1fb300
  );

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.2);

  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* brilho fino animado na base */
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;

  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22c55e,
    #3b82f6
  );

  animation: headerGlow 6s linear infinite;
}

@keyframes headerGlow {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* CONTAINER HEADER */
.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 78px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* MENU */
.menu {
  display: flex;
  gap: 26px;
}

/* LINKS */
.menu a {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;

  text-shadow:
    0 1px 3px rgba(0,0,0,0.6);

  padding: 6px 2px;
}

/* FUNDO SUAVE NO HOVER */
.menu a::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.25s ease;
}

/* SUBLINHADO PREMIUM */
.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22c55e
  );

  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* HOVER */
.menu a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.menu a:hover::after {
  width: 100%;
}

/* ========= RESPONSIVO HEADER ========= */
@media (max-width: 900px) {
  .topbar .container {
    flex-direction: row;
        align-items: stretch;
        display: flex !important;
        gap: 10px;
        padding: 12px 18px;
  }

  .menu {
    flex-wrap: wrap;
    gap: 14px;
  }

  .menu a {
    font-size: 15px;
  }

  .logo img {
    max-height: 66px;
  }
}

/* ================= HERO CINEMÁTICO ENCANTART ================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 20px 90px; /* espaço por causa do header fixo */
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

/* ORBs de luz animadas no fundo */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  background: #ff4f9a;
  top: -160px;
  left: -180px;
  animation: heroOrb1 18s ease-in-out infinite alternate;
}

.hero::after {
  background: #22c55e;
  bottom: -200px;
  right: -200px;
  animation: heroOrb2 22s ease-in-out infinite alternate;
}

@keyframes heroOrb1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(140px, 80px) scale(1.2); }
}

@keyframes heroOrb2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-120px, -60px) scale(1.15); }
}

/* CONTEÚDO DO HERO */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  animation: heroContentIn 0.9s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
  opacity: 0;
  transform-origin: center;
}

@keyframes heroContentIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* IMAGEM DO PERSONAGEM – flutuando */
.hero-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-imagem img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,0.55));
  animation: heroFloat 4.8s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@keyframes heroFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

.hero-imagem img:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
}

/* TEXTO DA DIREITA */
.hero-texto {
  flex: 1;
  color: #ffffff;
}

.hero-texto h1 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(15,23,42,0.6);
}

.hero-texto p {
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* LINHA DECORATIVA SOB O TÍTULO */
.hero-texto h1::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffca28, #ff4f9a, #22c55e);
  box-shadow: 0 0 18px rgba(255,255,255,0.55);
}

/* BOTÃO DO HERO */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primario {
  position: relative;
  padding: 15px 42px;
  font-size: 15px;
  border: none;
  background: linear-gradient(120deg, #ffca28, #ffb300);
  color: #1f2933;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.btn-primario::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.05)
  );
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.btn-primario:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.75);
}

.btn-primario:hover::after {
  transform: translateX(230%);
}

.btn-secundario {
  background: #00c853;
  color: #ffffff;
}

.btn-secundario:hover {
  background: #00b342;
}

/* RESPONSIVO HERO */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 38px;
  }

  .hero-texto h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-texto p {
    margin: 0 auto 26px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 150px 16px 70px;
  }

  .hero-imagem img {
    max-width: 360px;
  }

  .hero-texto h1 {
    font-size: 32px;
  }
}

/* ================= SEÇÕES GENÉRICAS ================= */
.secao {
  padding: 70px 0;
}

.secao h2 {
  text-align: center;
  font-size: 28px;
}

.secao-subtitulo {
  text-align: center;
  color: #6b7280;
  margin: 6px 0 36px;
  font-size: 14px;
}

/* FUNDOS */
.bg-branco {
  background: #ffffff;
}

.bg-cinza {
  background: #f1f5f9;
}

.bg-colorida {
  background: linear-gradient(135deg, #1100ff, #ff4081);
  color: #ffffff;
}

/* GRIDS GENÉRICOS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARDS GENÉRICOS */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

/* DEPOIMENTOS */
.depoimento {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.depo-nome {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
}

/* CONTATO */
.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.5fr;
  gap: 30px;
}

.lista-contato {
  list-style: none;
  margin-top: 16px;
}

.form-contato {
  background: rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: 18px;
}

.grupo {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.grupo label {
  margin-bottom: 4px;
}

.grupo input,
.grupo textarea {
  border-radius: 10px;
  border: none;
  padding: 10px 12px;
}

/* RODAPÉ */
.rodape {
  background: #0f172a;
  color: #9ca3af;
  padding: 16px 0;
  font-size: 13px;
}

.rodape-content {
  display: flex;
  justify-content: space-between;
}

/* ============= SEÇÃO SOBRE NÓS – COM EFEITOS ============= */

/* (mantive toda a tua seção “sobre” power-up, não mexi aqui) */
/* ...  >>> SEU BLOCO .secao-sobre, .sobre-box, .sobre-icone, etc <<<  */
/* Para não ficar gigante aqui, pode manter exatamente como já está
   no teu arquivo, ele continua funcionando normal. */

/* ================= PERSONAGENS ================= */

.personagens-grid {
  row-gap: 32px;
}

.personagem {
  text-align: center;
  padding: 10px 12px 14px;
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.personagem:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.personagem-thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e0f2fe;
}

.personagem h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.personagem p {
  font-size: 13px;
  color: #4b5563;
}

/* imagens de exemplo */
.personagem--princesas .personagem-thumb {
  background-image: url("img/personagens/princesa.png");
}

.personagem--herois .personagem-thumb {
  background-image: url("img/personagens/aranha.png");
}

.personagem--disney .personagem-thumb {
  background-image: url("img/personagens/sonic.png");
}

.personagem--outros .personagem-thumb {
  background-image: url("img/personagens/outro.png");
}

.secao-personagens {
  background: #9100b2;
}

.secao-personagens h2,
.secao-personagens .secao-subtitulo {
  color: #ffffff;
}

/* ================== PODERES MÁGICOS TURBINADO ================== */

#motivos h2 {
  font-size: 32px;
  background: linear-gradient(90deg, #5c6cf2, #ff4f9a, #00c853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

#motivos .secao-subtitulo {
  color: #6b46ff;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 40px;
}

@keyframes motivosCardIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes motivosFloatLoop {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

#motivos .card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #ffffff;
  opacity: 0;
  animation: motivosCardIn 0.7s ease forwards, motivosFloatLoop 4s ease-in-out infinite;
}

#motivos .card:nth-child(1) { animation-delay: 0s, 0.3s; }
#motivos .card:nth-child(2) { animation-delay: 0.1s, 0.4s; }
#motivos .card:nth-child(3) { animation-delay: 0.2s, 0.5s; }

#motivos .card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, #5c6cf2, #ff4f9a, #ffd83d, #00c853, #5c6cf2);
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.25s ease, transform 0.7s linear;
  z-index: -1;
}

#motivos .card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 24px;
  z-index: -1;
}

#motivos .card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
  animation-play-state: paused;
}

#motivos .card:hover::before {
  opacity: 1;
  transform: rotate(25deg);
}

#motivos .card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

#motivos .card:nth-child(1) h3 { color: #5c6cf2; }
#motivos .card:nth-child(2) h3 { color: #ff7a3d; }
#motivos .card:nth-child(3) h3 { color: #00c853; }

/* ========= RESPONSIVO GERAL (GRIDS) ========= */

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-texto p {
    margin: 0 auto 24px;
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVIÇOS COM IMAGEM E EFEITOS (USANDO O SEU HTML) ===== */

/*
  IMPORTANTE:
  No HTML, em #servicos, mantenha algo assim:
  
  <div class="grid-3">
    <div class="card">Animação infantil...</div>         (1)
    <div class="card">Pinturas faciais...</div>          (2)
    <div class="card">Oficinas criativas...</div>        (3)
    <div class="card">Eventos corporativos...</div>      (4)
    <div class="card">Personagens vivos...</div>         (5)
    <div class="card">Datas comemorativas...</div>       (6)
  </div>

  O CSS abaixo usa nth-child para aplicar a foto certa em cada caixa.
*/

#servicos {
  background: #f5f7fb;
}

#servicos .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* animação de entrada */
@keyframes servicoIn {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CARD DE SERVIÇO */
#servicos .card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  padding: 210px 22px 24px; /* espaço em cima para a imagem */
  text-align: left;
  transform-origin: center;
  animation: servicoIn 0.7s ease-out forwards;
  opacity: 0;
}

/* delays em escadinha – até 6 cards */
#servicos .card:nth-child(1) { animation-delay: 0.05s; }
#servicos .card:nth-child(2) { animation-delay: 0.12s; }
#servicos .card:nth-child(3) { animation-delay: 0.19s; }
#servicos .card:nth-child(4) { animation-delay: 0.26s; }
#servicos .card:nth-child(5) { animation-delay: 0.33s; }
#servicos .card:nth-child(6) { animation-delay: 0.40s; }

/* área da foto (ocupando o topo do card) */
#servicos .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}

/* degradê suave por cima da foto */
#servicos .card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 180px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.45), transparent 70%);
  pointer-events: none;
}

/* HOVER – sobe, aumenta sombra e dá zoom na imagem */
#servicos .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

#servicos .card:hover::before {
  transform: scale(1.08);
}

/* TÍTULO E TEXTO */
#servicos .card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

#servicos .card p {
  font-size: 14px;
  color: #4b5563;
}

/* 1 – Animação infantil */
.servico-animacao .servico-thumb {
  background-image: url("img/servicos/1.png");
}

/* 2 – Pinturas faciais */
.servico-pintura .servico-thumb {
  background-image: url("img/servicos/2.png");
}

/* 3 – Oficinas criativas */
.servico-oficinas .servico-thumb {
  background-image: url("img/servicos/3.png");
}

/* 4 – Eventos corporativos */
.servico-corporativo .servico-thumb {
  background-image: url("img/servicos/4.png");
}

/* 5 – Personagens vivos */
.servico-personagens .servico-thumb {
  background-image: url("img/servicos/5.png");
}

/* 6 – Datas comemorativas */
.servico-datas .servico-thumb {
  background-image: url("img/servicos/6.png");
}
/* ========== SEÇÃO SERVIÇOS – VERSÃO PRO ========= */

.secao-servicos {
  background: #f5f7fb;
}

/* GRID RESPONSIVO */
.servicos-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ANIMAÇÃO DE ENTRADA DOS CARDS */
@keyframes servicoFadeUp {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CARD DE SERVIÇO */
.servico-card {
  position: relative;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  transform-origin: center;
  animation: servicoFadeUp 0.7s ease forwards;
  opacity: 0;
}

/* pequenos delays em cada um */
.servico-card:nth-child(1) { animation-delay: 0.05s; }
.servico-card:nth-child(2) { animation-delay: 0.12s; }
.servico-card:nth-child(3) { animation-delay: 0.19s; }
.servico-card:nth-child(4) { animation-delay: 0.26s; }
.servico-card:nth-child(5) { animation-delay: 0.33s; }
.servico-card:nth-child(6) { animation-delay: 0.40s; }

/* faixa da imagem */
.servico-thumb {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.35s ease;
}

/* conteúdo do card */
.servico-body {
  padding: 20px 20px 24px;
}

.servico-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.servico-body p {
  font-size: 14px;
  color: #4b5563;
}

/* efeito glow no hover */
.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #ffca28, #ff4f9a, #4f46e5);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.servico-card > * {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* hover – sobe, brilha e dá zoom na imagem */
.servico-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
}

.servico-card:hover::before {
  opacity: 1;
}

.servico-card:hover .servico-thumb {
  transform: scale(1.08);
}

.secao-servicos {
  background: #f5f7fb;
}

/* GRID – 3 colunas no desktop */
.servicos-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 em cima, 3 embaixo */
  gap: 28px;
}

/* RESPONSIVO – tablet: 2 colunas, celular: 1 */
@media (max-width: 900px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* ANIMAÇÃO DE ENTRADA DOS CARDS */
@keyframes servicoFadeUp {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CARD VISUAL */
.servico-card {
  position: relative;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  transform-origin: center;
  animation: servicoFadeUp 0.7s ease forwards;
  opacity: 0;
}

/* delays na entrada */
.servico-card:nth-child(1) { animation-delay: 0.05s; }
.servico-card:nth-child(2) { animation-delay: 0.12s; }
.servico-card:nth-child(3) { animation-delay: 0.19s; }
.servico-card:nth-child(4) { animation-delay: 0.26s; }
.servico-card:nth-child(5) { animation-delay: 0.33s; }
.servico-card:nth-child(6) { animation-delay: 0.40s; }

/* faixa de imagem */
.servico-thumb {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.35s ease;
}

/* conteúdo */
.servico-body {
  padding: 20px 20px 24px;
}

.servico-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
background: linear-gradient(90deg, #ff4d8d, #9d4edd);
  -webkit-background-clip: text;
    color: transparent;
}

.servico-body p {
  font-size: 14px;
  color: #5c6cf2;
}

/* borda com brilho (já tinha) */
.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, #ffca28, #ff4f9a, #4f46e5);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

/* BARRINHA COLORIDA EMBAIXO – AGORA EM TODOS OS CARDS */
.servico-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #ffca28, #ff4f9a, #22c55e);
  transition: width 0.25s ease;
  z-index: 2;
}

/* conteúdo fica acima da borda (::before) e abaixo da barrinha (::after) */
.servico-card > * {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* hover – animação */
.servico-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
}

.servico-card:hover::before {
  opacity: 1;              /* brilho na borda */
}

.servico-card:hover::after {
  width: 100%;             /* barrinha colorida preenchendo toda a base */
}

.servico-card:hover .servico-thumb {
  transform: scale(1.08);  /* zoom na imagem */
}
/* === NORMALIZAR A BARRA COLORIDA DOS SERVIÇOS === */

/* garante que qualquer card dentro da seção de serviços
   use a mesma barrinha fininha embaixo */
.secao-servicos .servico-card::after,
.secao-servicos .card::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px !important;              /* mesma espessura pra todos */
  content: "";
  background: linear-gradient(90deg, #ffca28, #ff4f9a, #22c55e);
  transition: width 0.25s ease;
  border-radius: 0 0 24px 24px;
  z-index: 2;
}

/* animação no hover (preenche a barra inteira) */
.secao-servicos .servico-card:hover::after,
.secao-servicos .card:hover::after {
  width: 100%;
}

/* se algum estilo antigo estiver deixando um bloco grande embaixo,
   isso aqui “zera” qualquer faixa alta que tenha sobrado */
#servicos .card::before,
#servicos .card::after {
  height: 0;
}

/* ==== HOTFIX: corrigir barra do 3º card (Oficinas criativas) ==== */

/* garante que o 3º card não tenha nenhum pseudo-elemento antigo alto */
#servicos .servicos-grid > *:nth-child(3)::before {
  height: 0 !important;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}

/* força a barrinha inferior do 3º card a ter a mesma altura dos outros */
#servicos .servicos-grid > *:nth-child(3)::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 0 !important;
  height: 4px !important;                 /* MESMA ESPESSURA */
  background: linear-gradient(90deg,#ffca28,#ff4f9a,#22c55e) !important;
  border-radius: 0 0 24px 24px !important;
  transition: width 0.25s ease !important;
  z-index: 3 !important;
}

/* animação no hover do 3º card */
#servicos .servicos-grid > *:nth-child(3):hover::after {
  width: 100% !important;
}

/* garante que nada "vaze" pra fora do card */
#servicos .servicos-grid > *:nth-child(3) {
  position: relative !important;
  overflow: hidden !important;
}

.servico-thumb {
  height: 180px;              /* altura do topo do card */
  background-size: cover;     /* imagem preenche tudo */
  background-position: center;
  background-repeat: no-repeat;
  /* sem background-color aqui, pra não aparecer borda lisa */
}
/* Datas comemorativas – ajustar enquadramento */
.servico-datas .servico-thumb {
  background-position: center 35%;
;
}

/* ========== SEÇÃO SOBRE – V2 SUPER PROFISSIONAL ========== */

.secao-sobre-v2 {
  /* já tem o gradiente da classe bg-colorida, só ajustamos o texto */
  color: #ffffff;
}

.sobre-v2-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 70px 0 30px;
}

.sobre-v2-label {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  margin-bottom: 10px;
}

.sobre-v2-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 18px;
}

.sobre-v2-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.96;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 8px;
}

.sobre-v2-text.destaque {
  margin-top: 10px;
  font-weight: 600;
}

/* GRID PRINCIPAL */
.sobre-v2-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr;
  gap: 32px;
  margin-top: 36px;
}

.sobre-v2-col {
  font-size: 15px;
}

/* LISTA O QUE FAZEMOS */
.sobre-v2-subtitle {
  font-size: 20px;
  margin-bottom: 14px;
}

.sobre-v2-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.sobre-v2-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: flex-start;
}

.sobre-v2-icone {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.18);
  font-size: 18px;
}

.sobre-v2-item h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.sobre-v2-item p {
  font-size: 14px;
  opacity: 0.94;
}

/* CARD LATERAL */
.sobre-v2-card {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 20px;
  padding: 20px 22px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(10px);
}

.sobre-v2-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.sobre-v2-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.sobre-v2-pontos {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 14px;
}

.sobre-v2-pontos li + li {
  margin-top: 4px;
}

/* BOTÃO */
.sobre-v2-btn {
  display: inline-block;
  margin-top: 4px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .sobre-v2-inner {
    padding-top: 60px;
  }

  .sobre-v2-grid {
    grid-template-columns: 1fr;
  }

  .sobre-v2-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .sobre-v2-title {
    font-size: 26px;
  }

  .sobre-v2-text {
    font-size: 15px;
  }
}
/* ========== ANIMAÇÃO SCROLL – SEÇÃO SOBRE ========== */

/* estado inicial: fora da tela e transparente */
.sobre-v2-col-left,
.sobre-v2-col-right {
  opacity: 0;
}

/* esquerda começa deslocada pra esquerda */
.sobre-v2-col-left {
  transform: translateX(-40px);
}

/* direita começa deslocada pra direita */
.sobre-v2-col-right {
  transform: translateX(40px);
}

/* quando entrar na tela, ganha essa classe via JS */
.sobre-v2-in-view-left {
  animation: sobreSlideInLeft 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sobre-v2-in-view-right {
  animation: sobreSlideInRight 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* keyframes */
@keyframes sobreSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sobreSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* no mobile a gente deixa mais suave (menos deslocamento visual) */
@media (max-width: 900px) {
  .sobre-v2-col-left,
  .sobre-v2-col-right {
    transform: translateY(24px);
  }

  .sobre-v2-in-view-left,
  .sobre-v2-in-view-right {
    animation-duration: 0.7s;
  }
}
/* ===== AJUSTE DE FLUXO VISUAL – SEÇÃO SOBRE ===== */

.secao-sobre-v2 .sobre-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 0 50px;
}

/* tudo começa alinhado à esquerda, acompanhando a coluna de texto */
.sobre-v2-label {
  display: inline-block;
  text-align: left;
}

.sobre-v2-title {
  font-size: 34px;
  text-align: left;
  margin-bottom: 16px;
}

.sobre-v2-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.96;
  text-align: left;
  max-width: 720px;   /* deixa o texto mais “coluna” e menos “linha gigante” */
  margin: 0 0 6px;
}

.sobre-v2-text.destaque {
  margin-top: 8px;
  font-weight: 600;
}

/* aproxima o bloco “O que fazemos?” do texto de cima pra ficar tudo uma coisa só */
.sobre-v2-grid {
  margin-top: 26px;
}

/* em telas pequenas continua funcionando bem */
@media (max-width: 900px) {
  .sobre-v2-title,
  .sobre-v2-text {
    max-width: 100%;
  }
}
/* ===== LOGO NA SEÇÃO SOBRE ===== */

.sobre-v2-logo {
  margin: 8px 0 18px;
  /* segue o fluxo alinhado à esquerda */
}

.sobre-v2-logo img {
  max-width: 360px;           /* tamanho da nuvem Encantart */
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.35));
  transform-origin: center;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

/* efeito ao passar o mouse – parecido com o header, mas mais “mágico” */
.sobre-v2-logo img:hover {
  transform: translateY(-4px) scale(1.04) rotate(-1.5deg);
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.55));
}

/* se quiser centralizar a logo só no mobile */
@media (max-width: 600px) {
  .sobre-v2-logo {
    text-align: center;
  }
}
/* ===== BLOCO CENTRAL (LOGO + TEXTO) – SEÇÃO SOBRE ===== */

.sobre-v2-hero {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.sobre-v2-hero .sobre-v2-text {
  text-align: center;
  max-width: 100%;
}

.sobre-v2-logo {
  text-align: center;
  margin-bottom: 18px;
}
/* ===== LOGO NO HERO – ENTRADA ANIMADA ===== */

.hero-logo-wrapper {
  margin-bottom: 14px;
}

.hero-logo {
  max-width: 700px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.55));

  /* estado inicial para animação */
  opacity: 0;
  transform: translateY(30px) scale(0.9) rotate(-4deg);

  animation: heroLogoIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.25s; /* entra depois do personagem / header */
}

/* animação de entrada */
@keyframes heroLogoIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9) rotate(-4deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-3deg);
  }
}

/* hover – micro movimento para parecer que o boneco está “mostrando” a logo */
.hero-logo-wrapper:hover .hero-logo {
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 22px 55px rgba(0, 0, 0, 0.7));
}

/* ajuste no mobile: logo mais central e um pouco menor */
@media (max-width: 600px) {
  .hero-logo-wrapper {
    text-align: center;
  }

  .hero-logo {
    max-width: 220px;
  }
}
/* ===== AJUSTE EXTRA: TUDO MAIS PRA CIMA NO HERO ===== */

/* menos espaço em cima e quase nada embaixo */
.hero {
  padding: 100px 20px 8px;   /* antes 115px 20px 30px */
}

/* personagem um pouco menor pra caber folgado */
.hero-imagem img {
  max-width: 390px;          /* antes 420px */
}

/* título e texto mais colados */
.hero-texto h1 {
  margin-bottom: 10px;       /* antes 14px */
}

.hero-texto p {
  margin-bottom: 14px;       /* antes 18px */
}

/* se quiser o botão ainda mais perto, descomenta a linha abaixo */
/*
.btn-primario {
  margin-top: 4px;
}
*/

/* no mobile mantemos tudo confortável */
@media (max-width: 600px) {
  .hero {
    padding: 100px 16px 16px;  /* também sobe um pouco no celular */
  }
}
/* ==== AJUSTE GERAL DA SEÇÃO SOBRE – MENOS ESPAÇO ==== */

.secao-sobre-v2 {
  padding: 40px 0 35px;               /* antes 70px+  → sobe tudo */
}

.sobre-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0 10px;              /* menos espaço interno */
}

/* título + textos mais compactos */
.sobre-v2-title {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.sobre-v2-text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto 4px;
  max-width: 780px;
}

/* FRASE FINAL EM DESTAQUE – vira um “badge” chamativo */
.sobre-v2-text.destaque {
  margin-top: 10px;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.35), rgba(15,23,42,0.25));
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
  font-weight: 600;
  text-align: center;
}

/* centraliza o bloco de textos + destaque como se fosse um “herozinho” */
.sobre-v2-inner > .sobre-v2-text,
.sobre-v2-inner > .sobre-v2-text.destaque {
  text-align: center;
}

/* GRID mais fechado pra caber na primeira tela */
.sobre-v2-grid {
  margin-top: 26px;
  gap: 24px;
}

/* fonte um pouco menor dentro das colunas pra caber melhor */
.sobre-v2-item h4 {
  font-size: 15px;
}

.sobre-v2-item p {
  font-size: 13px;
}

/* cartão da direita um pouco mais enxuto */
.sobre-v2-card {
  padding: 18px 18px 20px;
}

/* ==== EFEITOS MAIS “FODAS” NA LISTA E NO CARD ==== */

/* ícones com cores diferentes e leve brilho */
.sobre-v2-item:nth-child(1) .sobre-v2-icone { background: rgba(239, 68, 68, 0.22); }
.sobre-v2-item:nth-child(2) .sobre-v2-icone { background: rgba(59, 130, 246, 0.22); }
.sobre-v2-item:nth-child(3) .sobre-v2-icone { background: rgba(16, 185, 129, 0.22); }
.sobre-v2-item:nth-child(4) .sobre-v2-icone { background: rgba(244, 114, 182, 0.22); }

.sobre-v2-icone {
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* leve “pulo” no hover da linha inteira */
.sobre-v2-item {
  transition: transform 0.2s ease;
}

.sobre-v2-item:hover {
  transform: translateX(4px);
}

.sobre-v2-item:hover .sobre-v2-icone {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

/* borda com brilho suave animado no card da direita */
.sobre-v2-card {
  position: relative;
  overflow: hidden;
}

.sobre-v2-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 200deg, #ffca28, #ff4f9a, #4f46e5, #22c55e, #ffca28);
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.25s ease;
  z-index: -1;
}

.sobre-v2-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.75);
  z-index: -1;
}

/* quando passa o mouse no card, a borda “acende” devagar */
.sobre-v2-card:hover::before {
  opacity: 0.9;
  animation: sobre-border-spin 8s linear infinite;
}

@keyframes sobre-border-spin {
  to { transform: rotate(360deg); }
}

/* ==== RESPONSIVO LEVE PRA NÃO QUEBRAR NO CELULAR ==== */

@media (max-width: 900px) {
  .secao-sobre-v2 {
    padding: 40px 0 32px;
  }

  .sobre-v2-inner {
    padding: 30px 0 10px;
  }

  .sobre-v2-text,
  .sobre-v2-text.destaque {
    max-width: 100%;
  }
}
/* ==== AJUSTE ESPAÇO DA SEÇÃO SOBRE – COLAR NO TOPO ==== */
.secao-sobre-v2 {
  padding: 10px 0 30px;          /* bem menos espaço em cima */
}

.sobre-v2-inner {
  padding: 12px 0 8px;           /* tira o “acolchoamento” interno */
}

/* bloco central (logo + textos) mais compacto */
.sobre-v2-hero {
  margin-top: 0;
}

/* título e textos um pouco menores pra caber melhor na tela */
.sobre-v2-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.sobre-v2-text {
  font-size: 15px;
  line-height: 1.6;
}

/* frase destacada continua como cápsula, só um pouco mais enxuta */
.sobre-v2-text.destaque {
  padding: 8px 18px;
  font-size: 14px;
}

/* ==== PREPARO PARA EFEITO 3D NA LOGO ==== */
.sobre-v2-logo img {
  transform-origin: center;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1.02);
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.6));
}

/* quando o JS “descansar” a logo, ela volta pra esse estado */
.sobre-v2-logo img.is-resting {
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1.02);
}
/* ===== CARDS INTERATIVOS – SEÇÃO SOBRE ===== */

.sobre-v2-cards {
  display: flex;
  gap: 26px;
  margin-top: 26px;
  align-items: stretch;
}

.sobre-v2-card {
  flex: 1 1 50%;
  border-radius: 24px;
  padding: 22px 22px 24px;
  background: rgba(15, 23, 42, 0.25);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
  color: #f9fafb;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    flex-basis 0.35s ease,
    filter 0.35s ease;
}

/* borda glow suave */
.sobre-v2-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.15), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(255,192,203,0.18), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sobre-v2-card > * {
  position: relative;
  z-index: 1;
}

/* título dentro do card */
.sobre-v2-card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

/* quando qualquer card é focado, todos diminuem um pouco */
.sobre-v2-cards:hover .sobre-v2-card {
  flex-basis: 46%;
  filter: blur(0.3px) brightness(0.9);
}

/* card em destaque – cresce, vai pro centro e ganha mais sombra */
.sobre-v2-card:hover {
  flex-basis: 54%;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.75);
  filter: blur(0) brightness(1.02);
}

.sobre-v2-card:hover::before {
  opacity: 1;
}

/* movimento horizontal leve pra parecer que “entra” no centro */
.sobre-v2-card--oque:hover {
  transform: translate(3%, -10px) scale(1.04);
}

.sobre-v2-card--porque:hover {
  transform: translate(-3%, -10px) scale(1.04);
}

/* LISTAS dentro dos cards (reaproveitando o que você já tinha, só refinando) */
.sobre-v2-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.sobre-v2-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: flex-start;
}

.sobre-v2-icone {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  font-size: 18px;
}

.sobre-v2-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.sobre-v2-item p {
  font-size: 13px;
  opacity: 0.94;
}

.sobre-v2-pontos {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  font-size: 14px;
}

.sobre-v2-pontos li + li {
  margin-top: 4px;
}

/* responsivo: empilha os cards no mobile, sem jogar pro lado */
@media (max-width: 900px) {
  .sobre-v2-cards {
    flex-direction: column;
  }

  .sobre-v2-card,
  .sobre-v2-cards:hover .sobre-v2-card,
  .sobre-v2-card:hover {
    flex-basis: auto;
    transform: translateY(-4px) scale(1.01);
  }

  .sobre-v2-card--oque:hover,
  .sobre-v2-card--porque:hover {
    transform: translateY(-6px) scale(1.02);
  }
}
/* ========== ANIMAÇÃO PREMIUM DE ROLAGEM NAS SEÇÕES ========== */

/* estado inicial de todas as seções comuns */
section.secao {
  position: relative;
  overflow: hidden;
}

/* faixa de transição entre as seções (quebra de seção) */
section.secao::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 130%;
  height: 16px;
  border-radius: 999px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;

  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22c55e,
    #3b82f6,
    #ffca28
  );
  box-shadow:
    0 0 18px rgba(255,255,255,0.65),
    0 8px 25px rgba(15,23,42,0.35);

  transition:
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

/* estado inicial de animação de entrada */
.secao-animada {
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

/* quando a seção entra na viewport */
.secao-visivel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ativa a faixa brilhante na quebra da seção */
.secao-visivel::before {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* leve paralaxe no conteúdo interno da seção */
.secao-visivel .container {
  animation: secaoFloatIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes secaoFloatIn {
  0% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* em telas pequenas, deixa tudo um pouco mais suave */
@media (max-width: 768px) {
  .secao-animada {
    transform: translateY(0px) scale(0.995);
  }

  section.secao::before {
    height: 10px;
    box-shadow:
      0 0 12px rgba(255,255,255,0.55),
      0 6px 18px rgba(15,23,42,0.28);
  }
}
/* ========== DEPOIMENTOS – CARROSSEL TIPO STORIES TURBINADO ========== */

.secao-depo-stories {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #ffffff 0, #f5f7fb 40%, #eef2ff 100%);
  padding-top: 60px;
  padding-bottom: 90px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* quando entra na tela (JS adiciona essa classe) */
.secao-depo-stories.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.secao-depo-stories h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

/* orbs de luz no fundo */
.secao-depo-stories::before,
.secao-depo-stories::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.secao-depo-stories::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: #ff4f9a33;
}

.secao-depo-stories::after {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: -60px;
  background: #22c55e33;
}

.depo-stories-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
  perspective: 1400px;              /* perspectiva vem pra cá pra podermos mover o track */
}

/* trilho que vai ser movido pro centro via JS */
.depo-stories-track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* CARD STORY */

.depo-story {
  --offset: 0;
  position: relative;
  width: min(260px, 60vw);
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  transform:
    translateX(calc(var(--offset) * 80%))
    translateY(18px)
    translateZ(calc(-70px * abs(var(--offset))))
    scale(0.72)
    rotateY(calc(var(--offset) * -18deg));
  opacity: 0.25;
  filter: blur(2px);
  transition:
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.4s ease,
    filter 0.4s ease,
    box-shadow 0.4s ease;
  pointer-events: none;
}

.depo-story.is-active {
  transform:
    translateX(0)
    translateY(-10px)
    translateZ(0)
    scale(1.12)
    rotateY(0deg);
  opacity: 1;
  filter: blur(0);
  box-shadow:
    0 32px 90px rgba(15, 23, 42, 0.38),
    0 0 0 2px rgba(255, 255, 255, 0.5);
  z-index: 3;
  pointer-events: auto;
}

.depo-story-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.depo-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: depoKenburns 14s ease-in-out infinite alternate;
}

/* zoom suave na imagem */
@keyframes depoKenburns {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(12px, -12px, 0); }
}

/* overlay pra cara de story */
.depo-story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

/* barra de progresso tipo Instagram */

.depo-story-progress {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  z-index: 5;
}

.depo-story-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #ffca28, #ff4f9a, #22c55e);
}

.depo-story.is-active .depo-story-progress::before {
  animation: depoProgress var(--story-duration, 6s) linear forwards;
}

@keyframes depoProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* DOTS */

.depo-stories-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.depo-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #cbd5f5;
  opacity: 0.7;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.depo-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #ff4f9a, #4f46e5);
  opacity: 1;
  transform: translateY(-1px);
}

/* hover deixa o ativo ainda mais destacado */
.depo-stories-wrapper:hover .depo-story.is-active {
  box-shadow:
    0 40px 110px rgba(15, 23, 42, 0.55),
    0 0 0 2px rgba(255, 255, 255, 0.7);
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .depo-stories-track {
    gap: 18px;
  }

  .depo-story {
    width: min(230px, 70vw);
    transform:
      translateX(calc(var(--offset) * 88%))
      translateY(18px)
      translateZ(calc(-40px * abs(var(--offset))))
      scale(0.78)
      rotateY(calc(var(--offset) * -16deg));
  }

  .depo-story.is-active {
    scale: 1.08;
  }
}

@media (max-width: 600px) {
  .secao-depo-stories {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .depo-story {
    width: min(210px, 80vw);
  }
}
/* ========== DEPOIMENTOS – CARROSSEL TIPO STORIES ========== */

.secao-depo-stories {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #ffffff 0, #f5f7fb 40%, #eef2ff 100%);
  padding-top: 60px;
  padding-bottom: 90px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.secao-depo-stories.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.secao-depo-stories h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

.depo-stories-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  perspective: 1400px;
}

.depo-stories-track {
  position: relative;
  height: min(420px, 60vh);
}

/* CARD STORY – todos começam empilhados, JS espalha */
.depo-story {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(260px, 60vw);
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  opacity: 0.2;
  filter: blur(2px);
  transition:
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.4s ease,
    filter 0.4s ease,
    box-shadow 0.4s ease;
  pointer-events: none;
}

.depo-story.is-active {
  opacity: 1;
  filter: blur(0);
  box-shadow:
    0 32px 90px rgba(15, 23, 42, 0.38),
    0 0 0 2px rgba(255, 255, 255, 0.5);
  pointer-events: auto;
}

/* mídia */

.depo-story-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.depo-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: depoKenburns 14s ease-in-out infinite alternate;
}

@keyframes depoKenburns {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(12px, -12px, 0); }
}

.depo-story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

/* barra de progresso */

.depo-story-progress {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  z-index: 5;
}

.depo-story-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #ffca28, #ff4f9a, #22c55e);
}

.depo-story.is-active .depo-story-progress::before {
  animation: depoProgress var(--story-duration, 6s) linear forwards;
}

@keyframes depoProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* DOTS */

.depo-stories-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.depo-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #cbd5f5;
  opacity: 0.7;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.depo-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #ff4f9a, #4f46e5);
  opacity: 1;
  transform: translateY(-1px);
}

/* hover deixa o ativo ainda mais destacado */
.depo-stories-wrapper:hover .depo-story.is-active {
  box-shadow:
    0 40px 110px rgba(15, 23, 42, 0.55),
    0 0 0 2px rgba(255, 255, 255, 0.7);
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .depo-story {
    width: min(230px, 70vw);
  }
}

@media (max-width: 600px) {
  .secao-depo-stories {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .depo-story {
    width: min(210px, 80vw);
  }
}
/* ================== DEPOIMENTOS – STORIES PREMIUM ================== */

.secao-depo-stories {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background: radial-gradient(
    ellipse at top,
    #ffffff 0%,
    #f5f7fb 55%,
    #eef2ff 100%
  );
}

/* wrapper geral */
.depo-stories-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* trilha (os cards ficam absolutos dentro dela) */
.depo-stories-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* CARD STORY */
.depo-story {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255,255,255,0.35);

  transform-origin: center;
  transition:
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
  cursor: pointer;
}

/* story ativo (central) */
.depo-story.is-active {
  box-shadow:
    0 40px 90px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255,255,255,0.55);
}

/* mídia */
.depo-story-media {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

/* IMAGEM – SEM ZOOM */
.depo-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay suave pra leitura */
.depo-story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(15,23,42,0.35),
      rgba(15,23,42,0.1) 40%,
      rgba(15,23,42,0.55)
    );
  pointer-events: none;
}

/* barra de progresso no topo */
.depo-story-progress {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.depo-story-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22c55e
  );
  border-radius: 999px;
}

/* anima somente o ativo */
.depo-story.is-active .depo-story-progress::before {
  animation: depoStoryProgress var(--story-duration) linear forwards;
}

@keyframes depoStoryProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ================== DOTS ================== */

.depo-stories-dots {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.depo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(99, 102, 241, 0.25);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.depo-dot.is-active {
  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22c55e
  );
  transform: scale(1.25);
}

/* ================== ENTRADA DA SEÇÃO ================== */

.secao-depo-stories {
  opacity: 0;
  transform: translateY(40px);
}

.secao-depo-stories.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ================== RESPONSIVO ================== */

@media (max-width: 900px) {
  .depo-story {
    width: 220px;
    height: 380px;
  }

  .depo-stories-wrapper {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .depo-story {
    width: 200px;
    height: 360px;
  }

  .depo-stories-wrapper {
    height: 400px;
  }

  .depo-stories-dots {
    bottom: -28px;
  }
}
/* ========= DEPOIMENTOS – VIDA, COR E MAGIA ========= */

.secao-depo-stories {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;

  /* FUNDO COLORIDO PREMIUM */
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 99, 195, 0.22), transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(34, 211, 238, 0.22), transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(167, 139, 250, 0.28), transparent 55%),
    linear-gradient(
      180deg,
      #f8f9ff 0%,
      #f3f4ff 40%,
      #eef2ff 100%
    );
}

/* brilho suave geral */
.secao-depo-stories::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(
      from 120deg,
      rgba(255, 200, 87, 0.08),
      rgba(255, 78, 188, 0.08),
      rgba(34, 211, 238, 0.08),
      rgba(167, 139, 250, 0.08),
      rgba(255, 200, 87, 0.08)
    );
  filter: blur(120px);
  animation: depoGlowRotate 28s linear infinite;
  pointer-events: none;
}

@keyframes depoGlowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ========= TÍTULO COM MAIS PRESENÇA ========= */

.secao-depo-stories h2 {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #1f2937;
  margin-bottom: 16px;
}

.secao-depo-stories h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22d3ee,
    #a78bfa
  );
}

/* ========= STORIES COM MAIS CONTRASTE ========= */

.depo-story {
  background: #ffffff;
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(255,255,255,0.4);
}

/* story ativo mais vibrante */
.depo-story.is-active {
  box-shadow:
    0 45px 110px rgba(99, 102, 241, 0.45),
    0 0 0 1px rgba(255,255,255,0.65);
}

/* ========= OVERLAY MAIS VIVO ========= */

.depo-story-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(17, 24, 39, 0.15),
      rgba(17, 24, 39, 0.05) 40%,
      rgba(17, 24, 39, 0.55)
    );
}

/* ========= DOTS MAIS ENCANTART ========= */

.depo-dot {
  background: rgba(99, 102, 241, 0.3);
}

.depo-dot.is-active {
  background: linear-gradient(
    90deg,
    #ffca28,
    #ff4f9a,
    #22d3ee,
    #a78bfa
  );
  box-shadow: 0 0 12px rgba(255, 99, 195, 0.6);
}

/* ========= MOBILE ========= */

@media (max-width: 600px) {
  .secao-depo-stories {
    padding: 80px 0 100px;
  }

  .secao-depo-stories h2 {
    font-size: 30px;
  }
}
/* ========== SEÇÃO AULAS DE DANÇA ENCANTART ========== */

.secao-danca {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, #4f46e5 0, #1d4ed8 18%, transparent 50%),
              radial-gradient(circle at 100% 0, #ec4899 0, #db2777 22%, transparent 55%),
              linear-gradient(135deg, #1e3a8a, #ec4899);
  color: #ffffff;
}

/* halo animado de luz no fundo */
.secao-danca::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 80%, rgba(45, 212, 191, 0.5), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(251, 191, 36, 0.55), transparent 65%);
  filter: blur(80px);
  opacity: 0.9;
  pointer-events: none;
  animation: dancaGlow 20s ease-in-out infinite alternate;
}

@keyframes dancaGlow {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-30px, 20px, 0) scale(1.05); }
  100% { transform: translate3d(30px, -15px, 0) scale(1.02); }
}

.danca-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

/* TEXTO LADO ESQUERDO */
.danca-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.danca-texto h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.danca-intro {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #f9fafb;
  margin-bottom: 18px;
}

/* Lista de benefícios */
.danca-lista {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.danca-lista li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.danca-lista li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  color: #facc15;
}

.danca-lista li strong {
  display: block;
  font-size: 15px;
}

.danca-lista li span {
  opacity: 0.92;
}

/* Botão dança – um pouco maior */
.danca-btn {
  margin-top: 4px;
  padding-inline: 32px;
  font-size: 15px;
  white-space: normal;
}

/* CARD VISUAL LADO DIREITO (glass + tilt) */
.danca-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

/* glow embaixo do card */
.danca-card-wrap::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 130px;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(15, 23, 42, 0.8),
    transparent 70%);
  filter: blur(18px);
  opacity: 0.9;
  z-index: 0;
}

.danca-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  padding: 22px 22px 24px;
  overflow: hidden;

  background: linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.92),
      rgba(30, 64, 175, 0.96)
    );
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.12);

  transform-origin: center;
  transform: perspective(1100px) rotateX(8deg) rotateY(-10deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* brilho gradiente na borda do card */
.danca-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 140deg,
    #f97316,
    #ec4899,
    #6366f1,
    #22c55e,
    #f97316
  );
  opacity: 0.65;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* camada de “vidro” interna */
.danca-card-bg {
  position: absolute;
  inset: 1px;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.14), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.25), transparent 60%),
              rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 0;
}

.danca-card-conteudo {
  position: relative;
  z-index: 1;
}

.danca-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.danca-card-text {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 16px;
}

.danca-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #fb7185);
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
}

/* hover – card endireita e vem pra frente */
.danca-card:hover {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 32px 70px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .danca-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .danca-texto h2 {
    font-size: 28px;
  }

  .danca-card {
    max-width: 320px;
    margin-inline: auto;
    transform: perspective(1000px) rotateX(4deg) rotateY(-6deg);
  }
}

@media (max-width: 600px) {
  .danca-intro {
    font-size: 14px;
  }

  .danca-card {
    max-width: 290px;
  }

  .danca-card-wrap::before {
    width: 260px;
    filter: blur(20px);
  }
}
/* ================= AULAS DE DANÇA ENCANTART ================= */

.secao-danca {
  background: linear-gradient(
    135deg,
    #fde6f0 0%,
    #f6d5ff 40%,
    #cfd9ff 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.secao-danca::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.35), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(186, 144, 255, 0.35), transparent 60%);
  pointer-events: none;
}

.dança-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dança-label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b21a8;
  font-weight: 700;
}

.dança-texto h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 18px;
  color: #2d033b;
}

.dança-texto .destaque {
  background: linear-gradient(90deg, #ff4d8d, #9d4edd);
  -webkit-background-clip: text;
  color: transparent;
}

.dança-descricao {
  font-size: 16.5px;
  color: #3c1361;
  max-width: 480px;
}

.dança-lista {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}

.dança-lista li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #371b58;
}

.destaque-ballet {
  font-weight: 700;
  color: #d63384;
}

.dança-btn {
  font-size: 16px;
  padding: 8px 26px;
}

/* IMAGEM BALLET */
.dança-imagem {
  position: relative;
  display: flex;
  justify-content: center;
}

.dança-imagem img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 35px 70px rgba(0,0,0,0.25));
  transform-origin: center;
  transition: transform 0.5s ease;
}

.dança-imagem:hover img {
  transform: translateY(-10px) scale(1.03);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .dança-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dança-descricao {
    margin: 0 auto;
  }

  .dança-imagem img {
    max-width: 320px;
  }
}
/* =============== CONTATOS PREMIUM =================== */

.contato-secao {
  position: relative;
  overflow: hidden;
}

/* overlay de luz suave, pra ficar mais “mágico” */
.contato-secao::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.contato-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contato-texto h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contato-intro {
  margin-bottom: 20px;
  font-size: 16px;
  color: #e5e7eb;
}

.contato-texto p {
  font-size: 15px;
  color: #f9fafb;
  margin-bottom: 6px;
}

/* --- redes sociais --- */

.contato-social {
  margin-top: 26px;
}

.contato-social-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f9fafb;
  opacity: 0.85;
  margin-bottom: 10px;
}

.contato-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.15);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.14);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    filter 0.2s ease;
}

/* cores individuais */
.social-insta {
  background: radial-gradient(circle at 30% 0%, #ffd600, transparent 55%),
              radial-gradient(circle at 0% 100%, #ff0069, transparent 55%),
              radial-gradient(circle at 100% 100%, #7200ff, transparent 55%);
}

.social-face {
  background: linear-gradient(135deg, #1877f2, #335dff);
}

.social-whats {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.7),
    0 0 0 2px rgba(255, 255, 255, 0.4);
  filter: brightness(1.05);
}

.contato-social-hint {
  margin-top: 8px;
  font-size: 12px;
  color: #e5e7eb;
  opacity: 0.9;
}

/* --- card de vidro do formulário --- */

.contato-card {
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.26), rgba(255,255,255,0.10));
  border-radius: 26px;
  padding: 26px 30px 30px;
  box-shadow:
    0 32px 80px rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* reaproveita sua .form-contato, só dá um up */
.form-contato .grupo label {
  color: #0f172a;
  font-weight: 600;
}

.form-contato input,
.form-contato textarea {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.form-contato input:focus,
.form-contato textarea:focus {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(59, 130, 246, 0.75),
    0 8px 24px rgba(15, 23, 42, 0.35);
}

/* botão centralizado dentro do card */
.contato-btn {
  display: block;
  margin: 18px auto 0;
}

/* responsivo */
@media (max-width: 900px) {
  .contato-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato-card {
    padding: 22px 20px 26px;
  }
}
.social-icon img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(1);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.contato-redes {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}

/* Estilo base dos ícones */
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Imagem dentro */
.social-icon img {
  width: 22px;
  height: 22px;
}

/* EFEITO PREMIUM NO HOVER */
.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* CORES INDIVIDUAIS */
.social-insta {
  background: radial-gradient(circle at 30% 30%, #ffdc80, #f77737, #e1306c, #c13584);
}

.social-face {
  background: #1877f2;
}

.social-whats {
  background: #25d366;
}
