@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

:root {
  --bg: #0c0d10;
  --bg-light: #14161b;
  --primary: #4da3ff;
  --text: #f5f5f5;
  --muted: #b6b6b6;
  --radius: 16px;
  --transition: .3s ease;

  /* Fundo hero + sobre */
  --hero-bg: linear-gradient(135deg, #101114, #1a1d24);
}

html {
  scroll-behavior: smooth;
}

.section-dark {
  background: var(--bg);
}

.section-light {
  background: var(--bg-light);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{
  text-decoration: none;
  color: aliceblue;
}

/* HEADER */
.caixa_logo_titulo{
    display: flex;
    align-items: center;
    justify-content: center;
}

.guaxinim_logo{
    width: 81px;
    height: 76px;
}

.container_logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 80px;
}

.logo_titulo{
    font-family: "Roboto", sans-serif;
    height: 22px;
    font-weight: 700;
    font-size: 25px;
    color: #ce4f3e;
}

.logo_subtitulo{
    font-family: "VT323", monospace;
    font-weight: 400;
    font-size: 30px;
    color: #e49838;
}

header {
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: var(--text);
  margin-left: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

nav a:hover { color: var(--primary); }





/* =============================
   HAMBURGER BUTTON
============================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1101;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
}

/* =============================
   OVERLAY
============================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1100;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =============================
   MENU MOBILE
============================= */
.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(20, 22, 27, 0.95);
  backdrop-filter: blur(12px);
  padding: 80px 30px;
  transform: translateX(100%);
  transition: .4s ease;
  z-index: 1102;
  display: flex;
  flex-direction: column;
}

.menu-mobile.active {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text);
  cursor: pointer;
}

.menu-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-mobile-nav a {
  font-size: 1.3rem;
  color: var(--text);
  transition: .3s;
}

.menu-mobile-nav a:hover {
  color: var(--primary);
  transform: translateX(6px);
}

/* =============================
   MOBILE ONLY
============================= */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
  }

  nav.desktop-nav {
    display: none;
  }
}






/* HERO */
.hero {
  padding: 120px 10%;
  text-align: center;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

/* === NOVA ANIMAÇÃO DE LUZES QUE PASSAM PELO CENTRO === */
.hero::before,
.hero::after,
.hero .light-orange {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

/* Luz azul — movendo pelo centro com trajeto amplo */
.hero::before {
  background: var(--primary);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  animation: floatCenterBlue 18s infinite ease-in-out;
}

/* Luz laranja — cruzando o centro mais rapidamente */
.hero::after {
  background: #e49838;
  bottom: 40%;
  right: -220px;
  transform: translateY(50%);
  animation: floatCenterOrange 14s infinite ease-in-out;
}

/* Terceira luz opcional para mais vida */
.hero .light-orange {
  background: #e49838;
  top: -150px;
  left: 40%;
  animation: floatSlow 22s infinite alternate ease-in-out;
}

/* ANIMAÇÕES */
@keyframes floatCenterBlue {
  0%   { transform: translate(-50px, -50%) scale(1); }
  40%  { transform: translate(240px, -40%) scale(1.15); }
  70%  { transform: translate(120px, -30%) scale(0.95); }
  100% { transform: translate(-60px, -50%) scale(1.1); }
}

@keyframes floatCenterOrange {
  0%   { transform: translate(40px, 40%) scale(1); }
  50%  { transform: translate(-200px, -10%) scale(1.25); }
  100% { transform: translate(60px, 30%) scale(1); }
}

@keyframes floatSlow {
  0%   { transform: translate(-40px, 0px) scale(1); }
  50%  { transform: translate(60px, 80px) scale(1.1); }
  100% { transform: translate(-30px, 20px) scale(0.95); }
}



.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  opacity: .8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BOTÃO HERO ESTILOSO ===== */
.btn-hero {
  display: inline-block;
  padding: 14px 32px;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  background: #1a1d24;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* borda neon animada */
.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(45deg, #4da3ff, #e49838, #4da3ff);
  background-size: 300%;
  animation: neonHero 6s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .6;
}

@keyframes neonHero {
  0% { background-position: 0% }
  100% { background-position: 300% }
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(77,163,255,0.4);
}


/* === PARTÍCULAS QUE SEGUEM O MOUSE === */
.cursor-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

/* estilo das bolinhas */
.particle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(6px);
  background: var(--primary);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: particleFade 1s linear forwards;
}

/* partícula laranja opcional */
.particle.orange {
  background: #e49838;
}

@keyframes particleFade {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}


/* ========================== */
/* ⭐ SESSÃO DESTAQUES */
/* ========================== */

.destaques {
  padding: 100px 10%;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.destaque-carousel {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 20px;
}

.destaque-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}

.dest-slide {
  min-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.dest-img {
  width: 80%;
  height: 620px;
  object-fit: cover;
  border-radius: 18px;
  filter: brightness(0.95);
  transition: .3s;
}



/* Botões laterais */
.dest-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20,25,30,0.6);
  backdrop-filter: blur(8px);
  border: none;
  padding: 14px;
  font-size: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  z-index: 10;
}

.dest-btn.left { left: 10px; }
.dest-btn.right { right: 10px; }

.dest-btn:hover {
  background: #4da3ff;
  color: #000;
}

/* Responsivo */
@media (max-width: 768px) {
  .dest-img {
    height: 260px;
  }
}



/* ===== SOBRE — O QUE É GUAXINIM DEVELOPER ===== */
.sobre-guaxinim {
  padding: 100px 10%;
  background: var(--bg-light);
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 60px;
}

.sobre-texto {
  max-width: 600px;
}

.sobre-texto h2 {
  margin-bottom: 20px;
}

.sobre-descricao,
.sobre-extra {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.sobre-lista {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.sobre-lista li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.sobre-img img {
  width: 320px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-img{
    display: none;
  }

  .sobre-texto {
    max-width: 100%;
  }
}





/* SERVICES */
.section-title {
  font-size: 2rem;
  text-align: center;
  padding-top: 50px;
}

.section-title::after {
  content: "";
  width: 110px;            /* tamanho da linha */
  height: 3px;            /* espessura */
  background: #4da3ff;    /* cor */
  display: block;
  margin: 10px auto 0;    /* centraliza a linha */
  border-radius: 3px;
}


.services.images-version {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  padding: 40px 14%;
}

.service-card-img {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: .3s;
}

.service-card-img:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(77,163,255,0.15);
}

.service-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .95;
  transition: .3s;
}

.service-card-img:hover .service-img {
  opacity: .75;
}

.service-text {
  padding: 20px;
}

.service-text h3 {
  margin-bottom: 8px;
}

.service-text p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.4em;
}

.btn-hero-glass {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s ease;
}

.btn-hero-glass:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}





/* ===== SESSÃO VANTAGENS ===== */
.vantagens {
  padding: 100px 10%;
  background: var(--bg-light);
  text-align: center;
}

.vantagens > * {
  position: relative;
  z-index: 1;
}

.vantagens h2{
  padding: 0px;
}

.vant-sub {
  max-width: 920px;
  margin: 15px auto 50px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.vantagens-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.vant-item {
  background: #1a1d24;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.vant-item img {
  width: 70px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.vant-item h3 {
  margin-bottom: 10px;
}

.vant-item p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.4em;
}

/* borda neon animada */
.vant-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(45deg, #4da3ff, #e49838, #4da3ff);
  background-size: 300%;
  -webkit-mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.18;
  animation: neonBorder 6s linear infinite;
}

.vant-item:hover {
  transform: translateY(-6px);
}

.vant-item:hover::before {
  opacity: 0.8;
}

@keyframes neonBorder {
  0% { background-position: 0% }
  100% { background-position: 300% }
}


/* ===== SESSÃO VANTAGENS — BLOCO EXPANDIDO ===== */

.vant-extra {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 130px;
}

.vant-linha {
  width: 100%;
  max-width: 1180px; /* deixa igual ao layout da imagem */
  margin: 0 auto; /* centraliza toda a linha */
  
  display: flex;
  align-items: center;
  justify-content: center; /* deixa os itens juntinhos */
  gap: 60px; /* menos espaço entre texto e imagem */

  text-align: left;
  padding: 20px 0;
}

.vant-linha.invert {
  flex-direction: row-reverse;
}

.vant-texto {
  max-width: 520px;
}

.vant-texto h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text);
}

.vant-texto p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6rem;
  margin-bottom: 16px;
}

.vant-texto ul {
  list-style: none;
  padding: 0;
}

.vant-texto ul li {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.vant-img {
  width: 420px; /* mais próximo da imagem que você mostrou */
  max-width: 45%;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .vant-linha,
  .vant-linha.invert {
    flex-direction: column;
    text-align: center;
    max-width: 95%;
  }

  .vant-img {
    max-width: 90%;
    width: 90%;
  }

  .vant-texto {
    max-width: 100%;
  }
}







/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  padding: 40px 8%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 25px;
  transition: transform .4s ease;
}

.project-card {
  min-width: 300px;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

/*carrocel*/
#project-image1{
  background-image: url("../img/clientes/c1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;  
}

#project-image2{
  background-image: url("../img/clientes/c2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

#project-image3{
  background-image: url("../img/clientes/c3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

#project-image4{
  background-image: url("../img/clientes/c4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

#project-image5{
  background-image: url("../img/clientes/c5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

#project-image6{
  background-image: url("../img/clientes/c6.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

#project-image7{
  background-image: url("../img/clientes/c7.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

#project-image8{
  background-image: url("../img/clientes/c8.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

.project-info {
  padding: 20px;
}

.project-info h3{
  color: #e49838;
  padding-bottom: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  padding: 14px;
  font-size: 1.3rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn.left { left: 20px; }
.carousel-btn.right { right: 20px; }

.carousel-btn:hover { opacity: .7; }

/* ===== SESSÃO SOBRE MIM ===== */
.sobre-mim {
  padding: 20px 10%;
  color: var(--text);
}

.sobre-mim .section-title {
  text-align: center;
  margin-bottom: 100px;
}

/* BLOCO BASE */
.sobre-bloco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
}

.bloco-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding-top: 100px;
}

.sobre-bloco.invert {
  flex-direction: row-reverse;
}

.sobremim-img {
  width: 420px;
  height: 380px;
  object-fit: cover;
}

.sobre-logo {
  width: 310px;
  height: 310px;
  object-fit: cover;
}

.container_sobre-texto{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 80px;
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.sobre-texto p {
  margin-bottom: 15px;
  color: var(--muted);
  line-height: 1.6rem;
}

.sobre-lista li {
  margin-bottom: 8px;
  color: var(--text);
}

/* CARDS DE DESTAQUE */
.sobre-subtitle {
  text-align: center;
  margin: 40px 0 30px;
  font-size: 1.7rem;
}

.sobre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

.sobre-card {
  background: #1a1d24;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: .3s;
}

.card-titulo{
    font-size: 1.2rem;
    padding-bottom: 5px;
}

.sobre-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .sobre-bloco,
  .sobre-bloco.invert {
    flex-direction: column;
    text-align: center;
  }

  .sobre-img {
    width: 100%;
    height: 260px;
  }
}



/* ===== CONTATO ===== */
.contato {
  padding: 100px 10%;
}

.contato-sub {
  text-align: center;
  max-width: 720px;
  margin: 15px auto 60px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contato-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

/* FORM */
.contato-form {
  background: var(--bg-light);
  padding: 35px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: #0f1116;
  border: 1px solid #2a2f3a;
  color: var(--text);
  font-size: 0.95rem;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: var(--muted);
}

.contato-form button {
  margin-top: 10px;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(45deg, #4da3ff, #6fd3ff);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
}

.contato-form button:hover {
  transform: translateY(-3px);
  opacity: .85;
}

/* INFO */
.contato-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form_zap{
  width: 32px;
  height: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #101217;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.info-item span {
  font-size: 1.8rem;
}

.info-item h4 {
  margin-bottom: 6px;
}

.info-item p {
  color: var(--muted);
  font-size: .95rem;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.socials a {
  padding: 6px 14px;
  border-radius: 20px;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: .85rem;
  transition: .3s;
}

.socials a:hover {
  background: var(--primary);
  color: #000;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
  }
}







/* FOOTER */
footer {
  margin-top: 60px;
  padding: 20px 10%;
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  background: #0a0b0d;
}

.termos_footer{
  transition: 200ms;
}

.termos_footer:hover{
  color: var(--primary);
  transition: 200ms;
}


/* === BOTÃO FLOTANTE === */
#chat-toggle{
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #4da3ff;
  width: 62px;
  height: 62px;
  font-size: 26px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 20px rgba(0,150,255,.4);
  cursor: pointer;
  transition:.3s;
  z-index: 100;
}
#chat-toggle:hover{ transform: scale(1.07); }

/* === JANELA === */
#chatbox{
  position: fixed;
  bottom: 92px;
  right: 22px;
  width: 340px;
  height: 460px;
  background: #101217;
  border-radius: 16px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(0,0,0,.5);
  z-index: 100;
}

/* CABEÇALHO */
#chat-header{
  background: linear-gradient(45deg,#4da3ff,#6fd3ff);
  color: #000;
  padding: 14px;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
}

/* CORPO DO CHAT */
#chat-body {
  flex: 1;
  padding: 15px;
  overflow: hidden; /* impedir scroll duplo */
}

#messages {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}


/* BOLHAS DE MENSAGEM */
.msg-bot, .msg-user{
  max-width: 75%;
  padding:10px 14px;
  margin: 8px 0;
  border-radius: 14px;
  line-height: 1.44em;
  font-size: 14px;
  animation: fadeIn .3s ease;
}

.msg-bot{
  background:#1b1e25;
  border-left:3px solid #4da3ff;
  color:#eaeaea;
}

.msg-user{
  background:#4da3ff;
  color:#000;
  margin-left:auto;
}

/* RODAPÉ */
#chat-footer{
  display:flex;
  padding:8px;
  background:#0c0d10;
}

#chat-input{
  flex:1;
  padding:10px;
  border-radius:8px;
  background:#181b22;
  border:1px solid #2a2f3a;
  color:white;
}

#chat-send{
  background:#4da3ff;
  border:none;
  padding:0 18px;
  margin-left:6px;
  border-radius:8px;
  cursor:pointer;
}

@keyframes fadeIn{
  from{opacity:0;transform:translateY(4px);}
  to{opacity:1;transform:translateY(0);}
}


.opt{
  background:#0A7CFF;
  display:inline-block;
  margin:6px;
  padding:8px 14px;
  border-radius:18px;
  color:#fff;
  cursor:pointer;
  transition:.2s;
}
.opt:hover{
  background:#0057c2;
  transform:scale(1.05);
}

@media (max-width: 600px) {
  #chat-toggle {
    bottom: env(safe-area-inset-bottom, 0px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 90px);
  }

  #chatbox{
      bottom: 162px;
  }
}






/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: #0A7CFF;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3399ff);
}



.button-saibamais{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
}






/* ====================== */
/* MOBILE IMPROVEMENTS   */
/* ====================== */
@media (max-width: 600px) {

  body {
    padding: 0;
    overflow-x: hidden;
  }

  header {
    padding: 12px 6%;
  }

  nav a {
    font-size: 0.85rem;
    margin-left: 14px;
  }

  .hero {
    padding: 80px 6%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-hero,
  .btn-hero-glass {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .services.images-version {
    padding: 20px 8%;
    grid-template-columns: 1fr; /* single column */
  }

  .vant-item {
    padding: 22px;
  }

  .vant-linha {
    gap: 30px;
  }

  .carousel-wrapper {
    padding: 20px 5%;
  }

  .project-card {
    min-width: 260px;
  }

  .about {
    padding: 40px 5%;
    text-align: center;
    flex-direction: column;
  }

  footer {
    font-size: 0.8rem;
    padding: 25px 5%;
  }
}

@media (max-width: 600px) {
  .hero::before,
  .hero::after,
  .hero .light-orange {
    filter: blur(100px);
    width: 260px;
    height: 260px;
    opacity: 0.18;
  }
}

@media (max-width: 768px) {
  .destaque-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .dest-slide {
    scroll-snap-align: center;
  }

  .dest-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .sobre-texto,
  .vant-texto {
    text-align: center;
  }

  .sobre-lista li,
  .vant-texto ul li {
    text-align: center;
  }
}









/* ================================
   🔵 OPÇÃO A — Futurista Neon / Raios
   ================================ */
.deco_sessao_a {
  position: relative;
  overflow: hidden;
}

/* Linha principal (igual sua imagem, neon azul) */
.deco_sessao_a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 420px;
  height: 6px;
  background: #4da3ff;
  border-radius: 4px;
  transform: rotate(-26deg);
  filter: drop-shadow(0 0 10px #4da3ff);
  opacity: 0.8;
}

/* Segunda linha mais fina e suave */
.deco_sessao_a::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -120px;
  width: 380px;
  height: 2px;
  background: rgba(77, 163, 255, 0.35);
  transform: rotate(-26deg);
  filter: drop-shadow(0 0 6px rgba(77,163,255,0.4));
}


/* =============================================
   ⚡ VARIAÇÃO A2 — Trio de Raios Diagonais
   ============================================= */
.deco_sessao_a2 {
  position: relative;
  overflow: hidden;
}

/* Raio 1 — forte, topo da seção */
.deco_sessao_a2::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -130px;
  width: 480px;
  height: 6px;
  background: #4da3ff;
  border-radius: 4px;
  transform: rotate(-26deg);
  filter: drop-shadow(0 0 12px #4da3ff);
  opacity: 0.9;
}

/* Raio 2 — médio, passando pelo meio */
.deco_sessao_a2::after {
  content: "";
  position: absolute;
  top: 45%;
  left: -160px;
  width: 520px;
  height: 4px;
  background: rgba(77,163,255,0.75);
  border-radius: 4px;
  transform: rotate(-24deg);
  filter: drop-shadow(0 0 10px rgba(77,163,255,0.6));
}

/* Raio 3 — fino, perto do rodapé */
.deco_sessao_a2 .raio-bottom {
  position: absolute;
  bottom: 30px;
  left: -150px;
  width: 460px;
  height: 2px;
  background: rgba(77,163,255,0.35);
  transform: rotate(-30deg);
  filter: drop-shadow(0 0 6px rgba(77,163,255,0.4));
}

.deco_sessao_a2::before,
.deco_sessao_a2::after,
.deco_sessao_a2 .raio-bottom {
  z-index: 0;
}




/* =============================================
   ⚡ VARIAÇÃO A3 — Burst Neon (Invertido)
   ============================================= */
.deco_sessao_a3 {
  position: relative;
  overflow: hidden;
}

/* Feixe principal — agora na direita */
.deco_sessao_a3::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -180px; /* invertido */
  width: 600px;
  height: 7px;
  background: #4da3ff;
  transform: rotate(22deg); /* invertido */
  filter: drop-shadow(0 0 16px #4da3ff);
  opacity: 0.85;
}

/* Feixe secundário */
.deco_sessao_a3::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -160px; /* invertido */
  width: 480px;
  height: 2px;
  background: rgba(77,163,255,0.45);
  transform: rotate(22deg); /* invertido */
  filter: drop-shadow(0 0 8px rgba(77,163,255,0.5));
}

/* Feixes alinhados verticalmente */
.deco_sessao_a3 .ray {
  position: absolute;
  right: -200px; /* invertido */
  width: 540px;
  height: 3px;
  background: rgba(77,163,255,0.6);
  transform: rotate(22deg); /* invertido */
  filter: drop-shadow(0 0 12px rgba(77,163,255,0.5));
}

.deco_sessao_a3 .ray.r1 { top: 25%; }
.deco_sessao_a3 .ray.r2 { top: 55%; }
.deco_sessao_a3 .ray.r3 { top: 80%; opacity: 0.4; }





/* =============================================
   ⚡ VARIAÇÃO A4 — Full Section Rays
   ============================================= */
.deco_sessao_a4 {
  position: relative;
  overflow: hidden;
}

/* Lista de raios (gerados 100% em CSS) */
.deco_sessao_a4 .r {
  position: absolute;
  left: -200px;
  width: 520px;
  height: 3px;
  background: linear-gradient(to right, #4da3ff, rgba(77,163,255,0.05));
  transform: rotate(-26deg);
  border-radius: 4px;
  filter: drop-shadow(0 0 10px rgba(77,163,255,0.7));
}

/* Intensidade e tamanhos alternados */
.deco_sessao_a4 .r:nth-child(1) { top: 5%; height: 6px; opacity: 0.9; }
.deco_sessao_a4 .r:nth-child(2) { top: 20%; height: 3px; opacity: 0.6; }
.deco_sessao_a4 .r:nth-child(3) { top: 40%; height: 4px; opacity: 0.8; }
.deco_sessao_a4 .r:nth-child(4) { top: 60%; height: 2px; opacity: 0.35; }
.deco_sessao_a4 .r:nth-child(5) { top: 75%; height: 5px; opacity: 0.5; }
.deco_sessao_a4 .r:nth-child(6) { top: 92%; height: 3px; opacity: 0.7; }














/* ==================================
   🟧 OPÇÃO D — Grid / Circuito Digital
   ================================== */
.deco_sessao_b {
  position: relative;
  overflow: hidden;
}

/* Linhas horizontais/verticais discretas */
.deco_sessao_b .circuito {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(#4da3ff 1px, transparent 1px),
    linear-gradient(90deg, #4da3ff 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, black 70%, transparent);
}

/* Destaques técnicos no canto */
.deco_sessao_b .circuito::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 2px;
  background: #4da3ff;
  top: 80px;
  right: 60px;
  box-shadow: 0 0 10px #4da3ff;
  opacity: 0.7;
  transform: rotate(12deg);
}



/* ==============================
   APARIÇÃO SUAVE AO ROLAR A PÁGINA
   ============================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
