/* VERSÃO OTIMIZADA "APP-LIKE" COM FONTE PLUS JAKARTA SANS - SUBSTITUA TODO O SEU ARQUIVO CSS POR ESTE */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #007bff;
    --primary-text-color: #1a1a1a;
    --secondary-text-color: #6c757d;
    --background-color: #f8f9fa;
    --surface-color: #ffffff;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --font-family: 'Plus Jakarta Sans', 'Helvetica', sans-serif;
    --border-radius: 20px;
    --border-radius-pill: 50px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); background-color: var(--background-color); color: var(--secondary-text-color); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Cabeçalho Fixo (Sticky) --- */
.site-header { padding: 1rem 0; position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
.site-header nav { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 35px; } /* Altura do logo no header */

/* --- Botões --- */
.auth-buttons { display: flex; gap: 10px; }
.btn { padding: 14px 28px; border-radius: var(--border-radius-pill); text-decoration: none; font-weight: 800; display: inline-block; border: 1px solid transparent; transition: all 0.3s ease; cursor: pointer; }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-primary { background-color: var(--primary-color); color: #ffffff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.btn-secondary { background-color: var(--secondary-color); color: #ffffff; }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); }

/* --- Seção Hero "App-Like" --- */
.hero { text-align: center; padding: 100px 20px; background-color: var(--surface-color); }
.hero-title { font-size: 2.5rem; font-weight: 800; color: var(--primary-text-color); margin-bottom: 15px; line-height: 1.2; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px auto; }

/* --- Título de Seção Padrão --- */
.section-title { text-align: center; font-size: 2.5rem; font-weight: 800; color: var(--primary-text-color); margin-bottom: 40px; }

/* --- Seção de Serviços Otimizada --- */
.services { padding: 80px 0; }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.service-card { background: var(--surface-color); border-radius: var(--border-radius); box-shadow: 0 5px 25px var(--shadow-color); transition: all 0.3s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); }
.card-content { padding: 25px; text-align: center; flex-grow: 1; }
.icon-placeholder { font-size: 1.2rem; margin-bottom: 15px; color: var(--secondary-text-color); background-color: var(--background-color); padding: 10px; border-radius: 10px; display: inline-block; }
.service-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--primary-text-color); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; line-height: 1.6; }
.service-card .btn { border-radius: 0 0 var(--border-radius) var(--border-radius); width: 100%; }

/* --- CTA Profissionais Otimizada --- */
.cta-professionals { background-color: var(--primary-text-color); color: #ffffff; padding: 80px 20px; text-align: center; }
.cta-professionals h2 { font-size: 2.5rem; font-weight: 800; }
.cta-professionals p { max-width: 600px; margin: 0 auto 30px auto; color: rgba(255,255,255,0.9); }
.cta-professionals .btn-primary { background-color: #ffffff; color: var(--primary-text-color); }

/* --- Estilos do Pop-up (Modal) --- */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #fff; margin: 10% auto; padding: 40px; border: none; width: 90%; max-width: 500px; border-radius: var(--border-radius); position: relative; animation: slide-down 0.4s ease-out; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
@keyframes slide-down { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; top: 15px; right: 25px; }
.close-btn:hover, .close-btn:focus { color: var(--primary-text-color); text-decoration: none; cursor: pointer; }
.modal-content h2 { font-weight: 800; color: var(--primary-text-color); margin-bottom: 10px; }
.modal-content p { margin-bottom: 20px; }

/* --- Estilos do Formulário do Modal --- */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--primary-text-color); font-size: 0.9rem; }
.form-group input, .form-group select { width: 100%; padding: 14px; border-radius: 12px; border: 1px solid var(--border-color); font-family: var(--font-family); font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group input:focus, .form-group select:focus { border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15); outline: none; }
.form-group small { display: block; margin-top: 5px; font-size: 0.8rem; color: var(--secondary-text-color); }
.modal-content button[type="submit"] { width: 100%; margin-top: 10px; padding: 15px; font-size: 1.1rem; }
#success-message { text-align: center; padding: 20px; }
#success-message h3 { color: var(--primary-text-color); font-size: 1.8rem; margin-bottom: 10px; }

/* --- Rodapé --- */
.site-footer { background: var(--primary-text-color); color: rgba(255,255,255,0.7); padding: 60px 20px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer-col { color: rgba(255,255,255,0.7); }
.logo-img-footer { height: 40px; margin-bottom: 15px; } /* Estilo para o logo no footer */
.footer-col p { color: rgba(255,255,255,0.7); }
.footer-col h4 { color: #ffffff; font-size: 1rem; margin-bottom: 15px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-col ul a:hover { color: #ffffff; }
.social-links a { color: #ffffff; text-decoration: none; font-size: 1.5rem; margin-right: 15px; }

/* --- Media Queries --- */
@media (min-width: 576px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } .section-title { font-size: 3rem; } .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 992px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }


/* Adicione este código ao FINAL do seu arquivo style.css */

/* --- Ajustes no Rodapé --- */
.footer-col .company-details {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 15px;
    opacity: 0.8;
}

/* Modifique esta regra no seu /assets/css/style.css */

.social-links img {
    height: 24px;
    width: 24px;
    filter: brightness(0) invert(1); /* Esta linha mágica inverte o preto para branco */
    transition: opacity 0.3s ease;
}

.social-links a:hover img {
    opacity: 0.8; /* Levemente transparente no hover para dar feedback */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Adicione este código ao FINAL do seu arquivo style.css */

/* --- Página de Erro 404 --- */
.error-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: calc(100vh - 150px); /* Ocupa a altura da tela, descontando header/footer */
}

.error-content .error-code {
    font-size: 10rem;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
}

.error-content .error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-text-color);
    margin-top: -30px; /* Sobrepõe levemente o número 404 */
    margin-bottom: 15px;
}

.error-content .error-message {
    max-width: 450px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    color: var(--secondary-text-color);
}