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

:root {
    --navy: #0A1628;
    --blue-dark: #102040;
    --blue-mid: #1D3461;
    --accent: #2563EB;
    --accent-light: #3B82F6;
    --light-bg: #F0F4FF;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

/* ---- HEADER ---- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #192e4d;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

nav a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

.btn-header {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-header:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

/* ---- HERO ---- */
.hero {
    background: #192e4d;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-logo-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.06);
}

.hero-shape {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.7;
    pointer-events: none;
}

/* ---- DIFERENCIAIS ---- */
.diferenciais {
    background: var(--light-bg);
    padding: 0;
}

.diferenciais-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.diferencial-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.diferencial-card:hover {
    box-shadow: 0 8px 30px rgba(37,99,235,0.1);
}

.dif-icon {
    width: 52px;
    height: 52px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dif-icon svg {
    width: 26px;
    height: 26px;
}

.diferencial-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.diferencial-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- SERVIÇOS ---- */
.servicos-section {
    background: white;
    padding: 80px 24px;
}

.servicos-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.servicos-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 52px;
}

.label-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.label-tag.light {
    color: rgba(255,255,255,0.6);
}

.servicos-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.servicos-header .right p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servico-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(37,99,235,0.08);
    transition: all 0.25s;
}

.servico-card:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(37,99,235,0.12);
    transform: translateY(-4px);
    border-color: rgba(37,99,235,0.2);
}

.s-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(37,99,235,0.1);
}

.s-icon svg {
    width: 24px;
    height: 24px;
}

.servico-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.servico-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.s-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}

.s-link:hover {
    text-decoration: underline;
}

/* ---- SOBRE ---- */
.sobre-section {
    background: var(--light-bg);
    padding: 80px 24px;
}

.sobre-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.sobre-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.sobre-text .btn-primary {
    margin-top: 8px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(0,0,0,0.06);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}


.map-placeholder {
    background: var(--light-bg);
    border-radius: 16px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed rgba(37,99,235,0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---- CONTATO ---- */
.contato-section {
    background: var(--navy);
    padding: 80px 24px;
}

.contato-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contato-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contato-text p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

form.contato-form {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.contato-form input,
.contato-form textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px 18px;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: var(--accent-light);
}

.btn-form {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}

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

/* ---- FOOTER ---- */
footer {
    background: #060D1A;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    font-size: 0.95rem;
}

footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 768px) {
    nav { display: none; }

    .hero { padding: 60px 20px; min-height: auto; }
    .hero-shape { display: none; }

    .diferenciais-inner {
        grid-template-columns: 1fr;
    }

    .servicos-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
