body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: white;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* fundo bonito */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
                url('logo.jpg') no-repeat center/cover;
}

.hero h1 {
    font-size: 3rem;
    color: #C9A24A;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba (201, 162, 74, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    background: #C9A24A;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e6c36a;
}

.sobre {
    min-height: 100vh;
    padding: 80px 10%;
    background: #0a0a0a;
    color: white;
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    font-size: 2.5rem;
    color: #C9A24A;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.sobre-imagem {
    flex: 1;
    text-align: center;
}

.sobre-imagem img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    border: 2px solid #C9A24A;
}

.servicos {
    padding: 80px 10%;
    background: #111;
    text-align: center;
}

.servicos h2 {
    font-size: 2.5rem;
    color: #C9A24A;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    border: 1px solid #C9A24A;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #C9A24A;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
}

.cards{ 
    align-items: center;
}

.contato {
    padding: 80px 10%;
    background: #0a0a0a;
    text-align: center;
}

.contato h2 {
    font-size: 2.5rem;
    color: #C9A24A;
    margin-bottom: 15px;
}

.contato p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.logo{
    width: 180px;
    margin-bottom: 20px;
}

.servicos-texto{
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #ccc;
}