@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Poppins, sans-serif;
    font-weight: 100px;
    background: linear-gradient(135deg, #6a11aa, #a80b5a);
    color: white;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 50px;
}
nav {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none;
}
.section {
    padding: 50px 0;
    text-align: center;
}
#titulo{
    font-size: 2rem;
    
}
#texto{ 
    text-align: justify;
}
.services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.service-item {
    width: 30%;
    text-align: center;
}
.service-item img {
    width: 70%;
    border-radius: 10px;
}
.btn-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    nav {
        width: auto;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: #444;
        position: absolute;
        width: 100%;
        left: 0;
        top: 60px;
        padding: 20px 0;
        text-align: center;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        width: 90%;
    }
}