body{
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: rgb(207, 218, 221);
}

/* HEADER */
header{
    text-align: center;
    padding: 100px;
    color: rgb(9, 31, 80);

    background-image: url('img/cachorro.jpg');
    background-size: cover;
    background-position: center;
}

/* BOTÃO */
.btn{
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #0bb092;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover{
    background: #e68900;
}

/* SERVIÇOS */
.servicos{
    padding: 50px;
    text-align: center;
}

/* CONTAINER DOS CARDS */
.cards{
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

/* IMAGEM DOS CARDS */
.card img{
    width: 200%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* CARD */
.card{
    background: rgb(53, 224, 64);
    padding: 20px;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    transform: translateY(-8px);
  
}

.card:hover{
    transform: scale(1.05);
}

/* SOBRE */
.sobre{
    padding: 40px;
    text-align: center;
    background: rgb(41, 142, 85);
    color: white;
}

.sobre img{
    width: 200px;
    border-radius: 10px;
    margin: 20px 0;
}

/* CONTATO */
.contato{
    padding: 80px;
    text-align: center;
}