* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        body {
            background: #f5f5f5;
            color: #333;
        }

        /* ===================== HEADER  ====================== */
        header {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        header h1 {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 600;
        }

        header nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            font-size: 1rem;
        }

        /* ===================== BANNER ====================== */
        .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;

    /* ======== AQUI ESTÁ A IMAGEM DO BANNER ======== */
    background-image: url('img/bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

        #particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h2 {
            color: #fff;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            color: #ffffff;
            margin-top: 20px;
            font-size: 1.3rem;
        }

        .btn {
            margin-top: 30px;
            padding: 15px 35px;
            border: none;
            background: #4f63ff;
            color: #fff;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover {
            background: #7384ff;
        }

   .hero {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero h2,
.hero p {
    text-shadow: 0 4px 10px rgb(0, 0, 0);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* escurece levemente */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
        /* ===================== SEÇÃO SOBRE ====================== */
        section {
            padding: 80px 40px;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        section h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #222;
        }

        section p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .servicos {
  padding: 60px 20px;
  background: #f6f6f6;
}

.container-serv {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.serv-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
}

.serv-box h2 {
  color: #ff5722;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
}

.serv-icon {
  width: 60px;
  margin-bottom: 15px;
}

.item-serv {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.mini-icon {
  width: 30px;
}

.item-serv h3 {
  color: #ff5722;
  font-size: 18px;
  margin-bottom: 5px;
}

.item-serv p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .container-serv {
    flex-direction: column;
  }
}


.faq {
   
    text-align: center;
    background-color: #ffffff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: default; /* não clicável */
    padding: 0;
}

.faq-answer p {
    padding: 10px 0;
    margin: 0;
    line-height: 1.6;
}


        /* ===================== FOOTER ====================== */
        footer {
            background: #111;
            color: #999;
            text-align: center;
            padding: 30px;
            margin-top: 80px;
        }