/* ==========================
   FONTES PERSONALIZADAS
   ========================== */

/* Nunito - usada globalmente */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap');

/* ==========================
   VARIÁVEIS GERAIS
   ========================== */
:root {
  --bg-dark: #06000e;
  --accent1: #c800ff;
  --accent2: #ff00b7;
  --text-dark: #222;
  --text-light: #fff;
  --soft: #555;
  --gray: #f8f8f8;
/*  --gradient: linear-gradient(90deg, var(--accent1), var(--accent2));*/
}

/* ==========================
   BASE GLOBAL
   ========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
/*  text-rendering: optimizeLegibility;*/
}

/* ==========================
   TÍTULOS
   ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
}

/*h1, h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/

/* ==========================
   EFEITO TEXTO COM IMAGEM 
   ========================== */
.span-bg-image {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  background-image: url('efeito-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: moveBg 8s linear infinite;
  filter: brightness(1.1);
}

@keyframes moveBg {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ==========================
   NAVBAR
   ========================== */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  transition: .3s;
}
nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); }
nav img { height: 40px; }
nav ul { list-style: none; display: flex; gap: 25px; }
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}
nav a:hover { color: var(--accent1); }
.menu-toggle { display: none; cursor: pointer; }
.menu-toggle i { font-size: 24px; color: #fff; }

@media(max-width:900px){
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px; right: 5%;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  nav ul.active { display: flex; }
  .menu-toggle { display: block; }
}

/* ==========================
   HEADER
   ========================== */
header {
  background: var(--bg-dark);
  color: var(--text-light);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
header h1 {
  font-size: 3.8rem;
  margin-bottom: 15px;
  animation: fadeUp 1.2s ease;
}
header p {
  font-size: 1.2rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 1.8s ease;
}
header .cta {
  margin-top: 35px;
  background: var(--gradient);
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
  animation: fadeUp 2.2s ease;
}
header .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,0,183,.6);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================
   HERO SECTION
   ========================== */
.hero-section {
/*  padding: 20px 10%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}
.hero-left { flex: 1 1 500px; }
.hero-right { flex: 1 1 300px; }

.hero-label {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: #4f4f4f !important;
}

.hero-desc {
  color: #333;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 30px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-button {
  background: linear-gradient(90deg, #2b00ff, #a000ff);
  color: #fff;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(160,0,255,0.4);
}

.cta-avatars {
  display: flex;
  align-items: center;
}
.cta-avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.cta-avatars img:first-child { margin-left: 0; }

.cta-note {
  font-size: 0.95rem;
  color: #666;
}

@media(max-width:900px){
  .hero-container { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3rem; }
  .hero-desc { margin: 0 auto 25px; }
  .cta-group { justify-content: center; }
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: var(--bg-dark);
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-size: .9rem;
}

/* ==========================
   FAQ
   ========================== */
.faq-item { margin-bottom: 15px; border-bottom: 1px solid #ddd; }
.faq-question {
  cursor: pointer;
  padding: 10px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Nunito', sans-serif;
}
.faq-answer { display: none; padding: 10px 10px 20px; color: var(--soft); }
.faq-question.active + .faq-answer { display: block; }
/* ==========================
   FORMULÁRIO
   ========================== */
form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
input, textarea {
  padding: 14px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
}
button[type=submit] {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: .3s;
}
button[type=submit]:hover { transform: scale(1.05); }

/* ==========================
   CTA FLOAT
   ========================== */
.cta-float {
  position: fixed;
  bottom: 25px; right: 25px;
  z-index: 1000;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: .3s;
}
.cta-float:hover { transform: scale(1.05); }

/* ==========================
   FUNDO ANIMADO
   ========================== */
.bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.line {
  position: absolute; width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent1), transparent);
  opacity: .25; animation: moveLine 6s linear infinite;
}
@keyframes moveLine { 0% {transform:translateY(-100%);} 100% {transform:translateY(100%);} }
.light {
  position: absolute; width: 8px; height: 8px;
  background: var(--accent2); border-radius: 50%;
  box-shadow: 0 0 15px var(--accent2);
  animation: moveLight 6s linear infinite;
}
@keyframes moveLight {
  0% {transform: translateY(-100vh) scale(1);}
  50% {transform: translateY(50vh) scale(1.3);}
  100% {transform: translateY(100vh) scale(1);}
}

/* ==========================
   CANVAS
   ========================== */
#particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; }

/* ==========================
   SCROLL DOWN
   ========================== */
.scroll-down {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: fadeUp 2.8s ease;
  z-index: 4;
}
.scroll-down i {
  color: #fff;
  font-size: 28px;
  animation: arrowMove 1.4s infinite ease-in-out;
}
@keyframes arrowMove {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ==========================
   CURSOR
   ========================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 25px; height: 25px;
  border: 2px solid var(--accent1);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .1s ease, width .2s, height .2s;
  z-index: 9999;
  mix-blend-mode: difference;
}

/* ==========================
   SCROLL REVEAL
   ========================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================
   SEÇÕES
   ========================== */
section { padding: 20px 5%; max-width: 1200px; margin: auto; }
.gray { background: var(--gray); }
.white { background: #fff; }
h2 { text-align: center; font-size: 2.4rem; margin-bottom: 60px; }

/* ==========================
   GRID DE SERVIÇOS
   ========================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 40px;
}
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: .4s cubic-bezier(.165,.84,.44,1);
  transform: translateZ(0);
  font-family: 'Nunito', sans-serif;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px rgba(0,0,0,.1);
}
.card i {
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}




/* ==========================
   SEÇÃO SOBRE (2 COLUNAS)
   ========================== */
.sobre-analyzze {
  padding: 120px 10%;
  background: #fff;
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* Coluna esquerda */
.sobre-col.esquerda .subtitulo {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.sobre-col.esquerda h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  color: #222;
}

.sobre-col.esquerda .span-bg-image {
  background-image: url('assets/fonts/efeito-bg.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: moveBg 10s linear infinite;
}

/* Coluna direita */
.sobre-col.direita p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.sobre-col.direita .cta-button {
  background: linear-gradient(90deg, #2b00ff, #a000ff);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all .3s ease;
}
.sobre-col.direita .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(160,0,255,0.4);
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobre-col.esquerda h1 {
    font-size: 2.8rem;
  }
}


/* ======== SEÇÃO ======== */
#carrossel-servicos {
  width: 100%;
  background: #f9fafb;
  padding: 100px 0;
  box-sizing: border-box;
  overflow: hidden;
}

#carrossel-servicos h2 {
  font-size: 2.6rem;
  color: #002B56;
  font-weight: 700;
  text-align: left;
  width: 90%;
  margin: 0 auto 60px;
}

/* ======== CARROSSEL ======== */
.carousel {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
}

.carousel-cell {
  width: 340px;
  height: 400px;
  border-radius: 14px;
  padding: 40px 30px;
  margin-right: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.carousel-cell:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ======== CORES ======== */
.bg-roxo { background: #8F208E; }
.bg-magenta { background: #BB1F85; }
.bg-black{ background: #22252c; }

/* ======== CONTEÚDO ======== */
.carousel-cell i {
  font-size: 2rem;
  margin-bottom: 16px;
}

.carousel-cell h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.carousel-cell p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  flex-grow: 1;
  max-width: 90%;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.15);
}

/* ======== INDICADOR DE ROLAGEM ======== */
.scroll-indicator {
  width: 90%;
  height: 4px;
  margin: 30px auto 0;
  background: linear-gradient(90deg,#BB1F85 20%, #8F208E 20%);
  background-size: 200% 100%;
  border-radius: 2px;
  transition: background-position 0.3s ease;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 900px) {
  .carousel-cell {
    width: 80%;
    height: auto;
    margin-right: 20px;
  }
  #carrossel-servicos h2 {
    text-align: center;
  }
}
