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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Cabeçalho */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo img {
    max-width: 300px;
    height: auto;
}

/* Conteúdo principal */
main {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
}

h1 {
    color: #e67e22;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e67e22;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Serviços */
.services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e67e22;
    border-radius: 50%;
    padding: 15px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-item h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

/* Informações de contato */
.contact-info {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.contact-item span {
    font-weight: 500;
}

/* Rodapé */
footer {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    main {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}
