*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #f5f5f5;
}


header{
    background: #b00000;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav{
    display: flex;
    gap: 30px;
}

nav a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover{
    color: #ffd000;
}


.banner{
    height: 80vh;

    background:
    linear-gradient(rgba(0,0,0,.5),
    rgba(0,0,0,.5)),

    url("./img/banner.jpeg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-conteudo{
    text-align: center;
    color: white;
}

.banner h2{
    font-size: 4rem;
    margin-bottom: 20px;
}

.banner p{
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.btn{
    background: #ffd000;
    color: black;

    padding: 15px 35px;

    text-decoration: none;
    border-radius: 8px;

    font-weight: bold;
}

.btn:hover{
    background: white;
}


.sobre{
    padding: 80px 10%;
    text-align: center;
}

.sobre h2{
    color: #b00000;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.sobre p{
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    font-size: 1.1rem;
}


.galeria{
    padding: 80px 10%;
    background: white;
}

.galeria h2{
    text-align: center;
    color: #b00000;
    margin-bottom: 40px;
}

.fotos{
    display: grid;
    grid-template-columns:
    repeat(auto-fit, minmax(300px,1fr));

    gap: 25px;
}

.fotos img{
    width: 100%;
    height: 250px;

    object-fit: cover;

    border-radius: 15px;

    transition: .4s;
}

.fotos img:hover{
    transform: scale(1.03);
}

.contatos{
    padding: 80px 10%;
    text-align: center;
}

.contatos h2{
    color: #b00000;
    margin-bottom: 40px;
}

.cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card{
    width: 280px;

    background: white;

    padding: 40px 20px;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.card i{
    font-size: 3rem;
    color: #b00000;
    margin-bottom: 20px;
}

.card h3{
    margin-bottom: 10px;
}


.whatsapp{
    position: fixed;

    bottom: 30px;
    right: 30px;

    background: #25D366;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 2rem;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}


footer{
    background: #111;
    color: white;
    text-align: center;
    padding: 30px;
}


@media(max-width:768px){

    header{
        flex-direction: column;
        gap: 20px;
    }

    .banner h2{
        font-size: 2.5rem;
    }

    nav{
        gap: 15px;
    }
}