/* FILE: style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    color: #1e2a3e;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: #0b2b3b;
    color: white;
    padding: 20px 0;
    border-bottom: 3px solid #e0b13b;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    text-decoration: none;
}

.logo-wa {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    color: white;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.8rem;
    color: #e0b13b;
    font-weight: 500;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #e0b13b;
}

.header-phone a {
    background: #e0b13b;
    padding: 8px 18px;
    border-radius: 40px;
    color: #0b2b3b;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    background: linear-gradient(135deg, #eef2f5 0%, #e2e8f0 100%);
    padding: 60px 0 70px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    max-width: 1000px;
    margin-bottom: 20px;
    color: #0b2b3b;
}

.hero-sub {
    font-size: 1.4rem;
    color: #2c4c5e;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 16px;
}

.btn-primary {
    background: #0b2b3b;
    color: white;
}

.btn-secondary {
    background: white;
    color: #0b2b3b;
    border: 1px solid #0b2b3b;
}

.about-summary,
.services,
.diferenciais,
.processo,
.autoridade,
.conteudo-educativo,
.faq-home,
.bloco-final {
    padding: 70px 0;
    border-bottom: 1px solid #e2e8f0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0b2b3b;
    border-left: 6px solid #e0b13b;
    padding-left: 20px;
}

.services-grid,
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.service-card,
.dif-card {
    background: #f9fafc;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
    border: 1px solid #edf2f7;
}

.service-card h3,
.dif-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #0b2b3b;
}

.processo ol {
    background: #f9fafc;
    padding: 32px 32px 32px 60px;
    border-radius: 24px;
    list-style-type: decimal;
    line-height: 1.7;
}

.processo li {
    margin-bottom: 18px;
}

.faq-item {
    margin-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 18px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

footer {
    background: #0a1c26;
    color: #cbd5e1;
    padding-top: 48px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p,
.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-bottom {
    background: #05161f;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e2a3e;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 999;
    gap: 16px;
}

.cookie-btn {
    background: #e0b13b;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 800px) {
    .header-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}