* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0f1a;
  --panel: #000;
  
  --card-radius: 14px;
  --cable: #2f3440;
  --glow1: #5ee7ff;
  --glow2: #8b5cff;
  --energy-speed: 3.8s;
 
  --accent-1: #7af0ff;
  --accent-2: #c9b1ff;
  --accent-3: #575454fa;
}













body {

  background: url(./img/capateste3.png) no-repeat center fixed;
  background-size: cover;
  min-height: 100vh;
  transition: padding-left 0.3s;
  font-family: "Inter", sans-serif;


}


@media (max-width: 768px) {
  body {
    background: url(./img/capateste3.png) no-repeat center center;
    background-size: cover; 
    background-attachment: scroll; 
    height: 100vh;
  }
}










::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}


html {
  scrollbar-width: none;
}

body {
  overflow: -moz-scrollbars-none;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
  height: 120px;
}

header h1 {
  font-size: 1.6rem;
  color: #f0b400;
}

header button {
  background: #f0b400;
  color: #000;
  padding: 10px 11px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  font-size: 15px;
}

header button:hover {
  background: #ffc300;
}

.logo {
  width: 230px;
  height: 190px;


}






.botoes-inferiores {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
 
  margin-top: 0px;
  padding: 10px 0px;

}


.botoes-inferiores button {
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 10px;
  padding: 6px;
  
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
 
  height: 45px;
 
}

.botoes-inferiores button:hover {
  background: #ffc300;
  transform: scale(1.05);
}


.botoes-inferiores a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}


.botoes-inferiores img {
  width: 25px;
  
  height: 25px;
  object-fit: contain;
}






@media (max-width: 768px) {

  
  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    
    box-sizing: border-box;
  }


  header {
    position: static;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    height: auto;
    gap: 10px;
    box-sizing: border-box;
  }

  .logo {
    width: 150px;
    height: auto;
    margin: 0;
  }

  header h1 {
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
  }


  .botoes-inferiores {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
  }

  .botoes-inferiores button {
    width: 45px;
    height: 40px;
    padding: 4px;
  }

  .botoes-inferiores img {
    width: 18px;
    height: 18px;
  }

   header button {
    font-size: 18px;
    padding: 6px 8px;
    width: 180px;
    height: 58px;
  }


  main,
  section,
  footer,
  .container {
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  
  img,
  video {
    max-width: 100%;
    height: auto;
    display: block;
  }


  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  button {
    cursor: pointer;
  }
}






header h1 {
  margin: 0;
  font-size: 20px;
  color: #d6f7ff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.caixa-placa {
  display: flex;
  justify-content: center;
  margin: 20px auto 41px auto;
  width: 230px;
  height: auto;
}

.placa {
  display: block;
  width: 700px;
}

.titulo {
  display: block;
  margin: 0px auto 0 auto;
  text-align: center;
  margin-top: 170px;
  color: #f7f6f600;
  border-color: #1d1d1c00;
  font-size: 50px;
  filter: drop-shadow(0 0 15px rgb(13, 13, 14));
  width: 1200px;
  border-radius: 70px;
}






@media (max-width: 768px) {
  .placa {
    width: 60%;
    max-width: 120px;
  }
}




.spark-line {
  stroke: #7af0ff;
  stroke-width: 1.2;
  opacity: 0;
  filter: drop-shadow(0 0 6px #7af0ff);
  transform-origin: center;
  animation: spark-flick 0.25s ease-out infinite;
}

@keyframes spark-flick {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }

  20% {
    opacity: 1;
    transform: scale(1) rotate(20deg);
  }

  40% {
    opacity: 0.8;
    transform: scale(1.2) rotate(-20deg);
  }

  60% {
    opacity: 1;
    transform: scale(1.4) rotate(10deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
}


.electric-ray {
  stroke: #aabaff;
  stroke-width: 1.3;
  opacity: 0;
  filter: drop-shadow(0 0 8px #aaf7ff);
  animation: ray-flash 0.25s ease-out forwards;
}

@keyframes ray-flash {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  10% {
    opacity: 1;
    stroke-width: 1.8;
  }

  50% {
    opacity: 1;
    stroke-width: 1;
  }

  100% {
    opacity: 0;
    stroke-width: 0.5;
    transform: scale(1.4);
  }
}




.wrap {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: -50px auto 0px;
  padding: 100px;
  border-radius: 16px;
}


.cable-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  
}


.central-line {
  stroke: var(--accent-3);
  stroke-width: 12;
  stroke-linecap: round;
  fill: none;
  filter: drop-shadow(0 0 15px rgba(8, 8, 8, 0.479));
}

.central-glow {
  stroke: url(#gradEnergy);
  stroke-width: 12;
  stroke-linecap: round;
  fill: none;
  opacity: 0.6;
  filter: blur(px);
}


.cable {
  stroke: var(--cable);
  stroke-width: 10;
  stroke-linecap: round;
  fill: none;
}


.energy {
  stroke: url(#gradEnergy);
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 20 32;
  animation: moveEnergy var(--speed, var(--energy-speed)) linear infinite;
  animation-play-state: paused;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(94, 231, 255, 0.75));
}

.energy-glow {
  stroke: url(#gradEnergy);
  stroke-width: 8;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 6 10;
  animation: moveEnergy var(--speed, var(--energy-speed)) linear infinite;
  animation-play-state: paused;
  opacity: 0;
  filter: blur(6px);
}


.energy.connected,
.energy-glow.connected {
  animation-play-state: running;
  opacity: 1;
}


@keyframes connectAnim {
  from {
    stroke-dashoffset: -1200;
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.energy.connecting,
.energy-glow.connecting {
  animation: connectAnim 2s ease forwards;
}

@keyframes moveEnergy {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -1000;
  }
}


.cards {
  position: relative;
  display: block;
  padding: 20px 0px;
  width: 100%;
}

.card {
  font-size: 30px;
  width: 39%;
  min-height: 260px;
  max-height: auto;
  background: var(--panel);
  margin: 150px 60px;

  border-radius: var(--card-radius);
  padding: 50px 22px;
  color: #0c0c0c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  transition: background 1.5s ease, box-shadow 1.5s ease, transform 1.5s ease;
  overflow: hidden;
}


.card.left {
  margin-left: 0;
  margin-right: auto;
}

.card.right {
  margin-left: auto;
  margin-right: 0;
}


.connector {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #111;
  border: 2px solid #1f2630;
  flex: 0 0 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  position: relative;
}


.card-content {
  flex: 1;
  padding: 6px 4px;
}

.card h3 {
  margin: 4px 0 8px 0;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.card p {
  margin: 0 0 5px 0;
  color: #171718;
  font-size: 16px;
  line-height: 1.4;
}


.icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-weight: 700;
  flex: 0 0 64px;
  box-shadow: inset 0 -6px 14px rgba(255, 255, 255, 0.02);
  transition: transform .28s ease, box-shadow .28s ease, background-color .35s ease;
}

.icon svg {
  width: 36px;
  height: 36px;
  fill: #0b0b0b;
  transition: all 0.45s ease;
  filter: none;
}


.icon.on {
  background: linear-gradient(180deg, rgb(19, 17, 17), rgb(12, 12, 12));
  box-shadow: 0 6px 30px rgb(0, 0, 0), 0 0 24px rgba(0, 0, 0, 0.15) inset;
}

.icon.on svg {
  fill: var(--color, #7af0ff);
  filter: drop-shadow(0 0 8px var(--color, #7af0ff)) drop-shadow(0 0 20px var(--color, #7af0ff));
  animation: neonPulse 1.4s infinite alternate;
}

@keyframes neonPulse {
  from {
    filter: drop-shadow(0 0 6px var(--color)) drop-shadow(0 0 12px var(--color));
    opacity: 0.9;
    transform: scale(0.98);
  }

  to {
    filter: drop-shadow(0 0 16px var(--color)) drop-shadow(0 0 40px var(--color));
    opacity: 1;
    transform: scale(1.06);
  }
}


.card.on {
  background: #f0b400;
  
  box-shadow: 0 0 40px var(--card-glow-color, #00ffff);
  transform: scale(1.05);
}

.card.on:hover {
  background: #ecb91f;
  box-shadow: 0 0 40px var(--card-glow-color, #00ffff);
  
}






.card.on .card-content {
  opacity: 1;
  animation: tvOn 1.5s ease;
}

.card-content {
  opacity: 0.0;
}

@keyframes tvOn {
  0% {
    opacity: 0;
    transform: scaleY(0.98) skewY(-0.2deg);
    filter: brightness(.6);
  }

  60% {
    opacity: 0;
    transform: scaleY(1.01) skewY(.0deg);
    filter: brightness(1.05);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}


.card[data-color="#00ff88"] {
  --card-glow-color: rgba(0, 255, 136, 0.18);
}

.card[data-color="#ffcc33"] {
  --card-glow-color: rgba(255, 204, 51, 0.14);
}

.card[data-color="#33b3ff"] {
  --card-glow-color: rgba(51, 179, 255, 0.12);
}

.card[data-color="#00ffaa"] {
  --card-glow-color: rgba(0, 255, 170, 0.12);
}

.card[data-color="#33ffff"] {
  --card-glow-color: rgba(51, 255, 255, 0.12);
}

.card[data-color="#ffd700"] {
  --card-glow-color: rgba(255, 215, 0, 0.14);
}


.card:hover {
  transform: translateY(-6px);
}


.connector.on {
  background: linear-gradient(180deg, #f8f9fa, #0a2430);
  border-color: rgba(122, 239, 255, 0.671);
  box-shadow: 0 6px 20px rgba(122, 240, 255, 0.06);
}


@media (max-width:900px) {
  .card {
    width: 90%;
    min-height: 220px;
  }

  .card.left,
  .card.right {
    margin: 40px auto;
  }
}

@media (max-width:520px) {
  header img.logo {
    width: 64px;
    height: 64px
  }

  .card {
    min-height: 180px;
    padding: 14px
  }
}


@media (max-width: 480px) {

  header {
    flex-direction: column;
    text-align: center;
    padding: 10px 10px;
    gap: 10px;
  }

  header img.logo {
    width: 180px;
    height: 140px;
  }

  header h1 {
    font-size: 16px;
  }

  .titulo {
    font-size: 22px;
    width: 90%;
    margin-top: 80px;
  }

  .caixa-placa {
    width: 90%;
  }

  .placa {
    width: 100%;
  }

  .wrap {
    padding: 40px 10px;
  }

  .cards {
    padding: 10px 0;
  }

  .card {
    width: 100%;
    margin: 60px 0;
    padding: 20px 16px;
    font-size: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card.left,
  .card.right {
    margin-left: auto;
    margin-right: auto;
  }

  .connector {
    display: none;
  }

  .icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }

  .icon svg {
    width: 28px;
    height: 28px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 13px;
  }

  
  .cable-svg {
    display: none;
  }
}


@media (min-width: 481px) and (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header img.logo {
    width: 80px;
    height: 80px;
  }

  header h1 {
    font-size: 18px;
  }

  .titulo {
    width: 90%;
    font-size: 30px;
    margin-top: 100px;
  }

  .caixa-placa {
    width: 80%;
  }

  .placa {
    width: 100%;
  }

  .wrap {
    padding: 60px 20px;
  }

  .card {
    width: 80%;
    margin: 100px auto;
    padding: 30px 20px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 14px;
  }

  .cable-svg {
    opacity: 0.4;
  }
}


@media (min-width: 769px) and (max-width: 1200px) {
  .titulo {
    font-size: 36px;
    width: 90%;
  }

  .caixa-placa {
    width: 70%;
  }

  .placa {
    width: 100%;
  }

  .card {
    width: 45%;
    margin: 120px auto;
  }

  .card h3 {
    font-size: 26px;
  }

  .card p {
    font-size: 15px;
  }
}


@media (min-width: 1600px) {
  .wrap {
    max-width: 1600px;
  }

  .titulo {
    font-size: 58px;
  }

  .card {
    width: 40%;
  }
}






.final {

  background-color: #22202034;

}


.hero {
  text-align: center;
  padding: 100px 20px 60px;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #f8f9fa;
}

.hero p {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #f8f9fa;
}




.metricas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.281);
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(240, 180, 0, 0.678);
  transform: translateY(-4px);
}

.metric-card h3 {
  font-size: 1rem;
  color: #030303;
  margin-bottom: 10px;
}

.metric-card .valor {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.metric-card p {
  font-size: 0.95rem;
  color: #20da1a;
  margin-bottom: 4px;
}









.galeria {
  padding: 60px 20px;
}

.galeria h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #f0b400;
  font-size: 40px;

}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.grid img,
.grid video {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s;
}

.grid img:hover,
.grid video:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(240, 180, 0, 0.678);
}



@media (max-width: 768px) {
  .grid {
    display: flex;
    
    flex-direction: row;
    
    flex-wrap: wrap;
    
    gap: 10px;
   
    justify-content: center;
    
  }

  .grid img,
  .grid video {
    width: 150px;

    height: auto;
  }

  .hero p {
    margin: 0 8vw; 
    text-align: justify; 
  }

.final .sobre p {
  margin: 0 8vw;
  text-align: justify;
  text-justify: inter-word; 
  word-spacing: normal; 
  hyphens: auto; 
}
 

}










.galeria-projetos {
  padding: 60px 0;
  overflow: hidden;
}

.galeria-projetos h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #f0b400;
  font-size: 40px;
}

.carrossel {
  width: 100%;
  overflow: hidden;
  position: relative;
  
}


.grid-projetos {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: rolar 55s linear infinite;
}


.grid-projetos::after {
  content: "";
  display: flex;
  gap: 25px;
  width: 100%;
  animation: none;
}


.grid-projetos img,
.grid-projetos video {
  flex: 0 0 auto;
  width: 350px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  transition: all 0.4s ease;
  cursor: pointer;
  background-color: #000;
}


.grid-projetos img:hover,
.grid-projetos video:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(240, 180, 0, 0.678);
}


.grid-projetos video:focus,
.grid-projetos video:active {
  transform: scale(1.2);
  z-index: 10;
  position: relative;
  box-shadow: 0 0 25px rgba(240, 180, 0, 0.8);
}


@keyframes rolar {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.carrossel:hover .grid-projetos {
  animation-play-state: paused;
}


@media (max-width: 768px) {

  .grid-projetos img,
  .grid-projetos video {
    width: 260px;
  }
}










.sobre {
  padding: 80px 20px;
  text-align: center;
}

.sobre h2 {
  color: #f0b400;
  margin-bottom: 20px;
  font-size: 40px;
}

.sobre p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #f8f9fa;
}


.cordao-valores {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
 
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}


.valor-card {
  background: rgba(255, 255, 255, 0.28);
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  height: 240px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(240, 180, 0, 0.678);

}

.valor-card h3 {
  color: #f0b400;
  margin-bottom: 10px;
}


@media (max-width: 900px) {
  .cordao-valores {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 10px;
    
    gap: 30px;
    justify-content: center;
  }

  .valor-card {
    width: 98%;
    
    max-width: 400px;
    
    text-align: center;
    margin: 10px 0;
   
    box-sizing: border-box;
  }
}






.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 20px;
  background: transparent; 
}

.form-section .form-solar {
  max-width: 650px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); 
  padding: 50px 60px;
  border-radius: 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  animation: slideUp 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}


@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-section .form-solar h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #f0b400;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(240, 180, 0, 0.4);
}

.form-section .form-solar p {
  text-align: center;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 25px;
}

.form-section .form-solar .simulacao {
  font-size: 1rem;
  color: #a6f0a6;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.form-section .form-solar label {
  font-size: 15px;
  opacity: 0.9;
  margin-top: 10px;
  display: block;
}
.form-section .form-solar input,
.form-section .form-solar select {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9); 
  color: #000; 
  font-size: 16px;
  width: 100%;
  margin-bottom: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.form-section .form-solar input::placeholder {
  color: #bbb;
}

.form-section .form-solar input:focus,
.form-section .form-solar select:focus {
  border-color: #f0b400;
  box-shadow: 0 0 10px rgba(240, 180, 0, 0.4);
}

.form-section .form-solar button {
  background: linear-gradient(90deg, #f0b400, #ffd84d);
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  margin-top: 10px;
}

.form-section .form-solar button:hover {
  background: linear-gradient(90deg, #ffd84d, #f0b400);
  transform: scale(1.04);
}


@media (max-width: 600px) {
  .form-section {
    padding: 40px 10px;
  }

  .form-section .form-solar {
    padding: 30px 25px;
    max-width: 95%;
  }

  .form-section .form-solar h2 {
    font-size: 1.4rem;
  }

  .form-section .form-solar p,
  .form-section .form-solar .simulacao {
    font-size: 0.9rem;
  }
}





#formModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow-y: auto;
}

.form-solar {
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
  backdrop-filter: blur(8px);
  font-family: 'Poppins', sans-serif;
  animation: slideUp 0.4s ease;


}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-solar h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #f0b400;
}

.form-solar p {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.form-solar .simulacao {
  font-size: 0.9rem;
  color: #9fe29f;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
  line-height: 1.5;
}

.form-solar label {
  font-size: 14px;
  opacity: 0.9;
}

.form-solar input,
.form-solar select {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.851);
  color: #040404;
  font-size: 15px;
}

.form-solar button {
  background: #f0b400;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-solar button:hover {
  background: #ffc300;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}


footer {
  background: #071726;
  color: #fff;
  font-family: "Inter", sans-serif;
  padding: 60px 8% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  height: 220px;
}
.footer-logo p {
    font-size: 12px;
    color: #d7e0e4;
    line-height: 1.7;
    flex: 1;
    max-width: 350px;
    margin: 0 10px;
    text-align: justify;
  text-justify: inter-word; 
  word-spacing: normal; 
  hyphens: auto; 
  }



.img-logo {

  width: 100px;
  height: auto;
  border-radius: 12px;
}


.footer-logo p {
  font-size: 16px;
  color: #cfd8dc;
  line-height: 1.7;
  margin: 0;
}


.footer-social {
  text-align: right;
}

.footer-social h4 {
  color: #f9d949;
  font-size: 18px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  justify-content: flex-end;
  margin-bottom: 15px;
}


.icons-footer {

  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s, filter 0.3s;

}




.social-icons img:hover {
  transform: scale(1.15);
  filter: brightness(0.8) sepia(1) hue-rotate(25deg) saturate(3);
}

.footer-contact {
  font-size: 15px;
  color: #b0bec5;
  line-height: 1.6;
}

.footer-contact a {
  color: #f9d949;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #12324a;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #90a4ae;
}




@media (max-width: 768px) {
  footer {
    background: #071726;
    color: #fff;
    width: 100%;
    max-width: 100%;
    padding: px 20px 20px;
    
    text-align: center;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 10px 10px;
  }

  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 0px 0px 0px 0px;
    height: 500px;
  }


  .footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 90%;
    text-align: left;
  }

  img-logo {
    width: 110px;
    height: auto;
    flex-shrink: 0;
  }






  .footer-logo p {
    font-size: 12px;
    color: #d7e0e4;
    line-height: 1.7;
    flex: 1;
    max-width: 350px;
    margin: 0 10px;
    text-align: justify;
  }

 
  .footer-social {
    text-align: center;
    width: 100%;
  }

  .footer-social h4 {
    color: #f9d949;
    font-size: 8px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .footer-contact {
    font-size: 15px;
    color: #cfd8dc;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .footer-contact a {
    color: #f9d949;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }


  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
  }

  .icons-footer {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .icons-footer:hover {
    transform: scale(1.1);
    filter: brightness(0.8) sepia(1) hue-rotate(25deg) saturate(3);
  }

 
  .footer-bottom {
    font-size: 13px;
    color: #90a4ae;
    border-top: 1px solid #12324a;
    margin-top: 30px;
    padding-top: 20px;
    width: 100%;
  }

  
  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }
}







#chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 50%;
  animation: neonGlow 2s infinite alternate;
  box-shadow: 0 0 10px #00f6ff, 0 0 20px #7b00ff, 0 0 30px #00f6ff, 0 0 40px #7b00ff, 0 0 50px #00f6ff;
}

@keyframes neonGlow {
  0% {
    box-shadow: 0 0 5px #00f6ff, 0 0 10px #7b00ff, 0 0 15px #00f6ff, 0 0 20px #7b00ff;
  }

  50% {
    box-shadow: 0 0 15px #00f6ff, 0 0 25px #7b00ff, 0 0 35px #00f6ff, 0 0 45px #7b00ff;
  }

  100% {
    box-shadow: 0 0 10px #00f6ff, 0 0 20px #7b00ff, 0 0 30px #00f6ff, 0 0 40px #7b00ff;
  }
}


#chat-icon::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.3) 0%, rgba(123, 0, 255, 0) 70%);
  animation: sparkle 3s infinite;
  z-index: -1;
}

@keyframes sparkle {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.8) rotate(360deg);
    opacity: 0.5;
  }
}


#chat-modal {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-width: 90%;
  height: 500px;
  background: #1c1c1c;
  border: 2px solid #00f6ff;
  border-radius: 15px;
  box-shadow: 0 0 20px #00f6ff;
  z-index: 9998;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

#chat-modal.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#chat-header {
  background: #7b00ff;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat-header span {
  cursor: pointer;
}

#chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.message {
  max-width: 70%;
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 12px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.4;
}

.user {
  align-self: flex-end;
  background: #00f6ff;
  color: #111;
}

.bot {
  align-self: flex-start;
  background: #7b00ff;
  color: #fff;
}






.message .name {
  font-weight: bold;
  margin-right: 4px;
}


.message .msg-text {
  opacity: 0.9;
}


.user .name {
  color: #650881;
  
}

.bot .name {
  color: #020202;
  
}



.typing {
  align-self: flex-start;
  background: #7b00ff;
  color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.dots {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 2px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.dots:nth-child(2) {
  animation-delay: 0.2s;
}

.dots:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

#chat-input {
  display: flex;
  border-top: 1px solid #00f6ff;
}

#chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}

#chat-input button {
  padding: 10px 15px;
  border: none;
  background: #00f6ff;
  color: #111;
  cursor: pointer;
  font-weight: bold;
}


#chat-tooltip {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #7b00ff9c;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 0 10px #00f6ff;
  animation: float 2s infinite alternate;
  transition: opacity 0.5s ease;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}




.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 99999;
  font-family: 'Poppins', sans-serif;
}

.cookie-banner .text {
  flex: 1;
  font-size: 14px;
}

.cookie-banner .actions {
  display: flex;
  gap: 8px;
}

.cookie-banner button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.cookie-banner .accept {
  background: #f39c12;
  color: #fff;
}

.cookie-banner .decline {
  background: #ecf0f1;
  color: #111;
}

.cookie-banner .settings {
  background: transparent;
  color: #f39c12;
  border: 1px solid #f39c12;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.45);
}

.cookie-modal .panel {
  background: #fff;
  width: min(900px, 95%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 12px;
  padding: 20px;
}

.cookie-modal h2 {
  margin-top: 0;
  color: #111;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cookie-category .desc {
  max-width: 76%;
  font-size: 13px;
  color: #555;
}

.cookie-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toggle input {
  width: 18px;
  height: 18px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 13px;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 8px;
  border: 1px solid #eee;
}

.small {
  font-size: 12px;
  color: #666;
}

.cookie-table th {
  background: #f7f7f7;
}




.inversores {
  position: relative;
  z-index: 10; 
}

.inversores .imginversor {
  transform: rotate(100deg); 
  position: absolute;
  top: 40px; 
  left: 50%;
  transform: translateX(-50%);
  width: 110px; 
  z-index: 10; 
  pointer-events: none; 
  
}


.imginversor2{

 position: absolute;
  top: 210px; 
  left: 49%;
  transform: translateX(-50%);
  width: 120px; 
  z-index: 10; 
  pointer-events: none; 


}



.imginversor3{


 position: absolute;
  top: 420px; 
  left: 50%;
  transform: translateX(-50%);
  width: 120px; 
  z-index: 10; 
  pointer-events: none; 


}



.imginversor4{

position: absolute;
  top: 810px; 
  left: 50%;
  transform: translateX(-50%);
 width: 120px;
  z-index: 10; 
  pointer-events: none; 



}





.imginversor5{

position: absolute;
  top: 1290px; 
  left: 50%;
  transform: translateX(-50%);
  width: 120px; 
  z-index: 10; 
  pointer-events: none; 



}



.imginversor6{

position: absolute;
  top: 1720px; 
  left: 50%;
  transform: translateX(-50%);
  width: 120px; 
  z-index: 10; 
  pointer-events: none; 



}



.imginversor7{

position: absolute;
  top: 2220px; 
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  z-index: 10; 
  pointer-events: none; 



}


@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
  }

  .cookie-banner .text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .cookie-banner .actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cookie-banner button {
    flex: 1;
    font-size: 13px;
    padding: 8px 10px;
  }

  .cookie-modal .panel {
    width: 95%;
    padding: 16px;
    max-height: 85vh;
    overflow-y: auto;
  }

  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cookie-category .desc {
    max-width: 100%;
    font-size: 12px;
  }

  .cookie-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-footer button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .cookie-table {
    font-size: 12px;
  }
}


@media (max-width: 480px) {
  .cookie-banner {
    font-size: 12px;
    gap: 8px;
    padding: 12px;
  }

  .cookie-banner button {
    padding: 6px 8px;
    font-size: 12px;
  }

  .cookie-modal .panel {
    width: 92%;
    padding: 14px;
  }

  .cookie-category .desc {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .inversores {
    display: none;
  }
}


