/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: radial-gradient(circle at top,black,black);
  color: rgb(90, 87, 87);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background:rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo img {
 width: 220px;
 
}

.logo-web{
  width: 350px;
  filter: drop-shadow(0 0 1px silver);
}

.logo span {
  color: rgb(192, 192, 192);
}


.log-ling{
  width: 150px;
   
}


/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color:silver;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: silver;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

}

.hero-content {
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero h2 {
  color: silver;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  filter: drop-shadow(0 0 3px rgb(131, 130, 130));
}

.hero h2 span {
  color:silver;
}

.hero h2 .iten{
  color: silver;
 filter: drop-shadow(0 0 10px silver);
}
.hero p {
  margin-top: 15px;
  font-size: 1.1rem;
  color:silver;
}

.btn-acao {
  margin-top: 25px;
  background: linear-gradient(silver, rgba(71, 71, 71, 0.836));
  color: black;
  border:none ;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px cyan;
  margin-bottom: 50px;
  
}

.btn-acao:hover {
  transform: scale(1.05);
}

/* ===== HERO BACKGROUND EFFECT ===== */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(78, 78, 78, 0.075), transparent 70%);
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer .social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  color:silver;
}

.footer .social i {
  cursor: pointer;
  transition: 0.3s;
}

.footer .social i:hover {
  color: silver;
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ===== SEÇÃO DE SERVIÇOS ===== */
.servicos-section {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at center, rgba(91, 91, 92, 0.103), transparent 80%);
}

.servicos-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: silver;
  filter: drop-shadow(0 0 3px rgb(107, 105, 105));
}

.servicos-section h2 span {
  color:silver;
  filter: drop-shadow(0 0 3px rgb(88, 88, 88));
}

.servicos-section .descricao {
  color:silver;
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px silver;
}

.card i {
  color: silver;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.card h3 {
  color: #969494;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  color: silver;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* ===== SEÇÃO DE PORTFÓLIO ===== */
section,
.portfolio,
.portfolio-header,
.portfolio-banner {
  background: transparent !important;
}


.portfolio-section {
  text-align: center;
  padding: 100px 20px;
}

.portfolio-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 2px rgb(136, 134, 134));
}

.portfolio-section h2 span {
  color: silver;
}

.portfolio-section .descricao {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

/* ===== GRID DE PROJETOS ===== */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 30px;
}

.projeto-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projeto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(201, 201, 201, 0.623);
}

.projeto-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: 0.4s;
}

.projeto-card:hover img {
  filter: brightness(1);
}

.projeto-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgb(29, 29, 29), transparent);
  padding: 20px;
  text-align: left;
  color: #fff;
  transition: 0.4s;
}

.projeto-info h3 {
  font-size: 1.2rem;
  color:silver;
}

.projeto-info p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 8px 0 15px;
}

.btn-ver {
  background: linear-gradient(90deg,silver, rgb(70, 68, 68));
  color: black;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  transition: 0.3s;
}

/* ===== SOBRE ===== */
.sobre-section {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at top, rgba(90, 89, 89, 0.103), transparent 80%);
}

.sobre-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px rgb(78, 77, 77));
}

.sobre-section h2 span {
  color: silver;
  filter: drop-shadow(0 0 3px rgb(107, 105, 105));
}

.sobre-section .descricao {
  color: #aca8a8;
  max-width: 750px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 0 30px;
  color: silver;
}

.valor-item {
  background: radial-gradient(circle at top, #242424 0%, #111 40%, #050505 100%);
  border-radius: 20px;
  border: 1px solid rgba(78, 78, 78, 0.692);
  padding: 30px 20px;
  transition: 0.3s ease;
}

.valor-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(110, 110, 110, 0.856);
}

.valor-item i {
  color:silver;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* ===== EQUIPE ===== */
.equipe-section {
  text-align: center;
  padding: 100px 20px;
}

.equipe-section h2 {
  font-size: 2.5rem;
}

.equipe-section h2 span {
  color: silver;
}

.equipe-section .descricao {
  color: #979494;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.equipe-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 40px;
}

.membro-card {
  background: radial-gradient(circle at top, #242424 0%, #111 40%, #050505 100%);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(88, 88, 88, 0.712);
}

.membro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(82, 81, 81, 0.993);
}

.membro-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid silver;
}

.membro-card h3 {
  color:silver;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.membro-card p {
  color: #afadadaf;
  font-size: 0.9rem;
}

section .sobre{
  text-align: center;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #5a595921;
  margin-bottom: 50px;
}
.sobre{
  width: 40%;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(100, 100, 100, 0.075);
  border-radius: 7%;
  object-fit: cover;
  box-shadow:0 0 15px #7c7c7cb9;
  transition: 0.3s ease;
  display: -ms-grid;
}
.sobre h1{
  color:silver;
  font-size: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.sobre p {
  color: #f1eded8c;
  font-size: 1.0rem;
  line-height: 1.6;
  padding: 15px ;
  text-align: center;
  justify-content: center;
  align-items: center;
}
/* ===== CONTATO ===== */
.contato-section {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at center, rgba(99, 98, 98, 0.11), transparent 80%);
}

.contato-section h2 {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 3px rgb(73, 72, 72));
}

.contato-section h2 span {
  color: silver;
  filter: drop-shadow(0 0 3px rgb(107, 105, 105));
}

.contato-section .descricao {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  line-height: 1.5;
}

.contato-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 30px;
}

/* ===== FORM ===== */
.contato-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 400px;
  text-align: left;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.05);
  transition: 0.3s;
}

.contato-form:hover {
  box-shadow: 0 0 20px rgba(0, 187, 212, 0);
}

.campo {
  margin-bottom: 20px;
}

.campo label {
  display: block;
  color:silver;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.campo input,
.campo textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.btn-enviar {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg,silver, rgb(75, 73, 73));
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
 transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffffff, silver);
}

/* ===== INFO ===== */
.contato-info {
  text-align: left;
  max-width: 300px;
}

.contato-info h3 {
  color: silver;
  margin-bottom: 15px;
}

.contato-info p {
  color: #ccc;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    align-items: center;
  }

  .contato-form,
  .contato-info {
    width: 100%;
    max-width: 400px;
  }
}
#agent-auto-msg {
  position: fixed;
  bottom: 120px; /* um pouco acima do agente */
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid #aaa;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: silver;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  z-index: 9999;
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação de saída */
.fadeOut {
  animation: fadeOut 0.7s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(15px); }
}

/* BOTÃO FLUTUANTE */
#codding-agent-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg,#0e0e0e,#1d1d1d);
  border-radius: 50%;
  box-shadow: 0 0 15px #6d6e6eaa, 0 0 30px #3e3f3f55;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 3s ease-in-out infinite;
  z-index: 9999;
}

#codding-agent-btn img {
  width: 45px;
  filter: drop-shadow(0 0 10px #848585);
}

/* Animação de flutuar */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* JANELA DO AGENTE */
#codding-agent-box {
  position: fixed;
  bottom: 110px;
  height: 450px;
  right: 25px;
  width: 350px;
  padding: 10;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid #56585855;
  box-shadow: 0 0 25px #51525266;
  border-radius: 15px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  font-family: 'Orbitron', sans-serif;
}

.agent-header {
  background: #4a4b4b22;
  padding: 15px;
  color: #e7e7e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-header span {
  cursor: pointer;
  font-size: 22px;
}

/* Respostas */
#agent-respostas {
  padding: 15px;
  height: 250px;
  overflow-y: auto;
  color: #cfcfcf;
  font-size: 14px;
}

/* Input */
#agent-input {
  padding: 12px;
  border: none;
  width: 100%;
  outline: none;
  background: #0e0e0e;
  color: #4c4e4e;
  font-family: inherit;
}

#agent-send {
  width: 100%;
  padding: 12px;
  background: #4a4b4b;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: black;
  letter-spacing: 1px;
}
#agent-quick-questions2 {
  padding: 15px;
  border-bottom: 1px solid #54555533;
  background: rgba(80, 81, 82, 0.3);
  animation: fadeIn 0.4s ease;
}

#agent-quick-questions2 h4 {
  color: #717374;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#agent-quick-questions2 table {
  width: 100%;
  border-collapse: collapse;
}

#agent-quick-questions2 td {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #cfcfcf;
  border-radius: 8px;
  transition: 0.2s;
  border: 1px solid transparent;
}

#agent-quick-questions2 td:hover {
  background: #66686822;
  border-color: #60626355;
  color: #797a7a;
}

/* animação para desaparecer */
@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: .2s;
}

.menu a:hover {
  color:silver;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(20,20,20,.9);
  min-width: 200px;
  border-radius: 10px;
  padding: 10px 0;
  border: 1px solid #57585844;
  box-shadow: 0 0 20px #4e4e4e44;
}

.dropdown-content a {
  display: block;
  padding: 8px 15px;
}

.dropdown-content a:hover {
  background: #4d4d4d22;
}

/* Mostrar ao passar o mouse */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Botão CTA */
.menu-cta {
  background: linear-gradient(135deg, silver,#363636);
  padding: 8px 18px;
  border-radius: 30px;
  color: #050505 !important;
  font-weight: bold;
  box-shadow: 0 0 10px cyan;
}
.hero-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.card-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 15px;
  width: 280px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: .3s;
}
.hero-title {
  font-size: 25px;
  font-weight: 700;
  color:silver;
  text-align: center;
}

.neon {
  color:silver;
  text-shadow: 0 0 10px silver;
}

.card-item:hover {
  transform: translateY(-5px);
  border-color:silver;
  box-shadow: 0 0 15px #63646433;
}
.metricas-inicio {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 40px;
  color: #ccc;
}

.metricas-inicio strong {
  color:silver;
  font-size: 28px;
  display: block;
}
.hero-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.card-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: .3s;
}

.card-item:hover {
  transform: translateY(-5px);
  border-color: #595c5c;
  box-shadow: 0 0 15px #56575733;
}

.tecs-section {
  padding: 80px 0;
  background: #000;
  color: #d9d9d9;
  text-align: center;
}

.section-title-tech {
  font-size: 32px;
  color: silver;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-sub-tech {
  color: #b5b5b5;
  font-size: 15px;
  margin-bottom: 35px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.tech-item {
  background: linear-gradient(145deg, #1a1a1a, #0c0c0c);
  border: 1px solid #5f5f5f;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  color: silver;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(180,180,180,0.2);
  transition: .3s;
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
  color: #fff;
}
.faq-section {
  padding: 80px 0;
  background: #000;
  color: silver;
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: silver;
  text-align: center;
  margin-bottom: 10px;
}

.faq-sub {
  color: #b5b5b5;
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-box details {
  background: linear-gradient(145deg, #1a1a1a, #0c0c0c);
  border: 1px solid #5f5f5f;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: .3s;
}

.faq-box summary {
  cursor: pointer;
  color: #d1d1d1;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

details[open] {
  border-color: silver;
  box-shadow: 0 0 15px rgba(200,200,200,0.3);
}

.faq-box p {
  margin-top: 10px;
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 5px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tech-icon {
  width: 36px;
 
}
details summary {
  position: relative;
  padding-right: 25px;
  transition: color .3s;
}

details summary::after {
  content: "➕";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  transition: .3s;
}

details[open] summary::after {
  transform: rotate(45deg);
  color: #fff;
}

details p {
  animation: faqOpen .3s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.why {
  background: #000;
  padding: 100px 0;
  text-align: center;
}
/* GRID ORGANIZADO */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
  padding: 0 20px;
}

/* CARD FUTURISTA */
.why-item {
  background: linear-gradient(145deg,#1a1a1a,#0b0b0b);
  border: 1px solid #5f5f5f;
  border-radius: 14px;
  padding: 65px 25px 25px;
  text-align: center;
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
  transition: 0.3s ease;
  position: relative;
}

/* Hover elegante */
.why-item:hover {
  transform: translateY(-6px);
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.22);
}

/* ÍCONES */
.icon {
  width: 38px;
  height: 38px;
  color: silver;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
  transition: .3s;
}

/* Hover nos ícones */
.why-item:hover .icon {
  color: white;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.9));
  transform: translateX(-50%) scale(1.15);
}

/* Título */
.why-item h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Texto */
.why-item p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.4;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 18px rgba(255,255,255,0.2); }
  100% { box-shadow: 0 0 10px rgba(255,255,255,0.1); }
}

.why-item:hover {
  animation: pulse 1.5s infinite;
}

.why-title {
  font-size: 32px;
  font-weight: 700;
  color: silver;
  text-align: center;
  margin-bottom: 40px;
}
/* Estado inicial: invisível */
.why-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Quando visível */
.why-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.why-item:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(255,255,255,0.35);
}

.tipos-section {
  padding: 80px 0;
  background: #000;
  color: silver;
  text-align: center;
}

.tipos-title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tipos-sub {
  font-size: 15px;
  color: #bfbfbf;
  margin-bottom: 40px;
}

.tipos-tabela {
  width: 95%;
  max-width: 970px;
  margin: auto;
  border: 1px solid #555;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(145deg,#1e1e1e,#0d0d0d);
  box-shadow: 0 0 18px rgba(255,255,255,0.1);
}

.t-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.t-row:last-child {
  border-bottom: none;
}

.t-row.header {
  background: linear-gradient(145deg,#2a2a2a,#161616);
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.preco {
  font-weight: bold;
  color: #fff;
}

.t-row:hover {
  background: rgba(255,255,255,0.05);
  transition: 0.2s;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .t-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .t-row.header {
    display: none;
  }

  .t-row div {
    padding: 5px 0;
  }

  .preco {
    margin-top: 10px;
    font-size: 18px;
  }
}
.comparativo-section {
  padding: 80px 0;
  background: #000;
  color: silver;
  text-align: center;
}

.comparativo-title {
  font-size: 34px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.comparativo-sub {
  color: #b5b5b5;
  margin-bottom: 40px;
}

.comparativo-grid {
  width: 95%;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #5f5f5f;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg,#1a1a1a,#0b0b0b);
}

/* Célula */
.item {
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.item-c{
  color: rgb(5, 230, 73);
}

.item-i{
  color: red;
}
.row-title {
  font-weight: bold;
  text-align: left;
}

.c-header {
  background: #1f1f1f;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.silver {
  color: #fff;
}

.destaque-silver {
  background: linear-gradient(145deg,#2c2c2c,#1a1a1a);
  color: #fff;
  font-weight: bold;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.2);
}

/* Responsivo */
@media(max-width: 768px) {
  .comparativo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .c-header:nth-child(1),
  .c-header:nth-child(2),
  .c-header:nth-child(3),
  .c-header:nth-child(4) {
    grid-column: span 2;
  }

  .row-title {
    text-align: center;
  }
}
#agent-whats {
  margin-top: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #25d366;
  background: #000;
  color: #25d366;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

#agent-whats:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 0 12px #25d366aa;
}

/* MÉTRICAS */
.portfolio-metricas {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.portfolio-metricas div {
  font-size: 14px;
  color: #cfcfcf;
}

.portfolio-metricas .numero {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

/* FILTROS */
.portfolio-filtros {
  text-align: center;
  margin-bottom: 35px;
}

.portfolio-filtros .filtro {
  background: rgba(255,255,255,0.05);
  border: 1px solid #666;
  color: silver;
  padding: 8px 16px;
  margin: 4px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.25s;
}

.portfolio-filtros .filtro:hover,
.portfolio-filtros .filtro.ativo {
  background: silver;
  color: #000;
  border-color: #fff;
}

/* GRID DE PROJETOS */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.projeto-item {
  background: linear-gradient(145deg,#1a1a1a,#0b0b0b);
  border-radius: 16px;
  border: 1px solid #555;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.projeto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 24px rgba(255,255,255,0.25);
  border-color: #fff;
}

.projeto-img img {
  width: 100%;
  display: block;
}

.projeto-info {
  padding: 16px 16px 18px;
  text-align: left;
}

.projeto-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  background: silver;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.projeto-info h3 {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 6px;
}

.projeto-info p {
  font-size: 13px;
  color: #c7c7c7;
  margin-bottom: 14px;
}
.verMais {
  margin-top: 10px;
  background: transparent;
  border-radius: 999px;
  border: 1px solid silver;
  color: silver;
  font-size: 13px;
  padding: 7px 14px;
  cursor: pointer;
  transition: 0.25s;
  display: inline-block;
}

.verMais:hover {
  background: silver;
  color: #000;
}

#modal-fechar {
  margin-top: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid silver;
  background: transparent;
  color: silver;
  cursor: pointer;
  font-size: 13px;
  transition: .25s;
}

#modal-fechar:hover {
  background: silver;
  color: #000;
}


/* MODAL */
.modal-portfolio {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #111;
  border-radius: 14px;
  border: 1px solid #666;
  padding: 24px;
  max-width: 600px;
  width: 90%;
  color: silver;
  box-shadow: 0 0 26px rgba(255,255,255,0.25);
  text-align: left;
  position: relative;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-top: 14px;
}

.close-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 22px;
  color: #ccc;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-metricas {
    gap: 20px;
  }
}
/* SEÇÃO */
.portfolio-section {
  padding: 80px 0;
  background: #000;
  color: silver;
}

.portfolio-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
}

.portfolio-title span { color: silver; }

.portfolio-sub {
  text-align: center;
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 35px;
}

/* FILTROS */
.portfolio-filtros {
  text-align: center;
  margin-bottom: 25px;
}

.filtro {
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid #666;
  background: #111;
  color: silver;
  margin: 4px;
  cursor: pointer;
  transition: .3s;
}

.filtro:hover,
.filtro.ativo {
  background: silver;
  color: #000;
  border-color: white;
}

.modal-content {
  background: #111;
  border-radius: 14px;
  border: 1px solid #666;
  padding: 24px;
  max-width: 600px;
  width: 90%;
  color: silver;
  box-shadow: 0 0 26px rgba(255,255,255,0.25);
  text-align: left;
  position: relative;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-top: 14px;
}

.close-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 22px;
  color: #ccc;
}

/* CARROSSEL MOBILE */
@media (max-width: 720px) {
  .portfolio-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .projeto-card {
    min-width: 80%;
    scroll-snap-align: center;
  }
}
/* ===== ANIMAÇÃO 3D PROFISSIONAL NOS CARDS ===== */
.projeto-card {
  background: #0b0b0b;
  border: 1px solid #444;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
}

.projeto-card:hover {
  transform: perspective(900px) rotateX(6deg) rotateY(-6deg) translateY(-12px);
  border-color: #fff;
  box-shadow: 
    0 22px 50px rgba(0,0,0,0.85),
    0 0 30px rgba(255,255,255,0.28);
}

/* Suaviza a imagem também */
.projeto-card img {
  transition: transform .35s ease, filter .35s ease;
}

.projeto-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Suavização do conteúdo interno */
.projeto-card .projeto-info {
  transition: transform .35s ease, opacity .35s ease;
}

.projeto-card:hover .projeto-info {
  transform: translateZ(35px);
  opacity: 1;
}
/* ===== FUNDO DA SEÇÃO ===== */
.servicos-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.servicos-bg {
  position: absolute;
  inset: 0;
  background: url("img/codigo.jpg") center/cover no-repeat;
  opacity: 0.50;
  filter: blur(0px);
  z-index: -1;
}

/* ===== TITULOS ===== */
.titulo-servicos {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}

.titulo-servicos span {
  color: silver;
}

.subtitulo-servicos {
  text-align: center;
  color: #cfcfcf;
  margin-bottom: 50px;
  font-size: 16px;
}

/* ===== GRID ===== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 40px;
}

.servico-card {
  padding: 30px;
  border-radius: 16px;
  background: rgba(20,20,20,0.75);
  border: 1px solid #444;
  backdrop-filter: blur(4px);
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 0 8px rgba(255,255,255,0.08);
}

/* HOVER 3D */
.servico-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.123);
  border-color: #fff;
}

/* Ícones */
.servico-card i {
  width: 40px;
  height: 40px;
  color: silver;
  margin-bottom: 12px;
}

/* Texto */
.servico-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 14px;
  color: #d0d0d0;
}

/* ===== REVEAL EFFECT ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media(max-width: 900px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

.servicos-b{
  position: absolute;
  inset: 0;
  background: url("img/fundo-magic.png") center/cover no-repeat;
  opacity: 0.20;
  filter: blur(0px);
  z-index: -1;
}

.computer{
filter: drop-shadow(0 0 3px silver);
}

/* ===== SOBRE A CODDING ===== */


.sobre-codding {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111 0%, #000 55%, #000 100%);
  color: #e4e4e4;
}

.sobre-container {
  max-width: 1150px;
  margin: 0 auto;
}

/* HERO */
.sobre-hero {
  text-align: center;
  margin-bottom: 50px;
}

.sobre-badge {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.4);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 12px;
}

.sobre-hero h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.sobre-hero h1 span {
  color: silver;
}

.sobre-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  color: #c9c9c9;
}

/* GRID O QUE FAZEMOS */
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 45px;
}

.sobre-card {
  background: radial-gradient(circle at top, #262626 0%, #151515 40%, #0b0b0b 100%);
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sobre-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

.sobre-card p {
  font-size: 13px;
  color: #cdcdcd;
}

.sobre-card:hover {
  transform: translateY(-6px);
  border-color: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
}

/* TECNOLOGIAS */
.sobre-tech {
  text-align: center;
  margin-bottom: 50px;
}

.sobre-tech h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.sobre-tech p {
  font-size: 14px;
  color: #c7c7c7;
  max-width: 700px;
  margin: 0 auto 18px;
}

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tech-chips span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.5);
  background: rgba(255, 255, 255, 0.02);
}

/* PROCESSO */
.sobre-processo {
  margin-bottom: 60px;
}

.sobre-processo h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 26px;
}

.processo-linha {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.processo-etapa {
  background: radial-gradient(circle at top, #242424 0%, #111 40%, #050505 100%);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(160, 160, 160, 0.7);
  position: relative;
  overflow: hidden;
}

.etapa-numero {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 26px;
  font-weight: 700;
  color: rgba(192, 192, 192, 0.16);
}

.processo-etapa h5 {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ffffff;
}

.processo-etapa p {
  font-size: 13px;
  color: #d2d2d2;
}

/* CTA FINAL */
.sobre-cta {
  text-align: center;
  margin-top: 20px;
  padding: 28px 18px 10px;
  border-radius: 20px;
  border: 1px solid rgba(192, 192, 192, 0.7);
  background: radial-gradient(circle at top, #1c1c1c 0%, #060606 55%, #020202 100%);
}

.sobre-cta h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.sobre-cta p {
  font-size: 14px;
  color: #cfcfcf;
  max-width: 650px;
  margin: 0 auto 16px;
}

.btn-sobre-cta {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid silver;
  color: #000;
  background: linear-gradient(135deg, silver, #ffffff);
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-sobre-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffffff, silver);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 992px) {
  .sobre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sobre-mvv {
    grid-template-columns: 1fr;
  }

  .processo-linha {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sobre-hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .sobre-codding {
    padding: 60px 16px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .processo-linha {
    grid-template-columns: 1fr;
  }

  .sobre-hero h1 {
    font-size: 26px;
  }

  .sobre-hero p,
  .sobre-tech p,
  .sobre-cta p {
    font-size: 13px;
  }
}

.hero-scroll {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}
/* CONTAINER PRINCIPAL */
.sobre-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}


.sobre-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid silver;
    border-radius: 18px;
    padding: 40px;
    max-width: 900px;
    margin: 60px auto;
    color: #e6e6e6;
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.25);
}

.sobre-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: silver;
    margin-bottom: 20px;
}

.sobre-desc {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sobre-bloco {
    margin-bottom: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid silver;
    border-radius: 10px;
}

.sobre-bloco h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

.sobre-bloco p, 
.sobre-bloco ul {
    font-size: 15px;
    color: #d2d2d2;
    line-height: 1.6;
    margin: 0;
}

.sobre-bloco ul {
    padding-left: 18px;
}

.sobre-bloco li {
    margin-bottom: 6px;
}

/* Responsivo */
@media (max-width: 600px) {
    .sobre-card {
        padding: 20px;
    }

    .sobre-title {
        font-size: 26px;
    }
}
.carousel {
  width: 90%;
  max-width: 450px;   /* ajuste profissional no desktop */
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  margin: 25px auto;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.233);
}

/* Faixa do carrossel */
.carousel-track {
  display: flex;
  width: 100%;
  animation: slide 40s linear infinite;
}

/* Imagens */
.carousel-img {
  width: 80%;
  flex-shrink: 0;
  object-fit: cover;
  height: 260px; /* altura ideal para mobile */
  filter: brightness(0.95);
  border-radius: 14px;
}

/* Responsivo para celulares menores */
@media (max-width: 480px) {
  .carousel {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px auto;
  }

  .carousel-img {
    height: 200px; /* reduz altura para celular */
  }
}

@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* fica atrás do conteúdo */
  pointer-events: none; /* não atrapalha cliques */
}

/* TELA COMPLETA */
#ultra-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 9999999999;
  opacity: 1;
  animation: loaderFadeOut 2.6s ease forwards;
  animation-delay: 2.4s;
}

/* LOGO CENTRAL */
#intro-logo {
  width: 130px;
  opacity: 0;
  position: relative;
  z-index: 5;
  animation: logoAssemble 2s ease forwards;
}

/* ANIMAÇÃO DO LOGO */
@keyframes logoAssemble {
  0% { opacity:0; transform: scale(0.4) rotateX(40deg); filter: blur(10px); }
  40% { opacity:1; transform: scale(1.1) rotateX(0deg); filter: blur(0px); }
  100% { opacity:1; transform: scale(1); }
}

/* GLOW DESLIGADO AO FUNDO */
.loader-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4), transparent);
  border-radius: 50%;
  opacity: 0;
  animation: glowUp 2s ease forwards;
}

@keyframes glowUp {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 0.8; transform: scale(1.2); }
}

/* LINHA NEON QUE ATRAVESSA A TELA */
.intro-line {
  position: absolute;
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, #71898d, #434e5a, #385b61);
  filter: drop-shadow(0 0 12px #26484e);
  animation: neonSwipe 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes neonSwipe {
  0% { transform: translateX(-120vw) rotate(25deg); }
  100% { transform: translateX(120vw) rotate(25deg); }
}

/* SAÍDA SUAVE */
@keyframes loaderFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* PARTÍCULAS */
#particles-loader {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(77, 78, 78, 0.4), transparent),
    radial-gradient(circle at 80% 50%, rgba(74, 74, 75, 0.3), transparent),
    radial-gradient(circle at 50% 80%, rgba(76, 76, 77, 0.25), transparent);
  opacity: 0.2;
  filter: blur(18px);
  animation: particlesMove 5s infinite ease-in-out alternate;
}

@keyframes particlesMove {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-20px) translateX(20px); }
}


/* MANIFESTO */
.manifesto {
  font-style: italic;
}


.carrossel-container {
  width: 1000px;           /* Pequeno como você pediu */
  height: 200px;
  margin: 40px auto;      /* Centralizado */
  overflow: hidden;
  position: relative;
}

.carrossel {
  display: flex;
  gap: 30px;
  width: 200%;
  height:200%;
  animation: slide 20s infinite linear;
}

.carrossel img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: 0.3s;
   border-radius: 15px;

}

.carrossel img:hover {
  filter: brightness(1);
  transform: scale(1.04);
}

@keyframes slide {
  0%   { transform: translateX(0); }
  33%  { transform: translateX(-350px); }
  66%  { transform: translateX(-700px); }
  100% { transform: translateX(0); }
}

.card-enterprise {
  width: 80%;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  background: linear-gradient(135deg, #3534348e, #05060abd 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 25px rgba(0,0,0,.7);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.card-enterprise:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 3px rgba(169, 170, 170, 0.35) ;
}

.card-enterprise-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  color: #d7dde8;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-enterprise-content p {
  color: #a5acb9;
  font-size: 13px;
  max-width: 350px;
  line-height: 1.5;
}

.btn-enterprise {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #aaaaaa, #3c3d3d);
  color: #020308;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s;
  box-shadow: 0 0 10px rgba(201, 202, 202, 0.55);
}

.btn-enterprise:hover {
  transform: scale(1.05);
}

.card-enterprise-icon {
  font-size: 42px;
  color: #27c5ff;
  opacity: .28;
  margin-right: 10px;
}

/* Mobile */
@media (max-width: 700px) {
  .card-enterprise {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .card-enterprise-icon {
    margin: 10px 0 0 0;
  }
}
@keyframes glowPulse {
  0% { opacity: .4; }
  50% { opacity: .9; }
  100% { opacity: .4; }
}


.ultra-icon {
  font-size: 48px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #979797;
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.589);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.reviews-section {
    margin-top: 50px;
    text-align: center;
}

.reviews-title {
    font-family: "Orbitron";
    font-size: 26px;
    letter-spacing: 2px;
    color: silver;
    text-shadow: 0 0 10px silver;
    margin-bottom: 25px;
}

/* Carrossel */
.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.reviews-carousel::-webkit-scrollbar {
    height: 6px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: silver;
    border-radius: 20px;
}

/* Card do comentário */
.review-card {
    min-width: 290px;
    max-width: 290px;
    background: rgba(140, 141, 141, 0.07);
    border: 1px solid silver;
    padding: 20px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    color: #cdefff;
    box-shadow: 0 0 12px #636f7044;
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solidrgb(136, 226, 226) ;
}

.review-name {
    font-weight: bold;
    font-size: 15px;
}

.review-stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.4;
    color: #e8f7ff;
}

/* Responsivo */
@media (max-width: 480px) {
    .review-card {
        min-width: 260px;
        max-width: 260px;
    }
}
.review-form-section {
    margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
}

.review-form-title {
    font-family: "Orbitron";
    font-size: 24px;
    letter-spacing: 2px;
    color: silver;
    margin-bottom: 20px;
    text-shadow: 0 0 10px silver;
}

.review-form {
    max-width: 450px;
    margin: 0 auto;
    background: rgba(135, 138, 138, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid silver;
    box-shadow: 0 0 14px #898b8b33;
    backdrop-filter: blur(8px);
}

.review-form input,
.review-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid #535657;
    color: #e8e9e9;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: rgb(150, 150, 150);
}

/* Estrelas */
.stars-select {
    font-size: 30px;
    margin: 10px 0 15px;
    color: #555;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.stars-select span {
    transition: 0.2s;
}

.stars-select span.active {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700aa;
}

/* Botão enviar */
.review-form button {
    width: 100%;
    background: silver;
    color: #00141a;
    font-weight: bold;
    font-size: 15px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

.review-form button:hover {
    background: #59d3ee;
}

/* Mensagem de retorno */
.feedback-msg {
    margin-top: 12px;
    font-size: 14px;
    color: #00ffb3;
}
.review-inicial {
    width: 48px;
    height: 48px;
    background: rgb(7, 194, 219);
    color: #00141a;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
}

/* Botão excluir padrão: escondido */
.delete-review-btn {
    display: none;
    margin-top: 12px;
    background: #ff4e4e;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* Só aparece para admin */
.admin-mode .delete-review-btn {
    display: inline-block;
}
