body {
    color: #333;
    background-color: #2e2236;
    line-height: 1.6;
    padding: 0px;
    margin: 0;
}

header {
    text-align: center;
    padding: 20px;
}

header h1 {
    color: #ececec;
    font-weight: 700;
    margin-top: 10px;
}

p {
    color: #ececec;
    font-size: 16px;
    margin-top: 10px;
}

main {
    padding: 0px 20px 20px 20px;
    margin: 0;
}


.actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button {
    background-color: #6a1b9a;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: 80%;
    /* Adapted for mobile */
    text-align: center;
}

.button:hover {
    opacity: 0.7;
}

.whatsapp {
    background-color: #1a9246;
    /* WhatsApp color */
}

.ifood {
    background-color: #ea1d2c;
    /* iFood color */
}

.indique {
    background-color: #1d8eea;
    /* iFood color */
}

.parcerias {
    background-color: #c97600;
    /* iFood color */
}

@media (min-width: 768px) {
    .button {
        width: 30%;
        /* Wider buttons on larger screens */
    }
}

footer {
    color: white;
    text-align: center;
    padding: 20px 10px;
    width: 100%;
    margin-top: 60px;
}

footer p {
    font-size: 14px;
    margin: 0;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}



.social-media a:hover {
    text-decoration: underline;
}