/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fffefc;
  position: relative;
  z-index: 0;
  
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/fundo-sandry2.png') repeat;
  background-size: cover; /* Faz a imagem preencher o fundo */
  background-attachment: fixed; /* Dá um efeito sutil de paralaxe */
  opacity: 0.4; /* Reduz a sombra para algo mais discreto */
  z-index: -1;
              
  
}

/* No mobile (até 768px) */
@media (max-width: 768px) {
  body::before {
    opacity: 0.3; /* Ainda mais sutil no mobile */
    background-size: contain; /* Opcional: pode ajudar a não distorcer a imagem no mobile */
  }
}



html {
  scroll-behavior: smooth;
}
/* Container padrão - geral */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cabeçalho fixo */
.header {
  background-color: #fffefc;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Container do header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px; /* para manter alinhado com .container */
  margin: 0 auto;
  padding: 0 1rem; /* deixa igual ao container */
  height: 90px; /* ajuste a gosto, ou remova se preferir altura automática */
}

/* Logo clean */
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #111; /* Cor neutra, elegante */
  text-decoration: none; /* Remove sublinhado */
  cursor: default; /* Tira a aparência de link */
  margin-top: 1rem; /* Espaço suave em cima */
}


/* Menu Desktop */
.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

.nav-desktop a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.1; /* linha mais compacta */
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus {
  background-color: #e0e0e0;
  color: #000;
}

/* Botão Hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animação do botão ao abrir */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Menu Mobile Lateral */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -250px; /* Fora da tela */
  width: 250px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 0 0 0 8px;
  transition: right 0.4s ease;
  z-index: 1002;
}

.nav-mobile.active {
  right: 0;
  display: flex;
}

.nav-mobile a {
  color: #111;
  text-decoration: none;
  padding: 1rem 0;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-mobile a:hover {
  color: #007BFF;
  background-color: rgba(0, 0, 0, 0.05);
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }
}
/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  ); /* degradê suave */
  backdrop-filter: blur(4px); /* leve efeito de desfoque */
  z-index: 999; /* acima do conteúdo, abaixo do menu */
  opacity: 0;
  pointer-events: none; /* evita clique quando não está ativo */
  transition: opacity 0.3s ease;
  border-radius: 0; /* pode colocar um leve arredondamento, se quiser */
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all; /* ativa cliques */
}

/* ============================
  Texto Sections
============================ */


/* ==================== SEÇÃO: NEXT-GEN ==================== */
.next-gen {
  background-color: #0b0c1a; /* base bem escura, azul-escuro quase preto */
  background-image:
    radial-gradient(ellipse at center, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(ellipse at center, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(45deg, #00f2ff, #ff00e0,  #00f2ff); /* roxo azulado e magenta */
  background-size: 40px 40px, 60px 60px, 100% 100%;
  background-position: 0 0, 20px 30px, 0 0;
  background-repeat: repeat, repeat, no-repeat;

  color: #ddd;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 400;
  font-family: 'Playfair', Tahoma, Geneva, Verdana, sans-serif;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 20px;
  box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00e0;
  animation: pulseBorder 4s infinite;
  overflow: hidden;
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00e0; }
  50% { box-shadow: 0 0 40px #39ff14, 0 0 80px #fff300; }
  100% { box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00e0; }
}

.next-gen h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fcfcfc;
  text-shadow: 0 0 6px #5fa1e3;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  animation: glitch 12s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 2px #ff00e0, -2px -2px #00f2ff; }
  20% { text-shadow: -2px 2px #ff00e0, 2px -2px #00f2ff; }
  40% { text-shadow: 2px -2px #ff00e0, -2px 2px #00f2ff; }
  60% { text-shadow: -2px -2px #ff00e0, 2px 2px #00f2ff; }
  80% { text-shadow: 2px 2px #ff00e0, -2px -2px #00f2ff; }
  100% { text-shadow: 2px -2px #ff00e0, -2px 2px #00f2ff; }
}

.next-gen h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fcfcfc;
  text-shadow: 0 0 6px #5fa1e3;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.next-gen h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #00f2ff, #ff00e0);
  margin: 0.5rem auto 0;
}

.next-gen h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* ==================== LISTA DE SERVIÇOS ==================== */

.next-gen .services-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.next-gen .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 300px;
}

.next-gen .services-list li {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #faffff;
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

/* ==================== TICKS ==================== */

.next-gen .tick-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 10px;
  border: 2px solid currentColor;
  animation: pulseTick 3s infinite ease-in-out;
}

.next-gen .tick-vermelho { color: #FF6347; }
.next-gen .tick-roxo    { color: #8A2BE2; }
.next-gen .tick-azul    { color: #00BFFF; }
.next-gen .tick-amarelo { color: #FFD700; }

@keyframes pulseTick {
  0%   { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 768px) {
  .next-gen h1 { font-size: 2.5rem; }
  .next-gen h2 { font-size: 2rem; }
  .next-gen h3 { font-size: 1.5rem; }
  .next-gen .services-list li { font-size: 1rem; }
  .next-gen .tick-circle { width: 22px; height: 22px; font-size: 0.8rem; }
}



/* ==================== WE WORK ==================== */

.we-work {
  background: linear-gradient(135deg, #0b0c1a, #1a1a1a);
  color: #eee;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff00e0;
  backdrop-filter: blur(8px);
  font-family: 'Playfair', Tahoma, Geneva, Verdana, sans-serif;
}

.we-work h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00f2ff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 0 0 8px #5fa1e3;
  animation: glitchWeWork 10s infinite;
}

@keyframes glitchWeWork {
  0% { text-shadow: 2px 2px #ff00e0, -2px -2px #00f2ff; }
  25% { text-shadow: -2px 2px #ff00e0, 2px -2px #00f2ff; }
  50% { text-shadow: 2px -2px #ff00e0, -2px 2px #00f2ff; }
  75% { text-shadow: -2px -2px #ff00e0, 2px 2px #00f2ff; }
  100% { text-shadow: 2px 2px #ff00e0, -2px -2px #00f2ff; }
}

.we-work h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #00f2ff, #ff00e0);
  margin: 0.5rem auto 0;
}

.we-work .empresas-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.we-work .empresas-item {
  flex: 1 1 300px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.we-work .empresas-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00f2ff, 0 0 30px #ff00e0;
}

.we-work h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14;
  margin-bottom: 1rem;
}

.we-work .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.we-work .bullet-list li {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  color: #faffff;
}

.we-work .bullet-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 1rem;
  font-weight: bold;
  color: #00f2ff;
  border-radius: 50%;
  border: 2px solid currentColor;
  margin-right: 10px;
  animation: pulseCircle 3s infinite ease-in-out;
}

@keyframes pulseCircle {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

/* Responsivo */
@media (max-width: 768px) {
  .we-work h2 { font-size: 2rem; }
  .we-work h3 { font-size: 1.4rem; }
  .we-work .bullet-list li { font-size: 1rem; }
  .we-work .bullet-circle {
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
  }
}

/* ==================== SEÇÃO: EMPRESAS ==================== */

.empresas h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333; /* cor mais escura */
}

.empresas-lista {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.empresas-item {
  flex: 1;
}

.empresas-item h3 {
  font-size: 2rem;
  color: #d6d6d6; /* cor mais escura */
  margin-bottom: 1rem;

}

/* ==================== SEÇÃO: LISTA COM TICKS COLORIDOS COM BORDA ==================== */

.tick-list,
.servicos ul,
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 300px; /* flex-grow, flex-shrink, flex-basis: colunas flexíveis com mínimo de 300px */
}

.tick-list li,
.servicos ul li,
.services-list li {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  text-align: left; /* garante que o texto fique alinhado à esquerda */
  color: #faffff; /* cor escura */
  display: flex;
  align-items: center;
}

.tick-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
  color: white;
  border: 2px solid currentColor;
  box-shadow: none; /* removida sombra intensa */
  animation: pulseTick 3s infinite ease-in-out;
}

.tick-vermelho { color: #FF6347; }
.tick-roxo    { color: #8A2BE2; }
.tick-azul    { color: #007BFF; }
.tick-amarelo { color: #FFD700; }

.tick-list .tick,
.services-list li .tick,
.servicos ul li .tick {
  font-size: 1rem;
  margin-right: 10px;
  font-weight: bold;
}

/* Layout flexível */
.services-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-columns ul.services-list {
  flex: 1 1 300px;
  margin: 0;
  padding: 0;
}

/* Animação para os ticks */
@keyframes pulseTick {
  0%   { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}
/* Ajuste para telas pequenas */
@media (max-width: 768px) {
  .empresas h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .empresas-lista {
    gap: 1.2rem;
  }

  .empresas-item h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  /* Tamanho do texto das listas de ticks */
  .tick-list li,
  .servicos ul li,
  .services-list li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  /* Tamanho dos ícones dos ticks */
  .tick-circle {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    margin-right: 8px;
  }
}





/* ============================
   Hero Sections
============================ */

.hero,
.empresas,
.sobre,
.servicos,
.contato {
  padding: 4rem 0;
  text-align: left;
}



.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto 1.25rem auto;
  text-align: left;
}

.hero .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: #333;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* ============================
   Hero Banner
============================ */

.hero-banner {
  background-image: url("../images/h4_hero.png");
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
  animation: glowFadeUp 1.2s ease forwards;
  opacity: 0;
  text-shadow:
    0 0 10px rgba(0, 224, 255, 0.7),
    0 0 20px rgba(0, 224, 255, 0.6),
    0 0 40px rgba(0, 224, 255, 0.5);
}

@keyframes glowFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    text-shadow: none;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0;
  animation: glowFadeUpSubtitle 1.4s ease forwards;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.7),
    0 0 6px rgba(0, 224, 255, 0.4),
    0 0 12px rgba(0, 224, 255, 0.2);
}

@keyframes glowFadeUpSubtitle {
  from {
    opacity: 0;
    transform: translateY(30px);
    text-shadow: none;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Hero Buttons
============================ */

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons a {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-solid-lg {
  background: linear-gradient(135deg, #00e0ff, #006dff);
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.6), 0 0 24px rgba(0, 109, 255, 0.4);
}

.btn-solid-lg:hover,
.btn-solid-lg:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(0, 224, 255, 0.8), 0 0 36px rgba(0, 109, 255, 0.6);
  background: linear-gradient(135deg, #00b8e6, #0051cc);
}

.btn-outline-lg {
  border: 2px solid #00e0ff;
  color: #00e0ff;
  background-color: transparent;
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.2);
}

.btn-outline-lg:hover,
.btn-outline-lg:focus {
  background-color: rgba(0, 224, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0, 224, 255, 0.6);
}

/* ============================
   Responsividade
============================ */

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  
  .hero p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .hero .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero-banner {
    height: 50vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}



/* ==================== SEÇÃO: LISTA COM BOLINHAS (●) ==================== */

.bullet-list,
.bullet-servicos ul,
.bullet-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li,
.bullet-servicos ul li,
.bullet-services-list li {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: #faffff; /* cor escura */
}

.bullet-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: bold;
  margin-right: 10px;
  color: currentColor;
}


/* ============================
   Testimonial Section (Sandry Design)
============================ */
.testimonials-section {
position: relative;	
 background: 
  url('../images/fundo-testemunhos4.PNG');
  linear-gradient(135deg, #f0f4ff, #e6f0ff);    
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: lighten;

  color: #111;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  color: #0f0f0f;
  text-align: center;
  animation: glowFadeUp 1.2s ease forwards;
  opacity: 0;
  text-shadow:
    0 0 10px rgba(0, 224, 255, 0.7),
    0 0 20px rgba(0, 224, 255, 0.6),
    0 0 40px rgba(0, 224, 255, 0.5);    
  font-family: 'Playfair Display', serif;
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #e0f7ff 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 30px;
  margin: 0 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  border: 2px solid #0ff;
  transition: transform 0.5s ease-in-out;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.testimonial p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial cite {
  font-style: normal;
  font-weight: bold;
  color: #007a99;
  font-size: 0.9rem;
}

/* Transições */
@keyframes slide {
  0% { transform: translateX(0%); }
  16.66% { transform: translateX(-100%); }
  33.33% { transform: translateX(-200%); }
  50% { transform: translateX(-300%); }
  66.66% { transform: translateX(-400%); }
  83.33% { transform: translateX(-500%); }
  100% { transform: translateX(0%); }
}

.testimonial-carousel-inner {
  display: flex;
  width: 600%;
  animation: slide 45s infinite ease-in-out;
}
/* Animação título (opcional) */
@keyframes glowFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.sandry-cta {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Fundo com imagem */
.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/fundo.jpg'); /* Exemplo */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Seção geral */
.sandry-cta {
  position: relative;
  padding: 80px 20px;
  min-height: 400px;
  text-align: center;
  background-color: #f5f5f5;
  overflow: hidden;
  z-index: 1;
}

/* Imagem de fundo */
.background-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/bg-cta.jpg'); /* Ajuste o caminho conforme necessário */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

/* Camada branca com opacidade */
.overlay-white {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00f2ff, #ff00e0);;
  z-index: 1;
  pointer-events: none;
}



/* Conteúdo principal */
.cta-container {
  position: relative;
  z-index: 2;
  
}

.cta-info {
  max-width: 700px;
  margin: 0 auto;
}

/* Avatar com brilho neon animado */
.cta-avatar img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00e0ff;
  box-shadow: 0 0 20px #00e0ff;
  margin-bottom: 30px;
  animation: neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0 0 20px #00e0ff, 0 0 40px #00e0ff;
  }
  50% {
    box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;
  }
}

/* Título com brilho animado */
.cta-text h2 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: #111;
  margin-bottom: 20px;
  animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 8px #00e0ff;
  }
  50% {
    text-shadow: 0 0 16px #00ffff;
  }
}

.cta-text p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #ddd;
}

/* Botão com efeito de luz (shimmer) */
.cta-button {
  background: linear-gradient(90deg, #00f2ff, #ff00e0);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.cta-button:hover::before {
  left: 125%;
}

.cta-button:hover {
  background: linear-gradient(90deg, #ff00e0, #00f2ff);
  box-shadow: 0 0 20px #ff00e0;
  transform: scale(1.05);
}

/* Efeito de linha horizontal animada para toque futurista */
.cta-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e0ff, transparent);
  animation: moveLines 4s linear infinite;
  opacity: 0.15;
  transform: translateY(-50%);
  z-index: 0;
}

@keyframes moveLines {
  0% { transform: translateX(0) translateY(-50%); }
  100% { transform: translateX(-50%) translateY(-50%); }
}



/* Menu horizontal visível só em desktop */
.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  background-color: transparent;
}

.nav-dotted {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px dotted #111;
  transition: all 0.3s ease;
}

.nav-dotted:hover {
  color: #007BFF;
  border-color: #007BFF;
}

/* Ocultar em mobile */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
}
.form-futurista-v2 {
  margin-top: clamp(40px, 6vw, 100px);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #00e0ff;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px #00e0ff44;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: flutuar 6s ease-in-out infinite;
}


.form-futurista-v2 h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #0f0f0f;
  margin-bottom: 30px;
  font-size: 2rem;
}

.input-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-icon {
  position: relative;
  flex: 1;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #00e0ff;
  font-size: 1.1rem;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  margin-bottom: 20px;
  border: 1px solid #00e0ff;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.input-icon textarea {
  resize: vertical;
  min-height: 120px;
}

.input-icon input:focus,
.input-icon textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 12px #00e0ff;
}

.form-futurista-v2 button {
  background: #00e0ff;
  color: #111;
  padding: 14px 32px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: block;
  margin: 20px auto 0;
}

.form-futurista-v2 button:hover {
  background: #009fc0;
  transform: scale(1.05);
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.imagem-central {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.imagem-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3); /* leve efeito neon */
}

.imagem-container img {
  width: 300px;
  max-width: 100%;
  border-radius: 15px;
  display: block;
}


/* Young Talent Section */
.young-talent {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.young-talent h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00f2ff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.young-talent h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #00f2ff, #ff00e0);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.young-talent p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ddd;
}

.young-talent .cta-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #00f2ff;
  margin-top: 2rem;
}

.young-talent .talent-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.young-talent .talent-gallery figure {
  background: #1a1a1a;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 220px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 340px; /* Altura fixa para padronizar */
}

.young-talent .talent-gallery figure:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 0, 224, 0.5);
}

.young-talent .talent-gallery img {
  width: 100%;
  height: 260px; /* Altura fixa para imagens */
  object-fit: cover;
  display: block;
}

.young-talent .talent-gallery figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem;
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  flex-shrink: 0;
}

.young-talent .cta-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #00f2ff, #ff00e0);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2rem;
  letter-spacing: 1px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.young-talent .cta-link:hover {
  background: linear-gradient(90deg, #ff00e0, #00f2ff);
  box-shadow: 0 0 20px #ff00e0;
}

/* Responsividade */
@media (max-width: 768px) {
  .young-talent h2 {
    font-size: 2.2rem;
  }

  .young-talent p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .young-talent .talent-gallery {
    gap: 1rem;
  }

  .young-talent .talent-gallery figure {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto; /* Remove altura fixa para melhor ajuste */
  }

  .young-talent .talent-gallery img {
    height: 220px; /* Ajuste menor para mobile */
  }
}


.footer-sandry {
  position: relative;
  background: transparent;
  color: #00475e; /* azul escuro para contraste */
  padding: 40px 20px 30px;
  margin-top: 0;  /* <-- aqui: margem superior para separar do que vem antes */
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.footer-sandry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top: 2px solid #00e0ff55;
  z-index: 1;
}

.footer-sandry > .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Footer top: Brand, nav, contact, social */
.footer-top {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #007a99;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.4;
  color: #00475e;
}

.footer-nav {
  flex: 1 1 200px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: #00475e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #00e0ff;
}

.footer-contact {
  flex: 1 1 200px;
}

.footer-contact h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #007a99;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-contact a {
  color: #00475e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #00e0ff;
}

.footer-social {
  flex: 1 1 150px;
}

.footer-social h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #007a99;
}

.footer-social ul.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.footer-social ul.social-links li a {
  color: #00475e;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-social ul.social-links li a:hover {
  color: #00e0ff;
}

/* Footer newsletter form */
.footer-form {
  flex: 1 1 100%;
  margin-top: 30px;
  text-align: center;
}

.footer-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #007a99;
}

.footer-form form.custom-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-form input[type="email"] {
  padding: 12px 15px;
  border-radius: 30px;
  border: 2px solid #00e0ff;
  width: 320px;
  max-width: 100%;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  color: #00475e;
  background: #fff;
}

.footer-form input[type="email"]:focus {
  border-color: #009fc0;
}

.footer-form button.submit-button {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: #00e0ff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  min-width: 130px;
}

.footer-form button.submit-button:hover {
  background: #009fc0;
}

.footer-form p.terms {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer bottom copyright */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #00e0ff55;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #00475e;
  font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 15px; /* Reduzido de 25px para 15px */
    align-items: flex-start;
  }

  .footer-brand {
    text-align: left;
    width: 100%;
    margin-bottom: 0; /* Remove margens extras */
  }

  .footer-nav,
  .footer-contact,
  .footer-social {
    flex: none;
    width: 100%;
    text-align: left;
    margin-top: 0; /* Remove margens extras */
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; /* Menos espaço entre os links */
    margin: 0;
    padding: 0;
  }

  .footer-nav ul li {
    margin-bottom: 0;
  }

  .footer-contact p,
  .footer-contact a {
    display: block;
    margin-bottom: 5px;
  }

  .footer-social ul.social-links {
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  .footer-form form.custom-form {
    flex-direction: column;
    gap: 12px; /* Reduzido o espaçamento */
  }

  .footer-form input[type="email"],
  .footer-form button.submit-button {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .footer-sandry {
    padding: 15px 15px 15px; /* Um pouco menos de padding */
  }

  .footer-brand h2 {
    font-size: 1.6rem;
    margin-bottom: 8px; /* Um pequeno espaço abaixo do título */
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 8px; /* Um pequeno espaço abaixo da descrição */
  }

  .footer-contact h4,
  .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .footer-contact p,
  .footer-contact a,
  .footer-social ul.social-links li a {
    font-size: 0.9rem;
  }

  .footer-form h3 {
    font-size: 1.3rem;
  }

  .footer-form input[type="email"] {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .footer-form button.submit-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .footer-form p.terms {
    font-size: 0.75rem;
    margin-top: 6px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 25px;
    padding-top: 10px;
  }

  .footer-nav ul {
    gap: 10px;
  }
}
