 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
   scroll-behavior: smooth;
 }

 body {
   background: #0b0f1a;
   color: #fff;
   overflow-x: hidden;
   display: flexbox;
 }

 header {
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 999;
   background: rgba(0, 0, 0, 0.85);
   backdrop-filter: blur(10px);
   padding: 15px 8%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 2px solid #ff7a00;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .logo-circle {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0d6efd, #ff7a00);
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 20px;
   font-weight: bold;
   color: white;
   box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
 }

 .logo h1 {
   font-size: 24px;
   color: #fff;
 }

 .logo span {
   color: #ff7a00;
 }

 nav ul {
   list-style: none;
   display: flex;
   gap: 25px;
 }

 nav a {
   text-decoration: none;
   color: white;
   font-weight: 500;
   transition: 0.3s;
   position: relative;
 }

 nav a::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 0;
   height: 2px;
   background: #ff7a00;
   transition: 0.3s;
 }

 nav a:hover::after {
   width: 100%;
 }

 nav a:hover {
   color: #ff7a00;
 }

 .banner {
   height: 100vh;
   background:
     linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
     url('https://images.unsplash.com/photo-1520869562399-e772f042f422?q=80&w=1600&auto=format&fit=crop');
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: center;
   padding: 0 8%;
 }

 .banner-content {
   max-width: 700px;
 }

 .banner h2 {
   font-size: 58px;
   line-height: 1.2;
   margin-bottom: 20px;
 }

 .banner h2 span {
   color: #ff7a00;
 }

 .banner p {
   font-size: 18px;
   color: #d7d7d7;
   margin-bottom: 35px;
 }

 .btn {
   display: inline-block;
   padding: 15px 35px;
   background: linear-gradient(135deg, #0d6efd, #ff7a00);
   color: white;
   text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
   transition: 0.3s;
   box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
 }

 .btn:hover {
   transform: translateY(-5px);
   box-shadow: 0 0 25px rgba(255, 122, 0, 0.5);
 }

 section {
   padding: 100px 8%;
 }

 .title {
   text-align: center;
   margin-bottom: 60px;
 }

 .title h2 {
   font-size: 40px;
   margin-bottom: 10px;
 }

 .title span {
   color: #ff7a00;
 }

 .services {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
 }

 .card {
   background: #131c2e;
   padding: 35px;
   border-radius: 20px;
   transition: 0.4s;
   border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .card:hover {
   transform: translateY(-10px);
   border-color: #ff7a00;
   box-shadow: 0 0 30px rgba(255, 122, 0, 0.2);
 }

 .card h3 {
   margin: 20px 0;
   color: #ff7a00;
 }

 .card p {
   color: #ccc;
   line-height: 1.7;
 }

 .icon {
   font-size: 45px;
 }

 .sobre {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 50px;
   align-items: center;
 }

 .sobre img {
   width: 100%;
   border-radius: 20px;
   box-shadow: 0 0 25px rgba(13, 110, 253, 0.3);
 }

 .sobre-text h3 {
   font-size: 35px;
   margin-bottom: 20px;
 }

 .sobre-text p {
   color: #ccc;
   line-height: 1.8;
   margin-bottom: 20px;
 }

 .contact-form {
   max-width: 700px;
   margin: auto;
   background: #131c2e;
   padding: 40px;
   border-radius: 20px;
   box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
 }

 .contact-form input,
 .contact-form textarea {
   width: 100%;
   padding: 15px;
   margin-bottom: 20px;
   border: none;
   border-radius: 10px;
   background: #0b1220;
   color: white;
   outline: none;
 }

 .contact-form button {
   width: 100%;
   padding: 15px;
   border: none;
   border-radius: 50px;
   background: linear-gradient(135deg, #0d6efd, #ff7a00);
   color: white;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: 0.3s;
 }

 .contact-form button:hover {
   transform: scale(1.03);
 }

 footer {
   background: #05070d;
   padding: 40px 8%;
   text-align: center;
   border-top: 2px solid #ff7a00;
 }

 footer h3 {
   margin-bottom: 15px;
   color: #ff7a00;
 }

 footer p {
   color: #aaa;
   margin: 5px 0;
 }

 .whatsapp {
   position: fixed;
   right: 20px;
   bottom: 20px;
   width: 65px;
   height: 65px;
   background: #25d366;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 30px;
   color: white;
   text-decoration: none;
   box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
   z-index: 999;
 }

 @media(max-width: 900px) {
   header {
     flex-direction: column;
     gap: 15px;
   }

   nav ul {
     flex-wrap: wrap;
     justify-content: center;
   }

   .banner h2 {
     font-size: 40px;
   }
 }

 .etiqueta {
   color: #ffffff;
 }

 .bodyia {
   background: #09090b;
   /* Cor de Fundo */
   color: #fafafa;
   /* cor do texto */
   padding: 90px 20px;
   display: flex;
   flex-direction: column;
   /* um debaixo do outro */
   align-items: center;
   /* alinhar ao centro */
 }

 h1 {
   font-size: 52px;
   /* Tamanho do texto */
   font-weight: 800;
   /* grossura da fonte*/
   color: #fafafa;
 }

 span {
   color: #a78bfa;
 }

 .subtitulo {
   color: #71717a;
   margin-top: 16px;
   font-size: 18px;
 }

 .caixa-entrada {
   width: 620px;
   background: #141419;
   border-radius: 16px;
   padding: 12px;
   margin-top: 30px;
   display: flex;
 }

 textarea {
   width: 80%;
   /* largura */
   resize: none;
   outline: none;
   background: transparent;
   padding: 8px;
   color: #fafafa;
   font-size: 15px;
   border: none;
 }

 button {
   width: 20%;
   padding: 10px 24px;
   color: #ffffff;
   background: #7c3aed;
   border: none;
   /* borda */
   border-radius: 10px;
   /* arredondar a bordar */
   cursor: pointer;
   /* trocar o cursor do mouse */
   font-weight: 600;
 }

 .caixa-resultado {
   width: 1400px;
   display: flex;
   padding: 24px;
   margin-top: 40px;
   background: #111114;
   border-radius: 12px;
   border: 1px solid #27272a;
   gap: 24px;
 }

 .bloco-codigo {
   width: 30%;
   background: #0c0c0f;
   padding: 20px;
   font-size: 12px;
   color: #22c55e;
   white-space: pre-wrap;
   /* quebrar linha */
   overflow: auto;
   /* scroll do mouse */
   height: 600px;
   border-radius: 12px;
   border: 1px solid #27272a;
   /* tamanho da borda / o tipo de borda / a cor da borda */
 }

 .bloco-site {
   width: 70%;
   height: 600px;
   border: 1px solid #27272a;
   border-radius: 12px;
   background-color: #1e1e1e;
 }
 /* CARROSSEL */

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* escurece a imagem */
.slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    top: 0;
    left: 0;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 600px;
}

.banner-content h2 {
    font-size: 55px;
}

.banner-content span {
    color: #ff6b00;
}

.banner-content p {
    margin: 20px 0;
    font-size: 18px;
}

.btn {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    transform: scale(1.05);
}