/* Visão SST Modern - identidade visual institucional */
:root {
    --visaosst-primary: #02a881;
    --visaosst-primary-dark: #01765f;
    --visaosst-lime: #70ba02;
    --visaosst-navy: #0d2723;
    --visaosst-navy-2: #123b35;
    --visaosst-soft: #f3fbf8;
    --visaosst-text: #263238;
    --visaosst-muted: #63706d;
    --visaosst-border: rgba(13, 39, 35, .10);
    --visaosst-radius: 24px;
    --visaosst-shadow: 0 18px 45px rgba(13, 39, 35, .12);
}

body.header-6.flavita-theme,
body {
    color: var(--visaosst-text);
}

a,
.site-title,
.menubar .menu-wrap > li > a:hover,
.menubar .menu-wrap > li.current-menu-item > a {
    color: var(--visaosst-primary);
}

.av-container {
    max-width: 1180px;
}

.header.header-seven .navbar-area {
    background: linear-gradient(135deg, var(--visaosst-navy) 0%, var(--visaosst-primary-dark) 100%);
}

.header.header-seven .navbar-full {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}

.header.header-seven .navbar-area .menu-right.menu-left:before {
    background: rgba(255,255,255,.94);
    border-radius: 0 0 0 24px;
}

.header .logo img,
.custom-logo {
    max-height: 82px;
    width: auto;
}

.header.header-seven .navbar-area .menubar .menu-wrap > li > a {
    font-weight: 700;
    letter-spacing: .01em;
}

.av-btn,
.visaosst-btn,
button,
input[type="submit"] {
    border-radius: 999px;
}

.visaosst-home {
    overflow: hidden;
    background: #fff;
}

.visaosst-hero {
    position: relative;
    padding: clamp(72px, 9vw, 128px) 0 clamp(48px, 8vw, 96px);
    background:
        radial-gradient(circle at top right, rgba(112, 186, 2, .20), transparent 34%),
        radial-gradient(circle at left 20%, rgba(2, 168, 129, .18), transparent 30%),
        linear-gradient(135deg, #f7fffc 0%, #ffffff 46%, #eefaf4 100%);
}

.visaosst-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(13,39,35,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13,39,35,.045) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 82%);
    pointer-events: none;
}

.visaosst-hero__grid,
.visaosst-about-grid,
.visaosst-cta__box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.visaosst-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--visaosst-primary-dark);
    background: rgba(2, 168, 129, .10);
    border: 1px solid rgba(2, 168, 129, .16);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.visaosst-eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--visaosst-lime);
    box-shadow: 0 0 0 6px rgba(112, 186, 2, .12);
}

.visaosst-hero h1,
.visaosst-section h2,
.visaosst-cta h2 {
    color: var(--visaosst-navy);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.visaosst-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 76px);
}

.visaosst-hero p,
.visaosst-section__heading p,
.visaosst-about-grid p,
.visaosst-cta p {
    color: var(--visaosst-muted);
    font-size: 18px;
    line-height: 1.75;
}

.visaosst-hero__content > p {
    max-width: 720px;
    margin-bottom: 28px;
}

.visaosst-hero__actions,
.visaosst-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.visaosst-hero__badges {
    margin-top: 28px;
    color: var(--visaosst-navy-2);
    font-weight: 700;
}

.visaosst-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.visaosst-hero__badges i {
    color: var(--visaosst-primary);
}

.visaosst-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.visaosst-btn:hover,
.visaosst-btn:focus {
    transform: translateY(-2px);
    text-decoration: none;
}

.visaosst-btn--primary {
    background: linear-gradient(135deg, var(--visaosst-primary) 0%, var(--visaosst-lime) 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(2, 168, 129, .28);
}

.visaosst-btn--primary:hover,
.visaosst-btn--primary:focus {
    color: #fff;
    box-shadow: 0 22px 44px rgba(2, 168, 129, .34);
}

.visaosst-btn--ghost {
    color: var(--visaosst-navy);
    background: rgba(255,255,255,.76);
    border: 1px solid var(--visaosst-border);
}

.visaosst-panel {
    position: relative;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(13,39,35,.98), rgba(1,118,95,.94));
    color: #fff;
    box-shadow: var(--visaosst-shadow);
    overflow: hidden;
}

.visaosst-panel:after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(112, 186, 2, .28);
}

.visaosst-panel__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 22px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 30px;
}

.visaosst-panel h2 {
    position: relative;
    max-width: 420px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.14;
}

.visaosst-panel ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.visaosst-panel li {
    padding: 12px 0 12px 32px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.86);
}

.visaosst-panel li:before {
    content: "✓";
    position: absolute;
    margin-left: -32px;
    color: var(--visaosst-lime);
    font-weight: 900;
}

.visaosst-strip {
    position: relative;
    margin-top: -30px;
    z-index: 2;
}

.visaosst-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--visaosst-shadow);
    background: var(--visaosst-border);
}

.visaosst-strip__grid > div {
    padding: 26px 24px;
    background: #fff;
}

.visaosst-strip strong {
    display: block;
    color: var(--visaosst-navy);
    font-size: 24px;
    line-height: 1;
}

.visaosst-strip span {
    display: block;
    margin-top: 8px;
    color: var(--visaosst-muted);
}

.visaosst-section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.visaosst-section--soft {
    background: var(--visaosst-soft);
}

.visaosst-section__heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.visaosst-section h2,
.visaosst-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4.4vw, 52px);
}

.visaosst-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.visaosst-service-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--visaosst-border);
    border-radius: var(--visaosst-radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 39, 35, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.visaosst-service-card:hover,
.visaosst-service-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(2, 168, 129, .28);
    box-shadow: var(--visaosst-shadow);
}

.visaosst-service-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--visaosst-primary-dark);
    background: rgba(2, 168, 129, .10);
    font-size: 24px;
}

.visaosst-service-card h3 {
    margin: 0 0 12px;
    color: var(--visaosst-navy);
    font-size: 22px;
    font-weight: 900;
}

.visaosst-service-card p {
    margin: 0;
    color: var(--visaosst-muted);
    line-height: 1.7;
}

.visaosst-about-grid {
    grid-template-columns: .78fr 1fr;
}

.visaosst-steps {
    display: grid;
    gap: 18px;
}

.visaosst-steps > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 39, 35, .07);
}

.visaosst-steps span {
    grid-row: span 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--visaosst-navy);
    font-weight: 900;
}

.visaosst-steps strong {
    color: var(--visaosst-navy);
    font-size: 20px;
}

.visaosst-steps p {
    margin: 0;
    font-size: 16px;
}

.visaosst-cta {
    padding: 34px 0 clamp(76px, 8vw, 116px);
}

.visaosst-cta__box {
    grid-template-columns: 1fr auto;
    padding: clamp(34px, 5vw, 58px);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(112, 186, 2, .34), transparent 34%),
        linear-gradient(135deg, var(--visaosst-navy), var(--visaosst-primary-dark));
    box-shadow: var(--visaosst-shadow);
}

.visaosst-cta__box h2,
.visaosst-cta__box p {
    color: #fff;
}

.visaosst-cta__box p {
    max-width: 700px;
    color: rgba(255,255,255,.82);
}

.visaosst-blog-preview {
    padding-top: 0;
}

.visaosst-post-card {
    min-height: auto;
}

.visaosst-post-card__thumb {
    display: block;
    margin: -30px -30px 22px;
    overflow: hidden;
    border-radius: var(--visaosst-radius) var(--visaosst-radius) 0 0;
}

.visaosst-post-card__thumb img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.visaosst-post-card h3 a {
    color: var(--visaosst-navy);
    text-decoration: none;
}

.visaosst-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 16px 34px rgba(18, 140, 126, .32);
    font-size: 28px;
    text-decoration: none;
}

.visaosst-floating-whatsapp:hover,
.visaosst-floating-whatsapp:focus {
    color: #fff;
    transform: translateY(-2px);
}

.footer-two.footer-section {
    background: var(--visaosst-navy);
}

.footer-two .footer-copyright {
    background: #071917;
}

.footer-two .footer-info-overwrap .icon {
    background: linear-gradient(135deg, var(--visaosst-primary), var(--visaosst-lime));
}

@media (max-width: 991px) {
    .visaosst-hero__grid,
    .visaosst-about-grid,
    .visaosst-cta__box {
        grid-template-columns: 1fr;
    }

    .visaosst-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .visaosst-hero {
        padding-top: 56px;
    }

    .visaosst-hero__actions,
    .visaosst-hero__actions .visaosst-btn {
        width: 100%;
    }

    .visaosst-services-grid,
    .visaosst-strip__grid {
        grid-template-columns: 1fr;
    }

    .visaosst-service-card,
    .visaosst-strip__grid > div,
    .visaosst-cta__box {
        padding: 24px;
    }

    .visaosst-steps > div {
        grid-template-columns: 1fr;
    }

    .visaosst-floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }
}

/* Páginas internas modernas */
.visaosst-inner-page {
    background: #fff;
    overflow: hidden;
}

.visaosst-page-intro {
    position: relative;
    padding: clamp(40px, 0vw, 40px) 0 clamp(42px, 6vw, 40px);
    background:
        radial-gradient(circle at 88% 8%, rgba(112, 186, 2, .20), transparent 32%),
        radial-gradient(circle at 10% 20%, rgba(2, 168, 129, .18), transparent 30%),
        linear-gradient(135deg, #f7fffc 0%, #ffffff 50%, #eefaf4 100%);
}

.visaosst-page-intro:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(13,39,35,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13,39,35,.045) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.70), transparent 88%);
    pointer-events: none;
}

.visaosst-page-intro__inner {
    position: relative;
    max-width: 880px;
}

.visaosst-page-intro h1 {
    margin: 0 0 18px;
    color: var(--visaosst-navy);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 900;
}

.visaosst-page-intro p {
    max-width: 760px;
    margin: 0;
    color: var(--visaosst-muted);
    font-size: 18px;
    line-height: 1.75;
}

.visaosst-content-section {
    padding-top: clamp(54px, 7vw, 88px);
}

.visaosst-content-card {
    position: relative;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--visaosst-border);
    box-shadow: 0 16px 42px rgba(13, 39, 35, .08);
}

.visaosst-content-card + .visaosst-content-card,
.visaosst-template-content + .visaosst-service-detail-grid {
    margin-top: 34px;
}

.visaosst-featured-image {
    margin: calc(clamp(28px, 5vw, 54px) * -1) calc(clamp(28px, 5vw, 54px) * -1) 34px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.visaosst-featured-image img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.visaosst-entry-content {
    color: var(--visaosst-text);
    font-size: 17px;
    line-height: 1.8;
}

.visaosst-entry-content h2,
.visaosst-entry-content h3,
.visaosst-entry-content h4 {
    color: var(--visaosst-navy);
    font-weight: 900;
    letter-spacing: -.02em;
}

.visaosst-entry-content h2 {
    margin-top: 1.2em;
    font-size: clamp(28px, 3vw, 40px);
}

.visaosst-entry-content h3 {
    font-size: clamp(23px, 2.4vw, 30px);
}

.visaosst-entry-content p,
.visaosst-entry-content li {
    color: var(--visaosst-text);
}

.visaosst-entry-content a {
    color: var(--visaosst-primary-dark);
    font-weight: 800;
}

.visaosst-entry-content blockquote {
    margin: 30px 0;
    padding: 24px 28px;
    border-left: 5px solid var(--visaosst-primary);
    border-radius: 18px;
    color: var(--visaosst-navy);
    background: var(--visaosst-soft);
}

.visaosst-entry-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 0 0 1px var(--visaosst-border);
}

.visaosst-entry-content th,
.visaosst-entry-content td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--visaosst-border);
}

.visaosst-entry-content th {
    color: #fff;
    background: var(--visaosst-navy);
}

.visaosst-blog-layout {
    max-width: 940px;
}

.visaosst-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 24px;
    color: var(--visaosst-muted);
    font-size: 14px;
    font-weight: 700;
}

.visaosst-post-meta a {
    color: var(--visaosst-primary-dark);
    text-decoration: none;
}

.visaosst-post-meta i {
    color: var(--visaosst-primary);
}

.visaosst-card-meta {
    margin-bottom: 14px;
}

.visaosst-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--visaosst-primary-dark);
    font-weight: 900;
    text-decoration: none;
}

.visaosst-read-more:hover,
.visaosst-read-more:focus {
    color: var(--visaosst-navy);
    text-decoration: none;
}

.visaosst-post-footer,
.visaosst-tags {
    margin-top: 34px;
}

.visaosst-tags span {
    margin-right: 8px;
    color: var(--visaosst-navy);
    font-weight: 900;
}

.post-navigation,
.comments-area {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--visaosst-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 39, 35, .06);
}

.post-navigation a {
    color: var(--visaosst-primary-dark);
    font-weight: 900;
    text-decoration: none;
}

.visaosst-pagination {
    margin-top: 38px;
    text-align: center;
}

.visaosst-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 4px;
    border-radius: 999px;
    color: var(--visaosst-navy);
    background: #fff;
    border: 1px solid var(--visaosst-border);
    font-weight: 800;
}

.visaosst-pagination .page-numbers.current,
.visaosst-pagination .page-numbers:hover {
    color: #fff;
    background: var(--visaosst-primary);
}

.visaosst-service-detail-card {
    min-height: auto;
}

.visaosst-service-detail-card h2 {
    margin: 0 0 12px;
    color: var(--visaosst-navy);
    font-size: 24px;
    font-weight: 900;
}

.visaosst-service-detail-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.visaosst-service-detail-card li {
    position: relative;
    padding: 9px 0 9px 28px;
    color: var(--visaosst-muted);
    border-top: 1px solid var(--visaosst-border);
}

.visaosst-service-detail-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--visaosst-primary);
    font-weight: 900;
}

.visaosst-process-grid,
.visaosst-contact-grid,
.visaosst-institutional-grid {
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.visaosst-process-grid h2,
.visaosst-contact-card h2,
.visaosst-form-card h2 {
    margin: 0 0 18px;
    color: var(--visaosst-navy);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.04em;
}

.visaosst-process-grid p,
.visaosst-contact-card p,
.visaosst-form-card p {
    color: var(--visaosst-muted);
    font-size: 17px;
    line-height: 1.75;
}

.visaosst-contact-grid {
    grid-template-columns: .82fr 1fr;
}

.visaosst-contact-list {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.visaosst-contact-list > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 2px 16px;
    padding: 18px;
    border-radius: 18px;
    background: var(--visaosst-soft);
    border: 1px solid rgba(2, 168, 129, .12);
}

.visaosst-contact-list i {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--visaosst-primary), var(--visaosst-lime));
    font-size: 20px;
}

.visaosst-contact-list strong {
    color: var(--visaosst-navy);
    font-size: 16px;
}

.visaosst-contact-list span {
    color: var(--visaosst-muted);
}

.visaosst-form-card input[type="text"],
.visaosst-form-card input[type="email"],
.visaosst-form-card input[type="tel"],
.visaosst-form-card input[type="url"],
.visaosst-form-card textarea,
.visaosst-form-card select,
.visaosst-empty-state input[type="search"] {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 16px;
    border: 1px solid var(--visaosst-border);
    background: #fff;
    color: var(--visaosst-text);
}

.visaosst-form-card textarea {
    min-height: 150px;
}

.visaosst-form-card input[type="submit"],
.visaosst-empty-state input[type="submit"],
.search-submit {
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--visaosst-primary), var(--visaosst-lime));
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(2, 168, 129, .22);
}

.visaosst-side-panel {
    position: sticky;
    top: 110px;
}

.visaosst-empty-state {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.visaosst-empty-state h2 {
    color: var(--visaosst-navy);
    font-weight: 900;
}

.visaosst-empty-state form {
    max-width: 560px;
    display: flex;
    gap: 10px;
    margin: 24px auto 0;
}

.visaosst-inner-cta {
    padding-top: 0;
}

@media (max-width: 991px) {
    .visaosst-process-grid,
    .visaosst-contact-grid,
    .visaosst-institutional-grid {
        grid-template-columns: 1fr;
    }

    .visaosst-side-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .visaosst-page-intro {
        padding-top: 48px;
    }

    .visaosst-content-card {
        padding: 24px;
        border-radius: 24px;
    }

    .visaosst-featured-image {
        margin: -24px -24px 24px;
        border-radius: 24px 24px 0 0;
    }

    .visaosst-empty-state form {
        display: block;
    }

    .visaosst-empty-state input[type="submit"],
    .search-submit {
        width: 100%;
        margin-top: 10px;
    }
}

/* v1.2 - Serviços da proposta comercial incorporados */
.visaosst-hero--proposal .visaosst-panel--checklist li {
    font-size: 16px;
}

.visaosst-left-heading {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.visaosst-services-grid--featured .visaosst-service-card {
    min-height: 280px;
}

.visaosst-split-grid,
.visaosst-exams-highlight__grid,
.visaosst-training-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
}

.visaosst-split-grid h2,
.visaosst-exams-highlight h2,
.visaosst-training-intro h2 {
    margin: 0 0 18px;
    color: var(--visaosst-navy);
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.04em;
}

.visaosst-split-grid p,
.visaosst-exams-highlight p,
.visaosst-training-intro p {
    color: var(--visaosst-muted);
    font-size: 17px;
    line-height: 1.75;
}

.visaosst-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.visaosst-tag-list span,
.visaosst-exams-cloud span,
.visaosst-exam-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--visaosst-navy);
    background: #fff;
    border: 1px solid var(--visaosst-border);
    box-shadow: 0 8px 20px rgba(13, 39, 35, .05);
    font-size: 14px;
    font-weight: 800;
}

.visaosst-dark-card {
    position: relative;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 32px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 90% 6%, rgba(112, 186, 2, .30), transparent 34%),
        linear-gradient(145deg, rgba(13,39,35,.98), rgba(1,118,95,.94));
    box-shadow: var(--visaosst-shadow);
}

.visaosst-dark-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
    font-weight: 900;
}

.visaosst-dark-card p {
    color: rgba(255,255,255,.82);
}

.visaosst-mini-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.visaosst-mini-list div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
}

.visaosst-mini-list i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--visaosst-navy);
    background: #fff;
}

.visaosst-mini-list span {
    color: #fff;
    font-weight: 900;
}

.visaosst-exams-highlight__grid {
    align-items: start;
}

.visaosst-exams-cloud,
.visaosst-exam-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.visaosst-exams-cloud {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 32px;
    border: 1px solid var(--visaosst-border);
    background:
        radial-gradient(circle at 10% 20%, rgba(2, 168, 129, .12), transparent 32%),
        #fff;
    box-shadow: var(--visaosst-shadow);
}

.visaosst-exams-cloud span,
.visaosst-exam-list span {
    color: var(--visaosst-primary-dark);
    background: rgba(2, 168, 129, .08);
    border-color: rgba(2, 168, 129, .16);
}

.visaosst-training-layout {
    grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
    align-items: start;
}

.visaosst-training-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.visaosst-training-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--visaosst-border);
    background: #fff;
    box-shadow: 0 10px 26px rgba(13, 39, 35, .06);
}

.visaosst-training-card strong {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--visaosst-primary), var(--visaosst-lime));
    font-size: 12px;
    letter-spacing: .06em;
}

.visaosst-training-card h3 {
    margin: 0 0 8px;
    color: var(--visaosst-navy);
    font-size: 19px;
    font-weight: 900;
}

.visaosst-training-card p {
    margin: 0;
    color: var(--visaosst-muted);
    line-height: 1.65;
}

.visaosst-project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.visaosst-project-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--visaosst-soft);
    border: 1px solid rgba(2, 168, 129, .14);
}

.visaosst-project-card i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--visaosst-primary-dark), var(--visaosst-primary));
    font-size: 22px;
}

.visaosst-project-card h3 {
    margin: 0 0 8px;
    color: var(--visaosst-navy);
    font-size: 21px;
    font-weight: 900;
}

.visaosst-project-card p {
    margin: 0;
    color: var(--visaosst-muted);
    line-height: 1.65;
}

.visaosst-incompany-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--visaosst-navy), var(--visaosst-primary-dark));
    box-shadow: var(--visaosst-shadow);
}

.visaosst-incompany-box h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
}

.visaosst-incompany-box p {
    margin: 0;
    color: rgba(255,255,255,.82);
}

.visaosst-exam-list--compact span {
    font-size: 13px;
}

.visaosst-steps--four > div {
    grid-template-columns: 72px 1fr;
}

@media (max-width: 991px) {
    .visaosst-split-grid,
    .visaosst-exams-highlight__grid,
    .visaosst-training-layout,
    .visaosst-incompany-box {
        grid-template-columns: 1fr;
    }

    .visaosst-training-grid,
    .visaosst-project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .visaosst-tag-list span,
    .visaosst-exams-cloud span,
    .visaosst-exam-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* v1.3 - Ajustes solicitados: header moderno, fontes mais equilibradas e sem últimos posts na home */
body.visaosst-menu-open {
    overflow: hidden;
}

.visaosst-modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(13, 39, 35, .08);
    box-shadow: 0 14px 40px rgba(13, 39, 35, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.admin-bar .visaosst-modern-header {
    top: 32px;
}

.visaosst-header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.visaosst-header-brand {
    flex: 0 0 auto;
    min-width: 185px;
}

.visaosst-header-brand .logo,
.visaosst-header-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.visaosst-header-brand .custom-logo {
    max-height: 58px;
    width: auto;
}

.visaosst-header-brand .site-title,
.visaosst-header-brand h4.site-title {
    margin: 0;
    color: var(--visaosst-navy);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.visaosst-header-brand .site-description {
    display: none;
}

.visaosst-header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.visaosst-menu,
.visaosst-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.visaosst-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.visaosst-menu > li {
    position: relative;
}

.visaosst-menu > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--visaosst-navy);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.visaosst-menu > li:hover > a,
.visaosst-menu > li.current-menu-item > a,
.visaosst-menu > li.current_page_item > a {
    color: var(--visaosst-primary-dark);
    background: rgba(2, 168, 129, .09);
}

.visaosst-menu li ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--visaosst-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(13, 39, 35, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.visaosst-menu li:hover > ul,
.visaosst-menu li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.visaosst-menu li ul a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--visaosst-navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.visaosst-menu li ul a:hover,
.visaosst-menu li ul a:focus {
    color: var(--visaosst-primary-dark);
    background: var(--visaosst-soft);
}

.visaosst-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.visaosst-header-phone,
.visaosst-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.visaosst-header-phone {
    padding: 10px 14px;
    color: var(--visaosst-primary-dark);
    background: rgba(2, 168, 129, .08);
    border: 1px solid rgba(2, 168, 129, .15);
}

.visaosst-header-cta {
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--visaosst-primary), var(--visaosst-lime));
    box-shadow: 0 12px 26px rgba(2, 168, 129, .22);
}

.visaosst-header-phone:hover,
.visaosst-header-phone:focus,
.visaosst-header-cta:hover,
.visaosst-header-cta:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.visaosst-header-cta:hover,
.visaosst-header-cta:focus {
    color: #fff;
    box-shadow: 0 16px 34px rgba(2, 168, 129, .30);
}

.visaosst-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--visaosst-border);
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
}

.visaosst-mobile-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--visaosst-navy);
    transition: transform .2s ease, opacity .2s ease;
}

.visaosst-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.visaosst-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.visaosst-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.visaosst-hero {
    padding: clamp(58px, 7vw, 102px) 0 clamp(42px, 6vw, 78px);
}

.visaosst-hero h1 {
    max-width: 680px;
    font-size: clamp(34px, 4.7vw, 58px);
    line-height: 1.08;
    letter-spacing: -.032em;
}

.visaosst-panel h2 {
    font-size: clamp(23px, 2.5vw, 32px);
    line-height: 1.16;
}

.visaosst-section {
    padding: clamp(58px, 7vw, 88px) 0;
}

.visaosst-section h2,
.visaosst-cta h2,
.visaosst-split-grid h2,
.visaosst-exams-highlight h2,
.visaosst-training-intro h2,
.visaosst-process-grid h2,
.visaosst-contact-card h2,
.visaosst-form-card h2 {
    font-size: clamp(28px, 3.35vw, 42px);
    line-height: 1.13;
    letter-spacing: -.028em;
}

.visaosst-page-intro h1 {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.visaosst-dark-card h3 {
    font-size: clamp(24px, 2.55vw, 34px);
    line-height: 1.14;
}

.visaosst-service-card h3,
.visaosst-project-card h3,
.visaosst-training-card h3,
.visaosst-service-detail-card h2 {
    font-size: clamp(18px, 1.55vw, 21px);
    line-height: 1.24;
    letter-spacing: -.012em;
}

.visaosst-hero p,
.visaosst-section__heading p,
.visaosst-about-grid p,
.visaosst-cta p,
.visaosst-page-intro p,
.visaosst-split-grid p,
.visaosst-exams-highlight p,
.visaosst-training-intro p,
.visaosst-process-grid p,
.visaosst-contact-card p,
.visaosst-form-card p {
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.68;
}

.visaosst-eyebrow {
    margin-bottom: 13px;
    padding: 7px 12px;
    font-size: 11px;
    letter-spacing: .075em;
}

.visaosst-service-card {
    min-height: 236px;
    padding: 26px;
}

.visaosst-services-grid--featured .visaosst-service-card {
    min-height: 250px;
}

.visaosst-strip__grid > div {
    padding: 22px 22px;
}

.visaosst-strip strong {
    font-size: 21px;
}

.visaosst-blog-preview,
#post-section.post-section.blog-home {
    display: none !important;
}

@media (max-width: 1120px) {
    .visaosst-header-phone span {
        display: none;
    }

    .visaosst-header-brand {
        min-width: 150px;
    }

    .visaosst-header-brand .custom-logo {
        max-height: 52px;
    }
}

@media (max-width: 991px) {
    .admin-bar .visaosst-modern-header {
        top: 46px;
    }

    .visaosst-modern-header {
        padding: 10px 0;
    }

    .visaosst-header-shell {
        position: relative;
    }

    .visaosst-header-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: block;
        max-height: calc(100vh - 100px);
        padding: 16px;
        border: 1px solid var(--visaosst-border);
        border-radius: 24px;
        background: rgba(255,255,255,.98);
        box-shadow: 0 24px 60px rgba(13, 39, 35, .16);
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .admin-bar .visaosst-header-nav {
        top: 112px;
    }

    .visaosst-header-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .visaosst-menu {
        display: grid;
        gap: 6px;
    }

    .visaosst-menu > li > a {
        width: 100%;
        justify-content: space-between;
        padding: 13px 14px;
        background: var(--visaosst-soft);
    }

    .visaosst-menu li ul {
        position: static;
        min-width: 0;
        margin: 6px 0 4px;
        padding: 6px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #fff;
    }

    .visaosst-mobile-toggle {
        display: block;
    }

    .visaosst-header-cta {
        display: none;
    }

    .visaosst-header-phone {
        width: 46px;
        height: 46px;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .admin-bar .visaosst-modern-header {
        top: 0;
    }

    .visaosst-header-brand .custom-logo {
        max-height: 46px;
    }

    .visaosst-header-brand {
        min-width: auto;
    }

    .visaosst-header-actions {
        gap: 8px;
    }

    .visaosst-hero h1 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .visaosst-section h2,
    .visaosst-cta h2,
    .visaosst-split-grid h2,
    .visaosst-exams-highlight h2,
    .visaosst-training-intro h2,
    .visaosst-page-intro h1 {
        font-size: clamp(26px, 8vw, 34px);
    }
}


/* ==========================================================
   Ajuste tipográfico v5 — fontes mais compactas e proporcionais
   ========================================================== */

body,
.visaosst-home,
.visaosst-page,
.visaosst-template,
.entry-content {
    font-size: 15px;
    line-height: 1.62;
}

.visaosst-modern-header {
    padding: 8px 0;
}

.visaosst-header-shell {
    min-height: 64px;
}

.visaosst-header-brand .custom-logo,
.visaosst-modern-header .custom-logo,
.visaosst-header-logo img {
    max-height: 52px;
}

.visaosst-menu > li > a {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 12.5px;
    font-weight: 800;
}

.visaosst-menu li ul a {
    padding: 8px 10px;
    font-size: 12.5px;
}

.visaosst-header-phone,
.visaosst-header-cta {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 850;
}

.visaosst-mobile-toggle {
    width: 40px;
    height: 40px;
}

.visaosst-hero {
    padding: clamp(48px, 5.5vw, 78px) 0 clamp(34px, 4.5vw, 58px);
}

.visaosst-hero h1 {
    max-width: 610px;
    margin-bottom: 16px;
    font-size: clamp(28px, 3.4vw, 43px);
    line-height: 1.14;
    letter-spacing: -.026em;
}

.visaosst-hero p,
.visaosst-hero__content > p,
.visaosst-section__heading p,
.visaosst-about-grid p,
.visaosst-cta p,
.visaosst-page-intro p,
.visaosst-split-grid p,
.visaosst-exams-highlight p,
.visaosst-training-intro p,
.visaosst-process-grid p,
.visaosst-contact-card p,
.visaosst-form-card p,
.visaosst-service-card p,
.visaosst-project-card p,
.visaosst-training-card p {
    font-size: clamp(14px, 1.05vw, 15.5px);
    line-height: 1.62;
}

.visaosst-eyebrow {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: .065em;
}

.visaosst-section {
    padding: clamp(44px, 5.5vw, 68px) 0;
}

.visaosst-section h2,
.visaosst-cta h2,
.visaosst-split-grid h2,
.visaosst-exams-highlight h2,
.visaosst-training-intro h2,
.visaosst-process-grid h2,
.visaosst-contact-card h2,
.visaosst-form-card h2 {
    font-size: clamp(22px, 2.25vw, 31px);
    line-height: 1.18;
    letter-spacing: -.018em;
}

.visaosst-page-intro h1 {
    font-size: clamp(24px, 2.9vw, 36px);
    line-height: 1.16;
    letter-spacing: -.02em;
}

.visaosst-panel h2 {
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.18;
}

.visaosst-dark-card h3 {
    font-size: clamp(19px, 1.9vw, 25px);
    line-height: 1.18;
}

.visaosst-service-card h3,
.visaosst-project-card h3,
.visaosst-training-card h3,
.visaosst-service-detail-card h2,
.visaosst-post-card h3,
.visaosst-feature-card h3,
.visaosst-process-card h3 {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.28;
    letter-spacing: -.006em;
}

.visaosst-panel p,
.visaosst-panel li,
.visaosst-service-card li,
.visaosst-service-detail-card li,
.visaosst-project-card li,
.visaosst-training-card li,
.visaosst-process-card li {
    font-size: 14px;
    line-height: 1.58;
}

.visaosst-btn {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 13px;
}

.visaosst-card,
.visaosst-service-card,
.visaosst-project-card,
.visaosst-training-card,
.visaosst-service-detail-card {
    padding: 22px;
}

.visaosst-service-card {
    min-height: 206px;
}

.visaosst-services-grid--featured .visaosst-service-card {
    min-height: 218px;
}

.visaosst-strip__grid > div {
    padding: 18px 18px;
}

.visaosst-strip strong {
    font-size: 17px;
}

.visaosst-strip span,
.visaosst-tag,
.visaosst-exam-pill,
.visaosst-badge {
    font-size: 12px;
}

@media (max-width: 991px) {
    .visaosst-header-shell {
        min-height: 58px;
    }

    .visaosst-header-brand .custom-logo,
    .visaosst-modern-header .custom-logo,
    .visaosst-header-logo img {
        max-height: 44px;
    }

    .visaosst-header-nav {
        top: 68px;
        padding: 13px;
    }

    .visaosst-menu > li > a {
        min-height: 40px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .visaosst-header-phone {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }
}

@media (max-width: 640px) {
    body,
    .visaosst-home,
    .visaosst-page,
    .entry-content {
        font-size: 14.5px;
    }

    .visaosst-hero {
        padding: 42px 0 34px;
    }

    .visaosst-hero h1 {
        font-size: clamp(25px, 7.4vw, 32px);
        line-height: 1.16;
    }

    .visaosst-section h2,
    .visaosst-cta h2,
    .visaosst-split-grid h2,
    .visaosst-exams-highlight h2,
    .visaosst-training-intro h2,
    .visaosst-page-intro h1,
    .visaosst-contact-card h2,
    .visaosst-form-card h2 {
        font-size: clamp(21px, 6.2vw, 27px);
        line-height: 1.18;
    }

    .visaosst-service-card h3,
    .visaosst-project-card h3,
    .visaosst-training-card h3,
    .visaosst-service-detail-card h2 {
        font-size: 16px;
    }

    .visaosst-hero p,
    .visaosst-section__heading p,
    .visaosst-page-intro p,
    .visaosst-cta p {
        font-size: 14px;
        line-height: 1.58;
    }

    .visaosst-btn {
        min-height: 42px;
        padding: 10px 15px;
        font-size: 12.5px;
    }

    .visaosst-card,
    .visaosst-service-card,
    .visaosst-project-card,
    .visaosst-training-card,
    .visaosst-service-detail-card {
        padding: 18px;
    }
}


/* Cards editáveis pelo painel */
.visaosst-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--visaosst-primary-dark);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
}

.visaosst-card-link:after {
    content: "\f178";
    font-family: FontAwesome;
    font-size: .8rem;
    transition: transform .2s ease;
}

.visaosst-card-link:hover {
    color: var(--visaosst-primary);
}

.visaosst-card-link:hover:after {
    transform: translateX(4px);
}

/* Rodapé moderno editável */
.visaosst-footer-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071c19 0%, #0d302a 48%, #063d32 100%);
    color: rgba(255,255,255,.82);
    margin-top: 0;
}

.visaosst-footer-modern:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(112,186,2,.20), transparent 32%),
        radial-gradient(circle at 94% 0%, rgba(2,168,129,.22), transparent 34%);
    pointer-events: none;
}

.visaosst-footer-modern a {
    color: rgba(255,255,255,.86);
    text-decoration: none;
}

.visaosst-footer-modern a:hover {
    color: #fff;
}

.visaosst-footer-modern__top,
.visaosst-footer-modern__main,
.visaosst-footer-modern__bottom {
    position: relative;
    z-index: 1;
}

.visaosst-footer-modern__top {
    padding: 38px 0 0;
}

.visaosst-footer-modern__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 26px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 24px 55px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}

.visaosst-footer-modern__cta .visaosst-eyebrow {
    color: #9be685;
}

.visaosst-footer-modern__cta h2 {
    color: #fff;
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    line-height: 1.15;
    margin: 6px 0 10px;
}

.visaosst-footer-modern__cta p {
    max-width: 680px;
    color: rgba(255,255,255,.78);
    font-size: .96rem;
    margin: 0;
}

.visaosst-footer-modern__main {
    padding: clamp(42px, 6vw, 68px) 0 34px;
}

.visaosst-footer-modern__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr .85fr 1.1fr;
    gap: clamp(24px, 4vw, 44px);
    align-items: start;
}

.visaosst-footer-modern__logo {
    display: inline-flex;
    align-items: center;
    max-width: 210px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    margin-bottom: 18px;
}

.visaosst-footer-modern__logo img {
    max-width: 170px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.visaosst-footer-modern__brand h3,
.visaosst-footer-modern__col h3,
.visaosst-footer-modern__contact h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 16px;
}

.visaosst-footer-modern__brand p {
    margin: 0 0 20px;
    font-size: .92rem;
    line-height: 1.72;
    color: rgba(255,255,255,.74);
}

.visaosst-footer-modern__social {
    display: flex;
    gap: 10px;
}

.visaosst-footer-modern__social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.10);
}

.visaosst-footer-modern__social a:hover {
    background: var(--visaosst-primary);
    border-color: var(--visaosst-primary);
}

.visaosst-footer-modern__col ul,
.visaosst-footer-modern__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visaosst-footer-modern__col li,
.visaosst-footer-modern__menu li {
    margin-bottom: 10px;
    font-size: .9rem;
    line-height: 1.35;
}

.visaosst-footer-modern__contact {
    display: grid;
    gap: 12px;
}

.visaosst-footer-modern__contact > div {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: start;
    font-size: .9rem;
    line-height: 1.55;
}

.visaosst-footer-modern__contact i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #9be685;
    background: rgba(255,255,255,.09);
}

.visaosst-footer-modern__bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 18px 0;
}

.visaosst-footer-modern__bottom .av-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.visaosst-footer-modern__bottom p,
.visaosst-footer-modern__bottom span {
    margin: 0;
    font-size: .82rem;
    color: rgba(255,255,255,.62);
}

@media (max-width: 991px) {
    .visaosst-footer-modern__cta,
    .visaosst-footer-modern__bottom .av-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .visaosst-footer-modern__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .visaosst-footer-modern__grid {
        grid-template-columns: 1fr;
    }

    .visaosst-footer-modern__cta {
        border-radius: 20px;
    }
}

/* Ajuste de contatos - versão 1.6.0 */
.visaosst-contact-list {
    gap: 12px;
}
.visaosst-contact-list > div {
    padding: 10px;
    grid-template-columns: 35px 1fr;
}
.visaosst-contact-list i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
}
.visaosst-contact-list strong {
    font-size: 14px;
}
.visaosst-contact-list span {
    font-size: 14px;
    line-height: 1.35;
    word-break: break-word;
}
.visaosst-footer-modern__contact {
    gap: 9px;
}
.visaosst-footer-modern__contact > div {
    font-size: .82rem;
    line-height: 1.4;
}
.visaosst-footer-modern__contact span {
    word-break: break-word;
}
