:root {
    --primary: #002D5C;
    --secondary: #1B5E20;
    --accent: #2196F3;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --white: #ffffff;
    --gradient-brand: linear-gradient(135deg, #002D5C 0%, #1B5E20 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
    left: 0;
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: min(200px, 52vw);
    object-fit: contain;
    display: block;
}

.logo-img--footer {
    height: 40px;
    max-width: 180px;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 998;
}

.nav-backdrop[hidden] {
    display: none !important;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--secondary);
}

.nav-links a[aria-current="page"] {
    color: var(--secondary);
    font-weight: 700;
}

.nav-cta {
    margin-left: 0.25rem;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 0.75rem;
    background: rgba(0, 45, 92, 0.08);
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    transition: background 0.2s;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 45, 92, 0.14);
}

.mobile-menu-toggle .icon-close {
    display: none;
}

body.menu-open .mobile-menu-toggle .icon-menu {
    display: none;
}

body.menu-open .mobile-menu-toggle .icon-close {
    display: block;
}

/* Hero Section */
.hero {
    padding: 11rem 0 6rem;
    background: radial-gradient(circle at top right, #e2e8f0 0%, #ffffff 55%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(0, 45, 92, 0.08);
    color: var(--primary);
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.hero-text h1 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 34rem;
}

.hero-text p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
}

.stat-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 45, 92, 0.2);
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 45, 92, 0.28);
}

.btn-secondary {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: scale(1.03);
}

/* Visuals */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 1.75rem;
    padding: 0.75rem;
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.1);
    transform: rotate(1.5deg);
    position: relative;
}

.hero-card img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -1rem;
    left: -0.5rem;
    background: var(--white);
    padding: 0.85rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    max-width: calc(100% - 1rem);
}

.floating-badge i {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Solutions */
.solutions {
    padding: 5.5rem 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.solutions-grid--full {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Carrossel de módulos (horizontal, loop infinito) */
.solutions-carousel {
    overflow: hidden;
    width: 100%;
    padding: 0.75rem 0 1.25rem;
    margin-top: 0.25rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.solutions-carousel--static {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
}

.solutions-carousel--static .solutions-carousel__track {
    animation: none !important;
    transform: none !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.solutions-carousel__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.75rem;
    width: max-content;
    animation: solutions-carousel-marquee 85s linear infinite;
    will-change: transform;
}

.solutions-carousel:not(.solutions-carousel--static):hover .solutions-carousel__track,
.solutions-carousel:not(.solutions-carousel--static):focus-within .solutions-carousel__track {
    animation-play-state: paused;
}

@keyframes solutions-carousel-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.solutions-carousel .solution-card {
    flex: 0 0 min(340px, 88vw);
    max-width: 360px;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .solutions-carousel:not(.solutions-carousel--static) .solutions-carousel__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        transform: none;
    }

    .solutions-carousel:not(.solutions-carousel--static) {
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .solutions-carousel:not(.solutions-carousel--static) .solution-card {
        flex: 1 1 280px;
        max-width: 400px;
    }
}

.solution-card {
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.icon.bg-blue { background: #E3F2FD; color: #1565C0; }
.icon.bg-green { background: #E8F5E9; color: #2E7D32; }
.icon.bg-navy { background: #ECEFF1; color: #455A64; }
.icon.bg-violet { background: #EDE7F6; color: #5E35B1; }
.icon.bg-teal { background: #E0F2F1; color: #00695C; }
.icon.bg-amber { background: #FFF8E1; color: #F57F17; }
.icon.bg-indigo { background: #E8EAF6; color: #3949AB; }
.icon.bg-sky { background: #E1F5FE; color: #0277BD; }
.icon.bg-slate { background: #ECEFF1; color: #37474F; }
.icon.bg-rose { background: #FCE4EC; color: #AD1457; }

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    color: var(--primary);
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.features-list li i {
    color: var(--secondary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Diferenciais */
.diferenciais {
    padding: 5rem 0;
    background: var(--white);
}

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

.diff-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.diff-card:hover {
    border-color: rgba(0, 45, 92, 0.2);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.diff-card > i {
    width: 40px;
    height: 40px;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.diff-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-box {
    background: var(--gradient-brand);
    border-radius: 2rem;
    padding: 3.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 36rem;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    opacity: 0.94;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.cta-icon {
    font-size: 8rem;
    opacity: 0.12;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-icon i {
    width: 1em;
    height: 1em;
}

/* Footer */
.footer {
    background: #0F172A;
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info p {
    color: #94A3B8;
    font-size: 0.95rem;
    max-width: 22rem;
    line-height: 1.6;
}

.footer-nav h4, .footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-nav a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #94A3B8;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.65rem;
    background: rgba(148, 163, 184, 0.12);
    color: #94A3B8;
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: rgba(148, 163, 184, 0.22);
    color: var(--white);
}

.social-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.65rem;
    background: rgba(148, 163, 184, 0.08);
    color: #64748B;
    cursor: default;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #1E293B;
    color: #64748B;
    font-size: 0.875rem;
}

.footer-copy {
    margin-bottom: 0.5rem;
}

.footer-dev {
    margin: 0;
    color: #94A3B8;
}

.footer-dev a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-dev a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.75s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.9s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-card { transform: rotate(0); max-width: 520px; margin: 0 auto; }
    .floating-badge { left: 0.75rem; right: 0.75rem; bottom: -0.75rem; max-width: none; }
    .solutions-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .solutions-grid--full { max-width: none; width: 100%; margin: 0; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; text-align: center; padding: 2.5rem 1.75rem; }
    .cta-icon { display: none; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 320px);
        height: 100vh;
        margin: 0;
        padding: 5rem 1.5rem 2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links a:not(.btn-primary) {
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    body.menu-open .nav-links {
        transform: translateX(0);
    }

    body.menu-open {
        overflow: hidden;
    }

    .diferenciais-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .vision-grid { grid-template-columns: 1fr; }
    .deliver-grid { grid-template-columns: 1fr; }
    .diff-checklist { grid-template-columns: 1fr; }
    .about-cta-bar__inner { flex-direction: column; text-align: center; }
}

/* ——— Página Sobre ——— */
.page-sobre .navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.page-sobre .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.about-hero {
    position: relative;
    min-height: min(52vh, 480px);
    display: flex;
    align-items: flex-end;
    padding: 7.5rem 0 3.5rem;
    margin-bottom: 0;
}

.about-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(0, 45, 92, 0.55) 0%, rgba(0, 45, 92, 0.88) 55%, rgba(15, 23, 42, 0.95) 100%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 40rem;
}

.about-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.about-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-hero__lead {
    font-size: 1.15rem;
    line-height: 1.65;
    opacity: 0.95;
}

.about-hero__lead strong {
    font-weight: 700;
    color: #e2e8f0;
}

.about-main {
    padding-bottom: 0;
}

.about-intro {
    padding: 4rem 0;
    background: var(--white);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-split__text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.about-split__text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-split__text p:last-child {
    margin-bottom: 0;
}

.about-split__text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-split__figure {
    margin: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.about-split__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.about-mission {
    padding: 2rem 0 4rem;
    background: var(--bg-light);
}

.mission-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem 2.5rem 2.5rem 2.25rem;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    max-width: 52rem;
    margin: 0 auto;
}

.mission-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: rgba(27, 94, 32, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.mission-card__icon i {
    width: 26px;
    height: 26px;
}

.mission-card h2 {
    font-size: 1.65rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.mission-card__text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.mission-card__text strong {
    color: var(--text-dark);
}

.about-delivers {
    padding: 4rem 0;
    background: var(--white);
}

.about-section-head {
    max-width: 36rem;
}

.deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.deliver-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1.15rem;
    border: 1px solid #e2e8f0;
    background: var(--bg-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.deliver-card:hover {
    border-color: rgba(0, 45, 92, 0.2);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.deliver-card > i {
    width: 28px;
    height: 28px;
    color: var(--secondary);
    margin-bottom: 0.85rem;
}

.deliver-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.deliver-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.about-diff {
    padding: 4rem 0;
    background: var(--bg-light);
}

.diff-checklist {
    list-style: none;
    max-width: 52rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 2rem;
}

.diff-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.diff-checklist li > i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--secondary);
    margin-top: 0.1rem;
}

.about-audience {
    padding: 4rem 0;
    background: var(--white);
}

.audience-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    max-width: 52rem;
    margin: 0 auto 1rem;
}

.audience-chip {
    display: inline-block;
    padding: 0.55rem 1rem;
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.audience-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 40rem;
    margin: 0 auto;
}

.about-name {
    padding: 4rem 0;
    background: var(--bg-light);
}

.name-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.name-card {
    padding: 1.6rem 1.35rem;
    border-radius: 1.1rem;
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.name-card > i {
    width: 28px;
    height: 28px;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.name-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.45rem;
}

.name-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.58;
    margin: 0;
}

.name-card strong {
    color: var(--text-dark);
}

.name-manifesto {
    margin: 1.25rem auto 0;
    max-width: 58rem;
    border-left: 4px solid var(--secondary);
    background: #f1f5f9;
    border-radius: 0.75rem;
    padding: 1rem 1.1rem;
}

.name-manifesto p {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.98rem;
}

.about-vision-block {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
}

.vision-panel {
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: var(--white);
}

.vision-panel--accent {
    background: linear-gradient(145deg, #002D5C 0%, #0f2847 100%);
    border: none;
    color: var(--white);
}

.vision-panel--accent p {
    opacity: 0.92;
}

.vision-panel > i {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.vision-panel--accent > i {
    color: #86efac;
}

.vision-panel h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Especificidade: cartão escuro — depois do h2 genérico para não ser sobrescrito */
.vision-panel--accent h2 {
    color: #ffffff;
}

.vision-panel p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.vision-panel--accent p {
    color: #f1f5f9;
}

.vision-panel strong {
    color: inherit;
    font-weight: 700;
}

.about-slogan {
    padding: 3.5rem 0;
    background: var(--white);
}

.slogan-quote {
    margin: 0;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(0, 45, 92, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.slogan-quote__brand {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.slogan-quote__tagline {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.about-cta-bar {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.about-cta-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: var(--white);
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
}

.about-cta-bar__inner p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 36rem;
}

@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-split__figure {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

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

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