/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: url("../img/background.jpg") no-repeat center center fixed;
    background-size: cover;
    height: 100%;
}

.container {
    text-align: center;
    padding: 0.000001px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Cabeçalho */
.header .logo {
    width: 400px;
    margin-bottom: 0.01px;
}

.header h1 {
    font-size: 1px;
    color: #32a852;
}

.header h2 {
    font-size: 1px;
    text-transform: uppercase;
    color: #32a852;
}

/* Conteúdo Principal */
.content h3 {
    font-size: 25px;
    margin-top: 1px;
}

.content h4 {
    font-size: 25px;
    margin: 1px 0;
}

.content p {
    font-size: 18px;
    width: 80%;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.whatsapp-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    background-color: #25d366;
    color: #fff;
    border-radius: 5px;
    margin: 15px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #1ebe5d;
}

.whatsapp-link i {
    margin-right: 10px;
}

/* Serviços */
.services h3 {
    font-size: 32px;
    margin: 20px 0;
    text-transform: uppercase;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

.service-list ul {
    list-style: none;
    text-align: left;
}

.service-list ul li {
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 15px;
    text-indent: -10px;
}

.service-list ul li::before {
    content: "♦";
    margin-right: 10px;
    color: #32a852;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .content h3, .content h4 {
        font-size: 28px;
    }

    .content p {
        width: 90%;
    }

    .services h3 {
        font-size: 24px;
    }
}