* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #e8d8c3;
    scroll-behavior: smooth;
}

/* HERO */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("imagens/capa.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    animation: fadeUp 1s ease;
}

.hero p {
    margin: 10px 0 25px;
    animation: fadeUp 1.3s ease;
}

/* BOTÕES */

.botoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 22px;
    background: #e8d8c3;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #d6c1aa;
    transform: scale(1.05);
}

.whatsapp {
    background: #25D366;
    color: white;
}

.insta {
    background: #E1306C;
    color: white;
}

/* SEÇÕES */

section {
    padding: 70px 20px;
    text-align: center;
}

.sobre {
    background: #151515;
}

.sobre p {
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

/* GALERIA */

.portfolio {
    background: #0f0f0f;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.item {
    overflow: hidden;
    border-radius: 10px;
}

.item img {
    width: 100%;
    transition: 0.5s;
}

.item img:hover {
    transform: scale(1.1);
}

/* RODAPÉ */

footer {
    background: #000;
    padding: 20px;
}

/* ANIMAÇÃO */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #e8d8c3;
    scroll-behavior: smooth;
}

/* HERO */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("imagens/capa.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    animation: fadeUp 1s ease;
}

.hero p {
    margin: 10px 0 25px;
    animation: fadeUp 1.3s ease;
}

/* BOTÕES */

.botoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 22px;
    background: #e8d8c3;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #d6c1aa;
    transform: scale(1.05);
}

.whatsapp {
    background: #25D366;
    color: white;
}

.insta {
    background: #E1306C;
    color: white;
}

/* SEÇÕES */

section {
    padding: 70px 20px;
    text-align: center;
}

.sobre {
    background: #151515;
}

.sobre p {
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

/* GALERIA */

.portfolio {
    background: #0f0f0f;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.item {
    overflow: hidden;
    border-radius: 10px;
}

.item img {
    width: 100%;
    transition: 0.5s;
}

.item img:hover {
    transform: scale(1.1);
}

/* RODAPÉ */

footer {
    background: #000;
    padding: 20px;
}

/* ANIMAÇÃO */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
}