/* Resetando o estilo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ff9aee; /* Fundo laranja */
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #b0aaff; /* Cor de fundo do header */
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
}

.hero {
    background-image: url('https://via.placeholder.com/1200x500/FF6600/FFFFFF?text=Adoção+de+Pets');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

button {
    background-color: white;
    color: #000000;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #ffebe3;
    color: white;
}

.adopt-locations {
    background-color: #b0aaff;
    padding: 50px 0;
}

.adopt-locations h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.location-item {
    background-color: white;
    color: #9013a5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.location-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.location-item p {
    font-size: 1.1rem;
}

footer {
    background-color: #ff9aee;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    color: white;
}