:root {
    --primary: #1e3a5f;
    --primary-light: #2a5082;
    --primary-soft: #e8eef6;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --text: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --white: #ffffff;
    --bg: #fafbfc;
    --bg-warm: #f7f8fa;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --radius: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

/* ========== HEADER ========== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: .65rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .55rem;
    max-width: 360px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: .25rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: .875rem;
    padding: .45rem .8rem;
    border-radius: 6px;
    transition: all .15s;
}

.nav-list a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.btn-contact {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: .45rem 1rem !important;
    border-radius: 6px !important;
    font-size: .85rem !important;
    transition: background .15s !important;
}

.btn-contact:hover {
    background: var(--primary-light) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text);
    padding: .4rem;
}

/* ========== HERO ========== */
.hero {
    padding: 5rem 0 5.5rem;
    background: var(--white);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1.4;
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.12;
    margin-bottom: 1.2rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -.025em;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .875rem;
    transition: all .15s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

.hero-image {
    flex: .6;
    display: flex;
    justify-content: center;
}

.abstract-shape {
    width: 200px;
    height: 200px;
    background: var(--primary-soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3.5rem;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    padding: 2.5rem 0;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.02em;
}

.trust-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== SERVICES ========== */
.services {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.65rem;
    color: var(--text);
    margin-bottom: .5rem;
    font-weight: 700;
    letter-spacing: -.015em;
}

.section-header p {
    color: var(--text-muted);
    font-size: .92rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow .2s, border-color .2s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #d1d5db;
}

.icon-box {
    width: 42px;
    height: 42px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: .5rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: .875rem;
    line-height: 1.6;
}

/* ========== ABOUT ========== */
.about {
    background: var(--bg-warm);
    padding: 4.5rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 1.65rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -.015em;
}

.about-intro {
    font-size: .95rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: .75rem;
    font-size: .9rem;
}

.corporate-values {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.value-box {
    background: var(--white);
    padding: 1.15rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.value-box h4 {
    color: var(--text);
    margin-bottom: .35rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .9rem;
    font-weight: 600;
}

.value-box h4 i {
    color: var(--accent);
    font-size: .8rem;
}

.value-box p {
    font-size: .85rem;
    line-height: 1.6;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: .3rem;
    font-size: .85rem;
    padding-left: .9rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.5;
}

.values-list li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: .55rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.sidebar-card h4 {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.sidebar-card .cnpj-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.sidebar-card .company-info {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.badge-active {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #ecfdf5;
    color: #059669;
    font-size: .78rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 20px;
    margin-top: .5rem;
}

.badge-active i {
    font-size: .65rem;
}

/* ========== CONTACT ========== */
.contact {
    padding: 4.5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: .6rem;
    color: var(--text);
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: .88rem;
}

.info-item {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.info-item i {
    width: 34px;
    height: 34px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: .1rem;
    color: var(--text);
    font-size: .85rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.55;
}

.contact-form {}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: .3rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: .85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .6rem .8rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: .875rem;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

.form-submit {
    width: 100%;
    padding: .7rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
}

.form-submit:hover {
    background: var(--primary-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text);
    color: white;
    padding: 2rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1.25rem;
}

.footer-brand {
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-brand .logo-icon {
    width: 28px;
    height: 28px;
    font-size: .7rem;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .8rem;
    transition: color .15s;
}

.footer-links a:hover {
    color: rgba(255,255,255,.85);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-legal {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    max-width: 600px;
}

.footer-legal span {
    display: inline;
}

.footer-copy {
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    white-space: nowrap;
}

/* ========== HEADER SOCIAL ========== */
.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-social a {
    text-decoration: none;
    transition: opacity .15s;
}
.header-social a:hover { opacity: .7; }

/* ========== CANAIS OFICIAIS ========== */
.canais-oficiais {
    padding: 4rem 0;
    background: var(--bg-alt, #f8f9fa);
}
.canais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.canal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: border-color .15s, box-shadow .15s;
}
.canal-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.canal-card h3 { font-size: .95rem; margin-bottom: .4rem; color: var(--text); }
.canal-card p { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.whatsapp-oficial-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid #25D366;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    max-width: 650px;
    margin: 0 auto;
}
.whatsapp-oficial-banner strong {
    font-size: .9rem;
    display: block;
    margin-bottom: .25rem;
    color: var(--text);
}
.whatsapp-oficial-banner p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ========== DADOS DA EMPRESA ========== */
.dados-empresa {
    padding: 4rem 0;
}
.dados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: .75rem;
    max-width: 900px;
    margin: 0 auto;
}
.dado-item {
    background: var(--bg-alt, #f8f9fa);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .875rem 1rem;
}
.dado-label {
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .2rem;
}
.dado-valor {
    font-size: .875rem;
    color: var(--text);
    word-break: break-word;
}

/* ========== FOOTER SOCIAL ========== */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-social a {
    text-decoration: none;
    transition: opacity .15s;
}
.footer-social a:hover { opacity: .7; }

/* ========== COOKIE BANNER ========== */
#cookie-banner .container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }

    .hero { padding: 3rem 0 3.5rem; }
    .hero-container { flex-direction: column; text-align: center; gap: 2rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { margin: 0 auto 1.5rem; font-size: .95rem; }
    .hero-buttons { justify-content: center; }
    .abstract-shape { width: 140px; height: 140px; font-size: 2.5rem; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .services { padding: 3rem 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 3rem 0; }
    .about-container { grid-template-columns: 1fr; gap: 2rem; }

    .contact { padding: 3rem 0; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 1.5rem; gap: 2rem; }

    .header-social { display: none; }
    .canais-grid { grid-template-columns: 1fr; max-width: 300px; }
    .whatsapp-oficial-banner { flex-direction: column; text-align: center; }
    .dados-grid { grid-template-columns: 1fr; }

    .footer-top { flex-direction: column; gap: .75rem; align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: .75rem; }

    #cookie-banner .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .logo { font-size: .9rem; max-width: 220px; }
}
