/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
}

/* Hero section */
.hero {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 5px solid #2c3e50;
}

.bio h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.bio p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services section */
.services {
    padding: 60px 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
}

.service-items {
    margin-bottom: 20px;
}

.service-items p {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-items p:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #3498db;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 15px;
}

/* Portfolio section */
.portfolio {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.portfolio h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.portfolio-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* Contact section */
.contact {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .profile {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        gap: 40px;
    }
    
    .profile-img {
        margin-bottom: 0;
    }
    
    .bio {
        flex: 1;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .bio h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        max-width: 100%;
    }
}
