body {
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    background: #111;
}

header {
    background: #000000;
    display: flex;
    justify-content: space-between;
    color: #ff6600;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width: 80px;
}

section{
    max-width: 1100px;
    margin: auto;
}

.hero {
    text-align: center;
    padding: 80px;
    background: #f5f5f5;
    
}

.hero button {
    padding: 15px 15px;
    background: orange;
    border: none;
    color: white;
    font-size: 18px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    
}

.galery{
    color: #ffff;
}
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;

}

.card {
    background: #eeee;
    padding: 15px;
    border-radius: 10px;
}

.fotos {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.fotos img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.fotos img:hover {
    transform: scale(1.05);
}

.contato{
    text-align: center;
    padding: 60px 20px;
    color: #ffff;
}

.botao{
    display: inline-block;
    background: green;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    padding: 15px 30px;
}

@media(max-width: 768px){
    header{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cards{
        flex-direction: column;
        align-items: center;
    }

    .fotos{
        flex-direction: column;
        align-items: center;
    }

    .fotos img{
        width: 90%;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2{
        font-size: 24px;
    }

}

