/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Corpo da página */
body {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* Navbar fixa e estilizada */
nav {
    background: #4CAF50;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

/* Header principal */
header {
    background: linear-gradient(to right, #4CAF50, #2E7D32);
    color: white;
    padding: 100px 20px;
    margin-top: 60px;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

/* Seção "Sobre Mim" */
#about {
    padding: 50px 20px;
    background: white;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.about-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 10px;
    border: 4px solid #4CAF50;
}

/* Seção "Nossos Serviços" */
#services {
    padding: 50px 20px;
    background: #f9f9f9;
}

.service {
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.service:hover {
    transform: scale(1.05);
    background-color: #e8f5e9;
}

.service h3 {
    color: #2E7D32;
}

.service img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Botão do WhatsApp */
.whatsapp-button {
    margin: 30px 0;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Rodapé */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    margin-top: 20px;
}
