/* style.css */

/* Reset básico e tipografia */
body {
    /*font-family: Arial, sans-serif;*/
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 350;
	font-style: normal;
	
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

main, .header-container, .footer-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Logo */
.header-container {
    padding-top: 20px;
    padding-bottom: 0;
    border-bottom: 1px solid #eee;
}

.logo-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 100px; /* Ajuste o tamanho do seu logo aqui */
    height: auto;
}

.nav-link {
    text-decoration: none;
    color: #004080; /* Cor azul escuro para link */
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid #004080;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: #004080;
    color: white;
}

/* Seção Principal (Hero) */
.hero-section {
    text-align: center;
    padding: 5px 0;
}

.main-title {
    color: #004080;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    color: #444;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.description {
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* CTA - Chamada para Ação do WhatsApp */
.whatsapp-cta {
    display: inline-block;
    background-color: #25D366; /* Verde do WhatsApp */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-cta:hover {
    background-color: #128C7E;
}

.whatsapp-icon {
    margin-right: 10px;
}

.contact-note {
    margin-top: 15px;
    color: #777;
    font-style: italic;
}


/* Seção de Serviços */
.services-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    color: #004080;
    margin-bottom: 30px;
    font-size: 2em;
}

.service-list-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.list-group {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.group-title {
    color: #444;
    border-bottom: 2px solid #004080;
    padding-bottom: 10px;
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    padding-left: 1.2em;
    position: relative;
}

li::before {
    content: "✓"; 
    position: absolute;
    left: 0;
    color: #004080;
    font-weight: bold;
}

/* Seção de Contato */
.contact-section {
    text-align: center;
    padding: 40px 0;
}

.contact-text {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.1em;
}

.contact-details a {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

.icon {
    margin-right: 5px;
    color: #004080;
}

/* Footer */
.footer-container {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
}

.location-info {
    margin-bottom: 5px;
}

/* Regras de Mídia para Responsividade */
@media (max-width: 600px) {
    .main-title {
        font-size: 1.8em;
    }
    
    .logo {
        max-width: 80px;
    }
    
    .logo-box {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        width: 80%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .service-list-container {
        flex-direction: column;
        gap: 20px;
    }
}