

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --main-color: #00eeff;
    --text-color: #ffffff;
    --bg-color-01: #1f242d;
    --bg-color-02: #323946;
    --color-00: #0000001a;

    /* Extra */
    --color-01: #999999;
    --color-02: #009539;
    --color-03: #7950f2;
    --color-04: #c00000;
    --color-05: #232323;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}


html {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
}

body {
    background-color: #000000; /* Preto quase total */
    color: #ffffff; /* Texto branco */
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 10px 0;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 6px 5%;
  }
  header {
    transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease;
  }
  

.nav a {
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: 0.4s;

    border: solid 1px var(--bg-color-02);
}

.nav a:hover {
    color: var(--main-color);
}

section {
    min-height: 100vh;
    padding: 6rem 6rem 2rem;;

    border: solid 1px var(--bg-color-02);
}

span {
    color: var(--main-color);
}

.home, .about {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.home-img {
    height: auto;
    margin-left: 200px;
    position: relative;
    right: 85px; /* Move 50px para a esquerda */
      
    
}

.about {
        background-color: #121212; /* Preto quase total */
        color: #ffffff; /* Texto branco */
    }
    

    .home-content .intro-text {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--color-01);
        margin-bottom: 0.5rem;
        animation: fadeInDown 1s ease;
      }
      
      .home-content .main-name {
        font-size: 2.6rem;
        font-weight: 900;
        color: var(--main-color);
        text-shadow: 0 0 10px var(--main-color);
        animation: glowName 1.5s ease-in-out infinite alternate;
      }
      
      @keyframes glowName {
        0% { text-shadow: 0 0 6px var(--main-color); }
        100% { text-shadow: 0 0 14px var(--main-color); }
      }
      
      .home-content .role-title {
        font-size: 1.2rem;
        font-weight: 500;
        margin-top: 0.5rem;
        color: var(--text-color);
      }
      
      .home-content .role-title .and {
        color: var(--main-color);
        font-weight: 700;
      }
      

.services h2,
.portifolio h2,
.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.services-container .services-box {
    padding: 2rem 1rem 2.5rem;
    border-radius: 1.2rem;
    text-align: center;
    border: solid 0.15rem var(--text-color);
    background-color: var(--bg-color-01);
    transition: 0.5s ease;
}

.services-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 25rem;
    margin-bottom: 1rem;
}

.services-container .services-box:hover {
    border-color: var(--main-color);
    transform: scale(1.01);


} 

.services-box i {
    font-size: 4.4rem;
    color: var(--main-color);
}

.services-box h3 {
    font-size: 1.5rem;
}

.services-box p {
    margin: 0.5rem;
    letter-spacing: 0.1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.portifolio-container {
    display: grid;
    gap: 1.2rem;
}

.portifolio-box {
    position: relative;
    border-radius: 0.6rem;
    box-shadow: 0 0 0.6rem var(--bg-color-01);
    overflow: hidden; 
    display: flex;
}

.portifolio-box img {
    width: 100%;
    transition: 0.5 ease;
}

.portifolio-box img:hover {
    transform: scale(1.1);
}

.portifolio-box .portifolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--main-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(30rem);
    transition: 0.5s ease;
}

.portifolio-box:hover .portifolio-layer {
    transform: translateY(0);
}

.portifolio-layer h4 {
    font-size: 1.8rem;
}

.portifolio-layer p {
    margin: 0.2rem 0 0.5rem;
}

.portifolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    background: var(--text-color);
    border-radius: 50%;

}

.portifolio-layer a i {
    font-size: 1.2rem;
    color: var(--bg-color-02);
}

form {
    max-width: 45rem;
    margin: 0.6rem auto;
    text-align: center;
    margin-bottom: 2rem;

}

form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

form .input-box input,
form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-color-01);
    border-radius: 0.5rem;
    margin: 0.4rem 0;
}

form textarea {
    resize: none;
}

.footer {
    background-color: #121212;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer p {
    font-size: 14px;
    color: var(--color-01);
    margin: 5px 0;
  }
  
  .footer a {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #ffffff;
  }
  
.social-media {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}


.social-media img {
    width: 3.5rem;
}

.social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: solid 0.15rem var(--main-color);
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--main-color);
  transition: 0.4s ease;
}

.social-media a:hover {
    background-color: var(--bg-color-01);
    color: var(--bg-color-01);
    box-shadow: var(--bg-color-01);
}


.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: var(--color-04);
    border-radius: 2rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.1rem;
    transition: 0.3s ease;
    margin-top: 1.2rem;
}

.btn:hover {
    box-shadow: 0 0 0.3rem var(--main-color);
    background-color: inherit;
    color: var(--main-color);
    cursor: pointer;
}


.menu-hamburguer {
    display: none;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 2rem;
    height: 0.3rem;
    background-color: var(--text-color);
    margin: 0.4rem 0;
    transition: 0.3s ease;

}

.change .bar1 {
    transform: translate(0, 0.65rem) rotate(-45deg);
}

.change .bar2 {
   opacity: 0;
}

.change .bar3 {
    transform: translate(0, -0.65rem) rotate(45deg);
}



@media (min-width: 0px) {
    .menu-hamburguer {
        display: block;
    }

    .nav {
        display: none;
    
    }

    .nav-responsive a {
        display: block;
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    section {
        padding: 6rem 2.5rem;

    }

    .home, .about {
        flex-direction: column;
        gap: 1.2rem;
    }

    .home-img, .about-img {
        width: 80%;
        max-width: 80%;
    }

    .home-content .about-content {
        width: 100%;
    }

    .home-content div {
        text-align: center;
    }

    .home-content h1, .about-content h1 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
    }


    .services-container {
        flex-direction: column;
        align-items: center
    }

     .services-box {
        width: 100%;
     }


     header {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
}


@media (min-width: 576px) {
    .home-img, .about-img {
        width: 65%;
        max-width: 65%;
    }

    .services-box {
        width: 70%;
    }


    header {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
}


@media (min-width: 768px) {
    .menu-hamburguer {
        display: none;
    }

    .nav {
        display: block;
    }

    .nav-resposive, .nav-responsive a {
        display: none;
    }

    .home, .about {
        flex-direction: row;
        justify-content: space-evenly
    }

    .home-img, .about-img {
        max-width: 35%;
    }

    .home-content, .about-content {
        width: 50%;
    }

    .services-box {
        width: 60%;
        margin-bottom: 2rem;
    }

    .portifolio-container {
        grid-template-columns: auto auto;
    }

    form .input-box input {
        width: 49%;
    }

    header {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
}

@media (min-width: 992px) {
    .home-img, .about-img {
        max-width: 35%;
    }

    .services-container {
        flex-direction: row;
        gap: 1.2rem;
    }


    header {
        background-color:var(--bg-color-02) ;
    }
}


@media (min-width: 1200px) {
    .home-img, .about-img {
        max-width: 25%;
    }

    .home-content h1 {
        font-size: 2.7rem;
    }

    .home-content h2 {
        font-size: 2rem;
    }

    .portifolio-container {
        grid-template-columns: auto auto auto;
    }


    header {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
}
/* Para animar elementos ao entrar na tela */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo para input com erro */
.input-error {
    border: 2px solid red;
}

/* === Loader e feedback no botão === */
#submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    font-size: 1rem;
  }
  
  #submit-btn .btn-loader {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--text-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  #submit-btn.loading .btn-text {
    visibility: hidden;
  }
  
  #submit-btn.loading .btn-loader {
    display: inline-block;
  }
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.15; /* ajuste para mais escuro ou mais claro */
  }
  
  section.home {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .contact {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .background-video-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.1; /* ajuste conforme contraste desejado */
  }
  .services {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .background-video-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2; /* ajuste conforme o contraste que quiser */
  }
  .about {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .background-video-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.05; /* pode ajustar para mais ou menos contraste */
  }
  .portifolio {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .background-video-portifolio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
  }
  section {
    padding: 80px 5% !important; /* espaçamento interno */
    margin-bottom: 60px;         /* espaçamento externo entre seções */
    position: relative;
  }
  .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: translate(0);
  }
.btn-top-center {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  color: var(--main-color);
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  border: 2px solid var(--main-color);
  box-shadow: 0 0 10px rgba(0, 238, 255, 0.15);
}

.btn-top-center:hover {
  transform: translateX(-50%) scale(1.05);
  background-color: var(--main-color);
  color: var(--bg-color-01);
}

.btn-top-center.show {
  opacity: 1;
  pointer-events: auto;
}

.ebook-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
    flex-direction: column;
  }
  
  
  .background-video-ebook {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.15;
  }
  
  .ebook-content {
    position: relative;
    z-index: 2;
    color: var(--text-color);
  }
  
  .ebook-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .ebook-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
  }
  .ebook-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 238, 255, 0.1);
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulseBadge 2s infinite;
    box-shadow: 0 0 10px rgba(0, 238, 255, 0.15);
  }
  
  .ebook-badge i {
    font-size: 1.2rem;
  }
  
  @keyframes pulseBadge {
    0% {
      box-shadow: 0 0 10px rgba(0, 238, 255, 0.2);
    }
    50% {
      box-shadow: 0 0 20px rgba(0, 238, 255, 0.5);
    }
    100% {
      box-shadow: 0 0 10px rgba(0, 238, 255, 0.2);
    }
  }
  .floating-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--main-color);
    color: var(--bg-color-01);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 238, 255, 0.3);
    z-index: 3;
    animation: floatGlow 2s ease-in-out infinite alternate;
    animation: blinkBadge 0.8s infinite;
  }
  
  @keyframes floatGlow {
    0% {
      transform: translateY(0px);
      box-shadow: 0 0 10px rgba(0, 238, 255, 0.4);
    }
    100% {
      transform: translateY(-6px);
      box-shadow: 0 0 15px rgba(0, 238, 255, 0.6);
    }
  }
  .ebook-downloads {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
    background: rgba(0, 238, 255, 0.05);
    border: 1px solid var(--main-color);
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    display: inline-block;
    animation: pulseBlink 0.8s ease-in-out infinite;
    text-align: center;
  }
  @keyframes pulseBlink {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.07);
      opacity: 0.4;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  
  
  @keyframes blinkBadge {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.4;
    }
  }
  @keyframes popIn {
    0% {
      transform: scale(0.9);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .ebook-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
  }
  .about-contact h4 {
    font-size: 1rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .ebook-banner {
    max-width: 20%;
    margin-bottom: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 0 12px rgba(0, 238, 255, 0.2);
  }
  
  .about-card-img {
    width: 100%;
    max-width: 480px;
    margin-top: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(0, 238, 255, 0.2);
  }
  .gh-neon-img {
    width: 320px;
    max-width: 90%;
    height: auto;
    border-radius: 1rem;
    filter: drop-shadow(0 0 18px var(--main-color));
    box-shadow: 0 0 25px rgba(0, 238, 255, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatNeon 2s ease-in-out infinite;
  }
  
  .gh-neon-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0, 238, 255, 0.6);
  }
  @keyframes floatNeon {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-16px); /* antes era -6px */
    }
  }

.ebook-testimonials {
  padding: 60px 5%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
}

.ebook-testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eeff;
  text-shadow: 0 0 8px #00eeff, 0 0 16px #00eeff;
  animation: pulse-glow 2s infinite alternate;
  margin-bottom: 2rem;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 8px #00eeff, 0 0 16px #00eeff;
  }
  100% {
    text-shadow: 0 0 14px #00eeff, 0 0 28px #00eeff;
  }
}

.notification-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
}

.notification {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--main-color);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  box-shadow: 0 0 12px rgba(0, 238, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: slideNotification 0.6s ease forwards;
}

.notification-icon {
  font-size: 1.3rem;
  color: var(--main-color);
}

.notification-message {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.notification small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-01);
  margin-top: 0.2rem;
}

.notification:nth-child(1) { animation-delay: 0.3s; }
.notification:nth-child(2) { animation-delay: 0.9s; }
.notification:nth-child(3) { animation-delay: 1.5s; }
.notification:nth-child(4) { animation-delay: 2.1s; }
.notification:nth-child(5) { animation-delay: 2.7s; }

@keyframes slideNotification {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vibrate {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-1px) rotate(-1deg); }
  50% { transform: translateY(1px) rotate(1deg); }
  75% { transform: translateY(-1px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.notification:hover {
  animation: vibrate 0.3s linear infinite;
  background-color: rgba(0, 238, 255, 0.1);
  border: 1px solid #00eeff;
}
.background-video-testimonials {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18; /* valor levemente maior */
  filter: brightness(0.7); /* de 0.4 → para 0.5 */
  pointer-events: none;
}


/* Conteúdo da seção acima do vídeo */
.ebook-testimonials *:not(video) {
  position: relative;
  z-index: 2;
}
.site-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.site-logo img.neon-logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 5px var(--main-color));
  animation: glowLogo 2s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

.site-logo img.neon-logo:hover {
  transform: scale(1.1);
}

@keyframes glowLogo {
  0% {
    filter: drop-shadow(0 0 5px var(--main-color));
  }
  100% {
    filter: drop-shadow(0 0 15px var(--main-color));
  }
}

.openai-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  box-sizing: border-box;
  z-index: 1;
}

.background-video-openai {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.openai-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
  animation: fadeIn 2s ease forwards;
}

.openai-content i {
  font-size: 3.5rem;
  color: #00eeff;
  margin-bottom: 1rem;
  animation: pulseOpenAI 2s infinite ease-in-out;
}

.openai-content h2 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #00eeff, #66f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #00eeff;
  margin-bottom: 1rem;
  animation: neonPulse 2s infinite alternate;
}

.openai-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ddd;
}

.btn-openai {
  background-color: transparent;
  border: 2px solid #00eeff;
  color: #00eeff;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  margin: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-openai:hover {
  background-color: #00eeff;
  color: black;
  box-shadow: 0 0 15px #00eeff;
}

@keyframes pulseOpenAI {
  0%, 100% { text-shadow: 0 0 10px #00eeff; }
  50% { text-shadow: 0 0 20px #00eeff; }
}

@keyframes neonPulse {
  from { text-shadow: 0 0 10px #00eeff; }
  to { text-shadow: 0 0 20px #00eeff; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== ROADMAP SECTION ==== */
.roadmap-section {
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
  text-align: center;
  z-index: 1;
}

.background-video-roadmap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.2);
}

.roadmap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.roadmap-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.roadmap-badge {
  display: inline-block;
  background-color: rgba(0, 238, 255, 0.1);
  color: #00eeff;
  border: 1px solid #00eeff;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 10px #00eeff55; }
  50% { box-shadow: 0 0 20px #00eeff; }
}

.roadmap-title {
  position: relative;
  z-index: 2;
  color: #00eeff;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00eeff;
  animation: pulseTitle 2.5s infinite alternate;
}

@keyframes pulseTitle {
  from { text-shadow: 0 0 10px #00eeff; }
  to { text-shadow: 0 0 20px #00eeff, 0 0 40px #00eeff; }
}

.roadmap-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.roadmap-step {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #00eeff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 15px #00eeff60;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #00eeffcc;
}

.step-icon {
  font-size: 2.5rem;
  color: #00eeff;
  margin-bottom: 10px;
  display: block;
}

.step-number {
  display: inline-block;
  background: #00eeff;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.roadmap-step h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.roadmap-step p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.4;
}

/* 🔽 BOTÕES */
.roadmap-access-container {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.btn-roadmap-acesso,
.btn-roadmap-notify {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #00eeff;
}

.btn-roadmap-acesso {
  background-color: transparent;
  color: #00eeff;
  box-shadow: 0 0 12px #00eeff44, 0 0 20px #00eeff33;
  animation: neonPulseBtn 2s infinite alternate;
}

.btn-roadmap-acesso:hover {
  background-color: #00eeff;
  color: #000;
  box-shadow: 0 0 25px #00eeffcc, 0 0 45px #00eeff99;
}

.btn-roadmap-notify {
  background-color: rgba(0, 238, 255, 0.1);
  color: #00eeff;
  box-shadow: 0 0 10px #00eeff22;
}

.btn-roadmap-notify:hover {
  background-color: #00eeff;
  color: #000;
  box-shadow: 0 0 15px #00eeff99;
}

/* 💡 Animação suave para botões */
@keyframes neonPulseBtn {
  from {
    box-shadow: 0 0 10px #00eeff44, 0 0 20px #00eeff22;
  }
  to {
    box-shadow: 0 0 25px #00eeffcc, 0 0 50px #00eeff66;
  }
}

/* ========== PALETA CONSISTENTE COM ghdev.tec.br ========== */
:root{
  --cyan:#00eeff;
  --purple:#8a2bff;
  --bg-dark:#0b0b0b;
  --bg-darker:#131313;
  --glass-bg:rgba(255,255,255,.02);
  --glass-brd:rgba(0,238,255,.18);
  --txt:#f1f1f1;
  --txt-muted:#b9b9b9;
}

/* ========== WRAPPER & FUNDO DINÂMICO ========== */
.consultoria-wrapper{
  position:relative;
  padding:6rem 1rem;
  background:linear-gradient(145deg,var(--bg-dark),var(--bg-darker));
  overflow:hidden;
}
.consultoria-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 30%,rgba(0,238,255,.20) 0 12%,transparent 55%),
    radial-gradient(circle at 80% 75%,rgba(138,43,255,.15) 0 12%,transparent 60%);
  filter:blur(70px);
  animation:bgShift 18s linear infinite alternate;
  z-index:-1;
}
@keyframes bgShift{to{transform:translate(70px,-50px);}}

/* ========== CARD VIDRO FOSCO ========== */
.consultoria-card{
  max-width:860px;
  margin:0 auto;
  padding:3rem 2.4rem;
  text-align:center;
  backdrop-filter:blur(32px) saturate(150%);
  background:var(--glass-bg);
  border:1px solid var(--glass-brd);
  border-radius:1.8rem;
  position:relative;
  box-shadow:0 0 18px rgba(0,238,255,.08);
}
/* linhas discretas internas */
.consultoria-card::before{
  content:"";
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(90deg,transparent 0 59px,rgba(255,255,255,.025) 60px 61px),
    repeating-linear-gradient(0deg,transparent 0 59px,rgba(255,255,255,.025) 60px 61px);
  pointer-events:none;
  border-radius:inherit;
  mix-blend-mode:screen;
}

/* ========== TÍTULO ========== */
.consultoria-title{
  font-family:'Poppins',sans-serif;
  font-size:clamp(2.6rem,4.7vw,3.2rem);
  font-weight:700;
  background:linear-gradient(90deg,var(--cyan),var(--cyan) 60%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 14px rgba(0,238,255,.55);
  margin-bottom:1.4rem;
}

/* ========== FRASE-CHAVE ========== */
.consultoria-lead{
  font-size:1.15rem;
  line-height:1.6;
  color:var(--txt-muted);
  margin:0 auto 2rem;
  max-width:680px;
}
.consultoria-lead span{
  color:var(--cyan);
  font-weight:600;
  text-shadow:0 0 10px rgba(0,238,255,.55);
}

/* ========== LISTA DE BENEFÍCIOS ========== */
.consultoria-features{
  list-style:none;
  padding:0;
  margin:0 0 2.6rem;
  display:flex;
  flex-direction:column;
  gap:.9rem;
}
.consultoria-features li{
  color:var(--txt);
  font-size:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
}
.consultoria-features i{
  font-size:1.25rem;
  color:var(--cyan);
  filter:drop-shadow(0 0 4px rgba(0,238,255,.85));
}

/* ========== BOTÃO CTA ========== */
.consultoria-btn{
  position:relative;
  display:inline-block;
  padding:1rem 2.8rem;
  font-weight:700;
  letter-spacing:.3px;
  color:var(--cyan);
  border:2px solid var(--cyan);
  border-radius:50px;
  overflow:hidden;
  transition:transform .22s,background .22s,color .22s;
  background:transparent;
}
.consultoria-btn::before,
.consultoria-btn::after{
  content:"";
  position:absolute;inset:0;
  border-radius:inherit;
  box-shadow:0 0 12px rgba(0,238,255,.7),
             0 0 24px rgba(0,238,255,.45);
  opacity:.9;
  animation:pulse 2.6s ease-in-out infinite;
  z-index:-1;
}
.consultoria-btn::after{filter:blur(7px);}
@keyframes pulse{50%{opacity:.25;}}
.consultoria-btn:hover{
  transform:scale(1.07);
  background:rgba(0, 238, 255, 0.1);
  color: var(--cyan);
}

/* ========== RESPONSIVO ========== */
@media(max-width:600px){
  .consultoria-card{padding:2.3rem 1.6rem;}
  .consultoria-lead{font-size:1.05rem;}
  .consultoria-features li{font-size:.95rem;}
}




.background-video-consultoria-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.2);
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin-top: 38px;
  margin-left: 50px;
}

.main-title.neon {
  font-family: 'Orbitron', monospace;
  font-size: 2.6rem;
  color: #25ffe0;
  text-shadow: 0 0 24px #25ffe0, 0 0 70px #25ffe0bb;
  margin-bottom: 22px;
  letter-spacing: 2.2px;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.18rem;
  color: #e6fcf7;
  line-height: 1.6;
  font-family: 'Fira Mono', monospace;
  margin-bottom: 24px;
}

.hero-desc .muted {
  color: #0ff9;
  font-size: 1rem;
  display: block;
  margin-top: 10px;
}

.cta-github {
  margin-top: 18px;
  margin-bottom: 22px;
  text-align: left;
}
.btn-github {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #16161a;
  color: #25ffe0;
  font-weight: bold;
  border: 2px solid #25ffe0;
  border-radius: 12px;
  font-size: 1.1rem;
  padding: 12px 28px;
  box-shadow: 0 0 18px #25ffe099;
  text-decoration: none;
  transition: background 0.15s, color 0.12s, box-shadow 0.15s;
}
.btn-github:hover {
  background: #25ffe0;
  color: #16161a;
  box-shadow: 0 0 36px #25ffe0cc;
}

.social-media {
  margin-top: 17px;
  display: flex;
  gap: 18px;
}
.social-media a {
  color: #25ffe0;
  font-size: 2.1rem;
  transition: color 0.13s, text-shadow 0.12s;
}
.social-media a:hover {
  color: #fff;
  text-shadow: 0 0 8px #25ffe0, 0 0 22px #16161a;
}

.gh-neon-img {
  width: 270px;
  max-width: 95vw;
  border-radius: 23px;
  box-shadow: 0 0 32px #25ffe099;
  border: 3px solid #0ff9;
  margin-top: 34px;
  z-index: 1;
  background: #191c28;
}

/* Responsivo */
@media (max-width: 900px) {
  .home-content {
    margin-left: 0;
    margin-top: 30px;
    max-width: 97vw;
  }
  .main-title.neon { font-size: 2.1rem; }
  .gh-neon-img { width: 180px; margin-top: 28px; }
}
@media (max-width: 600px) {
  .main-title.neon { font-size: 1.37rem; }
  .hero-desc { font-size: 1rem; }
  .gh-neon-img { width: 110px; }
  .btn-github { padding: 10px 18px; font-size: 0.97rem;}
}


:root {
  --green: #00ffcc;
  --green-alpha: #00ffcc88;
  --green-bg: rgba(0, 255, 204, 0.07);
  --red: #ff0055;
  --font-main: 'Courier New', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: #000;
  font-family: var(--font-main);
  color: var(--green);
  overflow-x: hidden;
}

#hacker-globe {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #000;
  overflow: hidden;
  font-family: var(--font-main);
  color: var(--green);
}

/* --- GLOBE CANVAS --- */
#globeViz {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* --- SCANNER RING --- */
#scanner-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px solid var(--green-alpha);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 5s linear infinite;
  z-index: 2;
  pointer-events: none;
}

/* --- HUD CENTRAL --- */
.hud {
  position: absolute;
  z-index: 3;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  width: 420px;
  max-width: 90vw;
  background: var(--green-bg);
  padding: 18px 28px;
  border: 1px solid var(--green-alpha);
  border-radius: 16px;
  box-shadow: 0 0 24px #00ffcc33;
  text-align: center;
  text-shadow: 0 0 10px var(--green);
  backdrop-filter: blur(4px);
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.hud h1,
.hud-users {
  font-size: 2.2em;
  margin: 0 0 8px 0;
  font-weight: bold;
  color: #00ffaa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visitors-container {
  font-weight: bold;
  font-size: 1.3em;
  text-align: center;
}

.users-label {
  font-size: 0.8em;
  margin-top: 4px;
  letter-spacing: 2px;
}

.hud p {
  font-size: 1em;
  margin: 4px 0;
  opacity: 0.95;
}

/* --- SEGURANÇA --- */
.secure {
  font-size: 0.95em;
  color: var(--red);
  text-shadow: 0 0 8px #ff0055cc;
  animation: blink 1s step-start infinite;
}

/* --- TIMESTAMP --- */
.timestamp {
  position: absolute;
  top: 22px;
  left: 38px;
  font-size: 1.07em;
  color: #00ffaa;
  text-shadow: 0 0 8px #00ffaa;
  z-index: 3;
}

/* --- MINI PAINEL LATERAL --- */
.panel-mini {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 320px;
  max-width: 90vw;
  height: 160px;
  background: var(--green-bg);
  border: 1px solid #00ffcc44;
  box-shadow: 0 0 18px #00ffcc33;
  padding: 12px 14px;
  font-size: 0.88em;
  color: var(--green);
  text-shadow: 0 0 3px #00ffcc99;
  backdrop-filter: blur(2px);
  border-radius: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.panel-mini canvas {
  width: 100%;
  height: 80px;
  margin-top: 10px;
}

/* --- SITE INFO BOX --- */
.panel-site-info {
  position: absolute;
  bottom: 24px;
  right: 26px;
  font-size: 0.83em;
  color: var(--green);
  background: rgba(0,255,204,0.04);
  padding: 8px 15px;
  border: 1px solid #00ffcc33;
  border-radius: 8px;
  box-shadow: 0 0 12px #00ffcc22;
  text-shadow: 0 0 5px #00ffcc88;
  font-family: var(--font-main);
  z-index: 3;
  pointer-events: none;
  text-align: left;
}

/* --- ANIMAÇÕES --- */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg);}
  100% { transform: translate(-50%, -50%) rotate(360deg);}
}

@keyframes blink {
  50% { opacity: 0; }
}

/* --- EFEITO GRID SUTIL --- */
#hacker-globe::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,255,204,0.09),
    rgba(0,255,204,0.05) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 99;
  opacity: 0.08;
}

/* --- RESPONSIVO MOBILE --- */
@media (max-width: 600px) {
  #scanner-ring {
    width: 100px;
    height: 100px;
    border-width: 1px;
  }
  .hud {
    top: 24px;
    left: 50%;
    min-width: 0;
    width: 96vw;
    max-width: 98vw;
    padding: 11px 6vw;
    font-size: 0.97em;
  }
  .hud h1,
  .hud-users {
    font-size: 1.2em;
  }
  .panel-mini {
    top: unset;
    bottom: 120px;
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 94vw;
    min-width: 0;
    max-width: 96vw;
    height: 90px;
    padding: 7px 5vw;
    font-size: 0.8em;
    border-radius: 10px;
  }
  .panel-mini canvas {
    height: 42px;
  }
  .panel-site-info {
    left: 50%;
    right: unset;
    bottom: 20px;
    transform: translateX(-50%);
    width: 92vw;
    font-size: 0.7em;
    padding: 5px 6vw;
    border-radius: 8px;
    box-shadow: 0 0 6px #00ffcc11;
    text-align: center;
  }
  .timestamp {
    left: 18px;
    font-size: 0.95em;
  }
}

/* --- FINAL CLEANUP --- */
@media (max-width: 360px) {
  .hud,
  .panel-mini,
  .panel-site-info {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}


