/* === CONFIGURAÇÕES GERAIS E RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #555; background-color: #ffffff; font-weight: 300; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* === CABEÇALHO COM LOGO === */
header {
    background: #ffffff;
    padding: 0.8rem 0; /* Padding ajustado */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container da Logo + Texto */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaço entre imagem e texto */
    flex-shrink: 0;
}

.logo-img {
    height: 50px; /* Altura controlada da logo */
    width: auto;
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
}

.logo-text span {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Menu de Navegação */
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: #666; font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: #c00000; }
.btn-contato { color: #c00000 !important; border: 1px solid #c00000; padding: 8px 18px; border-radius: 50px; font-weight: 500; white-space: nowrap; display: inline-block; }
.btn-contato:hover { background-color: #c00000; color: #fff !important; }
.menu-toggle { display: none; font-size: 1.5rem; color: #333; cursor: pointer; }

/* === HERO SECTION === */
.hero { background-color: #fcfcfc; padding: 100px 0; text-align: center; border-bottom: 1px solid #eee; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h2 { font-size: 2.5rem; font-weight: 300; color: #222; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
.btn-cta { background-color: #c00000; color: #fff; padding: 12px 30px; border-radius: 4px; font-weight: 500; display: inline-block; box-shadow: 0 4px 10px rgba(192, 0, 0, 0.2); }
.btn-cta:hover { background-color: #a00000; transform: translateY(-2px); }

/* === SEÇÕES GERAIS === */
.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 1.8rem; font-weight: 300; margin-bottom: 50px; color: #333; }
.section-title::after { content: ''; display: block; width: 40px; height: 3px; background: #c00000; margin: 15px auto 0; }
.bg-light { background-color: #fafafa; }

/* === CARDS === */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 35px; border-radius: 8px; border: 1px solid #eee; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #ffe5e5; }
.card h3 { margin-bottom: 20px; color: #c00000; font-weight: 500; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.card p { font-size: 0.95rem; line-height: 1.6; color: #666; margin-bottom: 20px; }
.card ul { font-size: 0.9rem; color: #555; }
.card ul li { margin-bottom: 10px; padding-left: 15px; position: relative; }
.card ul li::before { content: '-'; position: absolute; left: 0; color: #ccc; }

/* === EQUIPE & CLIENTES === */
.team-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.team-member { text-align: center; max-width: 300px; }
.team-member h3 { color: #333; font-size: 1.1rem; font-weight: 500; }
.team-member .cargo { font-size: 0.8rem; color: #c00000; text-transform: uppercase; font-weight: 700; margin-bottom: 5px; }
.team-member .registro { font-size: 0.8rem; color: #999; font-style: italic; margin-bottom: 10px; }
.clients-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.client-item { background: #fff; padding: 10px 25px; border: 1px solid #eee; color: #777; font-size: 0.9rem; border-radius: 4px; }

/* === RODAPÉ NOVO COM FORMULÁRIO === */
footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 60px;
    align-items: start;
}

/* Coluna 1: Infos */
.footer-info-col h3 { color: #fff; margin-bottom: 15px; }
.contact-details p { margin-bottom: 10px; color: #aaa; display: flex; align-items: center; gap: 10px; }
.contact-details i { color: #c00000; width: 20px; text-align: center; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: 500;
}
.btn-whatsapp:hover { background-color: #1ebc57; }

/* Coluna 2: Formulário */
.footer-form-col h3 { color: #fff; margin-bottom: 20px; font-weight: 400; }
.contact-form .form-group { margin-bottom: 15px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #c00000;
    background: #3a3a3a;
}
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #c00000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}
.btn-submit:hover { background-color: #a00000; }

.footer-copyright {
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

/* === RESPONSIVIDADE === */
@media (max-width: 1200px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: #fff; flex-direction: column; align-items: center;
        padding: 30px 0; box-shadow: 0 10px 15px rgba(0,0,0,0.05); gap: 25px; border-top: 1px solid #eee;
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; margin-right: 10px; }
    .nav-links a { font-size: 1.1rem; }
    .logo-text h1 { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .hero h2 { font-size: 1.8rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; } /* Footer vira coluna única no mobile */
}