body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding: 20px;
    background: #ffffff;
    color: #333;
    margin: 0;
}

.logo {
    max-width: 480px;
    width: 100%;
    height: auto;
    margin-top: 30px;
}

p {
    font-size: 1.1rem;
}

.social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.whatsapp-button,
.instagram-button {
    display: inline-block;
    padding: 12px 20px;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1ebc59;
    transform: scale(1.05);
}

.instagram-button {
    background-color: #cc3366;
}

.instagram-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.location-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #fff0f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.location-text {
    max-width: 300px;
    text-align: left;
    font-size: 1rem;
}

.location-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    height: 200px;
}

footer {
    margin-top: 30px;
    padding: 15px 0;
    background-color: #cc3366;
    color: white;
    border-top: 4px solid #b52a58;
    border-radius: 10px;
}

footer p {
    margin: 0 0 10px 0;
}

footer a {
    margin: 0 10px;
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffe6f0;
}

@media screen and (max-width: 720px) {
    .location-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .location-text {
        max-width: 90%;
        text-align: center;
    }

    .social {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-button,
    .instagram-button {
        width: 80%;
        max-width: 300px;
    }
}
