/* RESET MAIS SEGURO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* BODY (corrige header fixo) */
body {
    background-color: #000;
    padding-top: 100px;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #000;
    border-bottom: 2px solid #cc8105;
}

header section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

/* LOGO */
.Logo img {
    width: 180px;
    height: auto;
}

/* NAVBAR */
.navbar {
    display: flex;
    gap: 1.5rem;
}

.navbar a {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.navbar a:hover {
    color: #cc8105;
    transform: scale(1.05);
}

/* SECTIONS */
section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* HOME */
.home-conteiner {
    background: url("Banner site.svg") center/cover no-repeat;
}

.home-conteiner section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.content {
    max-width: 600px;
}

.home-conteiner .content h3 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
}

.content p {
    color: #fff;
}

/* BOTÕES (PADRÃO ÚNICO) */
.btn {
    background-color: #cc8105;
    border: 2px solid #000;
    border-radius: 40px;
    color: #fff;
    padding: 0.8rem 2rem;
    cursor: pointer;
    display: inline-block;
    transition: 0.2s;
}

.btn:hover {
    background-color: #fff;
    color: #cc8105;
}

/* ABOUT */
.about {
    background-color: #000;
}

.about .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #2e2e2e;
    padding: 2rem;
}

.conteiner-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.about .content h3 {
    font-size: 2rem;
    color: #fff;
}

/* TITLE */
.title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.title span {
    color: #cc8105;
}

/* SERVICES */
#service {
    background-color: #000;
}

#service .box-conteiner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.box {
    text-align: center;
    border: 2px solid #cc8105;
    border-radius: 20px;
    padding: 1rem;
}

.box img {
    width: 100%;
    max-width: 120px;
}

.box h3 {
    color: #fff;
}

/* FORM */
#forms {
    background: url("fundo form2.svg") center/cover no-repeat;
}

.form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid #cc8105;
    border-radius: 20px;
    padding: 1.5rem;
    display: grid;
    gap: 10px;
}

.form label {
    color: #fff;
}

.form input:not([type="range"]) {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
}

#price {
    width: 100%;
}

#valor {
    text-align: center;
    color: #fff;
}

/* FOOTER */
#footercontent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

#social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footerlist {
    list-style: none;
}

.footerlist a {
    color: #fff;
    text-decoration: none;
}

#footercopy {
    text-align: center;
    color: #fff;
    padding: 1rem;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .navbar {
        display: none;
    }

    .home-conteiner section {
        background-image: url(vs\ mobile\ background.svg);
        justify-content: center;
        text-align: center;
    }

    .about .row {
        flex-direction: column;
        text-align: center;
    }

    #service .box-conteiner {
    display: grid;
    grid-template-columns: 1fr;
    }
}