
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0e0d0d;
    color: #f4f4f4;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 40px 20px;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.gold {
    color: #d4af37;
}

.subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: bold;
}


.foto-pet {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    border: 3px solid #d4af37;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}


.btn-whatsapp {
    display: inline-block;
    background-color: #25d366; 
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 25px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}


.servicos {
    margin-top: 40px;
}

ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

li {
    background-color: #1e1e1e;
    padding: 20px;
    min-width: 200px;
    border-radius: 10px;
    border-bottom: 4px solid #d4af37;
    transition: background 0.3s;
}

li:hover {
    background-color: #2a2a2a;
}

li span {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

footer {
    margin-top: 60px;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #777;
    font-size: 0.8rem;
}


