﻿:root {
    --fc-primary: #2563EB;
    --fc-primary-hover: #1D4ED8;
    --fc-dark: #13203B;
    --fc-dark-2: #0F1B32;
    --fc-text: #0F172A;
    --fc-text-soft: #475569;
    --fc-text-muted: #64748B;
    --fc-border: #E2E8F0;
    --fc-border-soft: #EDF2F7;
    --fc-bg: #F4F7FB;
    --fc-card: #FFFFFF;
    --fc-card-soft: #F8FAFC;
    --fc-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
    --fc-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.07);
    --fc-radius-sm: 10px;
    --fc-radius-md: 16px;
    --fc-radius-lg: 22px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--fc-bg);
    color: var(--fc-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: var(--fc-primary);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.fc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fc-menu-toggle {
    display: none;
}

.fc-header-mobile-note {
    display: none;
}

/* HEADER */
.fc-header {
    background: linear-gradient(180deg, #13203B 0%, #0F1B32 100%);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(15,23,42,.12);
}

.fc-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fc-logo img {
    display: block;
    height: 104px;
    width: auto;
}

.fc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.fc-nav-item {
    position: relative;
}

.fc-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    color: #E2E8F0;
    font-size: 14px;
    font-weight: 500;
    transition: background .18s ease, color .18s ease;
    white-space: nowrap;
    cursor: default;
}

.fc-nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 14px;
}

.fc-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    background: #FFFFFF;
    border: 1px solid var(--fc-border);
    border-radius: 14px;
    box-shadow: var(--fc-shadow-md);
    padding: 10px;
    display: none;
    z-index: 200;
}

.fc-submenu-link {
    display: block;
    padding: 8px 11px;
    border-radius: 10px;
    color: var(--fc-text);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
    transition: background .18s ease, color .18s ease;
}

.fc-nav-item:hover .fc-submenu,
.fc-nav-item:focus-within .fc-submenu,
.fc-submenu:hover {
    display: block;
}

.fc-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

/* MAIN */
.fc-main {
    min-height: 60vh;
}

/* PAGE */
.fc-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px 56px;
}

/* TOPBAR */
.fc-topbar {
    background: #13203B;
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 600;
}

/* HERO */
.fc-hero {
    padding: 24px 0 30px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--fc-border);
    text-align: center;
}

    .fc-hero h1 {
        margin: 0 auto 10px;
        color: var(--fc-text);
        font-size: 38px;
        line-height: 1.12;
        font-weight: 800;
        letter-spacing: -0.025em;
        max-width: 900px;
    }

    .fc-hero p {
        margin: 0 auto;
        color: var(--fc-text-soft);
        font-size: 17px;
        line-height: 1.65;
        max-width: 780px;
    }

/* INTRO TOPO */
.fc-intro-note {
    margin: 0 0 22px;
}

    .fc-intro-note p:last-child {
        margin-bottom: 0;
    }

.fc-intro-main {
    color: var(--fc-text);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

.fc-intro-helper {
    color: var(--fc-text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.fc-intro-transparency {
    color: var(--fc-text-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* EDITORIAL WRAP */
.fc-editorial-wrap {
    width: 100%;
    max-width: none;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

    .fc-editorial-wrap .fc-inst-section {
        width: 100%;
        max-width: none;
        margin: 0;
    }

        .fc-editorial-wrap .fc-inst-section p,
        .fc-editorial-wrap .fc-inst-section ul,
        .fc-editorial-wrap .fc-inst-section ol {
            color: var(--fc-text-soft);
            font-size: 15px;
            line-height: 1.75;
        }

        .fc-editorial-wrap .fc-inst-section ul,
        .fc-editorial-wrap .fc-inst-section ol {
            margin: 0 0 14px 20px;
            padding: 0;
        }

        .fc-editorial-wrap .fc-inst-section li {
            margin-bottom: 8px;
        }

        .fc-editorial-wrap .fc-inst-section strong {
            color: var(--fc-text);
        }

/* SECTION */
.fc-section {
    margin: 0 0 46px;
}

.fc-section-head {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.fc-section-title-wrap {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

    .fc-section-title-wrap h2 {
        margin: 0 0 6px;
        color: var(--fc-text);
        font-size: 26px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .fc-section-title-wrap p {
        margin: 0 auto;
        color: var(--fc-text-soft);
        font-size: 15px;
        line-height: 1.65;
        max-width: 820px;
    }

/* GRID */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

    /* 1 card no desktop */
    .fc-grid:has(> .fc-card:only-child) {
        grid-template-columns: minmax(280px, 360px);
        justify-content: center;
    }

    /* 2 cards no desktop */
    .fc-grid:has(> .fc-card:first-child:nth-last-child(2)),
    .fc-grid:has(> .fc-card:first-child:nth-last-child(2) ~ .fc-card) {
        grid-template-columns: repeat(2, minmax(280px, 360px));
        justify-content: center;
    }

/* CARD */
.fc-card {
    background: var(--fc-card);
    border: 1px solid var(--fc-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--fc-shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .fc-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
        border-color: #D6E0EB;
    }

.fc-card-image-wrap {
    background: var(--fc-card-soft);
    padding: 18px 18px 10px;
    text-align: center;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .fc-card-image-wrap img {
        max-width: 100%;
        max-height: 182px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

.fc-card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.fc-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: #EAF2FF;
    color: #2563EB;
    border: 1px solid #D5E5FF;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 999px;
    margin-bottom: 2px;
}

.fc-card-title {
    margin: 0;
    color: var(--fc-text);
    font-size: 16px;
    line-height: 1.42;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 68px;
    letter-spacing: 0;
    word-spacing: 0.03em;
}

.fc-card-highlight {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    overflow: visible;
    display: block;
    min-height: 0;
}

.fc-card-desc {
    margin: 0 0 4px;
    color: var(--fc-text-soft);
    font-size: 13px;
    line-height: 1.62;
    flex: 0 0 auto;
    overflow: visible;
    display: block;
    min-height: 0;
}

/* REVIEW E OFERTA */
.fc-card-review {
    margin-top: 8px;
}

.fc-card-review-text {
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
    color: var(--fc-text-soft);
    margin-bottom: 8px;
}

.fc-offer-box {
    margin-top: 10px;
    padding-top: 2px;
}

.fc-card-actions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.fc-card-actions-secondary {
    margin-top: 8px;
}

.fc-card-actions-offer {
    margin-top: 6;
    margin-bottom: 0px;
}

.fc-card-actions .fc-btn-primary,
.fc-card-actions .fc-btn-secondary {
    min-width: 190px;
}

/* PREÇO */
.fc-price-wrap {
    margin-top: 0;
    text-align: center;
}

.fc-price-label {
    margin-bottom: 4px;
    color: var(--fc-text-muted);
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fc-price {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 4px 6px;
    line-height: 1.2;
    text-align: center;
}

.fc-price-old {
    color: var(--fc-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-decoration: line-through;
}

.fc-price-current {
    color: var(--fc-text);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.fc-price-off {
    color: #15803D;
    font-size: 11px;
    font-weight: 800;
}

.fc-price small {
    display: block;
    width: 100%;
    color: var(--fc-text-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 4px;
    margin-bottom: 6px;
}

/* BOTÕES */
.fc-btn-primary,
.fc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all .18s ease;
}

.fc-btn-primary {
    background: var(--fc-dark);
    color: #FFFFFF;
    box-shadow: none;
}

    .fc-btn-primary:hover {
        background: var(--fc-dark-2);
        transform: translateY(-1px);
        box-shadow: none;
    }

.fc-btn-secondary {
    background: #eef4ff;
    color: var(--fc-text-soft);
    border: 1px solid var(--fc-border);
}

    .fc-btn-secondary:hover {
        background: #F8FAFC;
        color: var(--fc-text);
        border-color: #D6E0EB;
    }

/* EMPTY */
.fc-empty {
    padding: 24px;
    background: #FFFFFF;
    border: 1px dashed #CBD5E1;
    border-radius: 12px;
    color: var(--fc-text-soft);
    font-size: 14px;
}

/* FOOTER */
.fc-footer {
    margin-top: 56px;
    background: linear-gradient(180deg, #13203B 0%, #0F1B32 100%);
    color: #FFFFFF;
    border-top: 1px solid rgba(255,255,255,.06);
}

.fc-footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 32px;
    align-items: start;
    padding: 30px 20px 22px;
}

.fc-footer-brand-wrap {
    min-width: 0;
}

.fc-footer-brand {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.fc-footer-text {
    margin: 0;
    max-width: 360px;
    color: #CBD5E1;
    font-size: 13px;
    line-height: 1.65;
}

.fc-footer-logo {
    display: block;
    margin-top: 14px;
    max-width: 180px;
}

    .fc-footer-logo img {
        display: block;
        width: 100%;
        max-width: 180px;
        height: auto;
        opacity: 0.96;
    }

.fc-footer-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.fc-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .fc-footer-list li {
        margin-bottom: 8px;
    }

    .fc-footer-list a {
        color: #CBD5E1;
        font-size: 12px;
    }

.fc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px 20px 16px;
}

    .fc-footer-bottom p {
        margin: 0;
        color: #94A3B8;
        font-size: 12px;
        line-height: 1.6;
    }

/* TABLET */
@media (max-width: 1024px) {
    .fc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .fc-grid:has(> .fc-card:only-child) {
            grid-template-columns: minmax(280px, 360px);
            justify-content: center;
        }

        .fc-grid:has(> .fc-card:first-child:nth-last-child(2)),
        .fc-grid:has(> .fc-card:first-child:nth-last-child(2) ~ .fc-card) {
            grid-template-columns: repeat(2, minmax(280px, 360px));
            justify-content: center;
        }

    .fc-hero h1 {
        font-size: 31px;
    }

    .fc-section-title-wrap h2 {
        font-size: 23px;
    }

    .fc-footer-grid {
        grid-template-columns: minmax(260px, 2fr) minmax(160px, 1fr) minmax(160px, 1fr);
    }

    .fc-logo img {
        height: 72px;
    }

    .fc-nav-link {
        padding: 0 12px;
        font-size: 13px;
    }
}

/* MOBILE */
@media (max-width: 720px) {
    .fc-grid {
        grid-template-columns: 1fr !important;
        justify-content: stretch;
    }

        .fc-grid:has(> .fc-card:only-child),
        .fc-grid:has(> .fc-card:first-child:nth-last-child(2)),
        .fc-grid:has(> .fc-card:first-child:nth-last-child(2) ~ .fc-card) {
            grid-template-columns: 1fr !important;
            justify-content: stretch;
        }

    .fc-intro-note {
        margin: 0 0 18px;
    }

    .fc-intro-main,
    .fc-intro-helper {
        font-size: 14px;
        line-height: 1.7;
    }

    .fc-intro-transparency {
        font-size: 12px;
        line-height: 1.6;
    }

    .fc-editorial-wrap {
        margin: 0 0 24px;
        gap: 16px;
    }

        .fc-editorial-wrap .fc-inst-section p,
        .fc-editorial-wrap .fc-inst-section ul,
        .fc-editorial-wrap .fc-inst-section ol {
            font-size: 14px;
            line-height: 1.7;
        }

    .fc-page-wrap,
    .fc-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .fc-header {
        box-shadow: 0 6px 18px rgba(15,23,42,.10);
    }

    .fc-header-inner {
        min-height: auto;
        padding: 6px 0 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .fc-logo {
        flex: 0 0 auto;
    }

        .fc-logo img {
            height: 82px;
            width: auto;
            display: block;
        }

    .fc-header-mobile-note {
        display: block;
        padding-top: 0;
        padding-bottom: 8px;
        margin-top: -2px;
        color: rgba(255,255,255,.78);
        font-size: 12px;
        line-height: 1.3;
        font-weight: 500;
    }

    .fc-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 10px;
        background: rgba(255,255,255,.06);
        cursor: pointer;
        flex: 0 0 auto;
    }

        .fc-menu-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #E2E8F0;
            border-radius: 999px;
        }

    .fc-menu-mobile-wrap {
        display: inline-flex !important;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .fc-menu-mobile-label {
        display: inline-block !important;
        color: #FFFFFF !important;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 1;
    }

    .fc-header-actions {
        display: none;
    }

    .fc-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        background: #13203B;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        padding: 10px;
        box-shadow: 0 14px 28px rgba(15,23,42,.22);
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        z-index: 300;
    }

        .fc-nav.is-open {
            display: flex;
        }

    .fc-nav-item {
        width: 100%;
        position: static;
    }

    .fc-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 40px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 14px;
        background: rgba(255,255,255,.06);
        color: #E2E8F0;
        white-space: normal;
        cursor: pointer;
    }

    .fc-nav-item.has-submenu > .fc-nav-link::after {
        content: "+";
        font-size: 18px;
        line-height: 1;
        color: #CBD5E1;
        margin-left: 10px;
    }

    .fc-nav-item.has-submenu.is-open > .fc-nav-link::after {
        content: "−";
    }

    .fc-nav-item::after {
        display: none;
    }

    .fc-submenu {
        display: none !important;
        position: static;
        min-width: unset;
        margin-top: 6px;
        padding: 6px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 10px;
        box-shadow: none;
    }

    .fc-nav-item.has-submenu.is-open .fc-submenu {
        display: block !important;
    }

    .fc-submenu-link {
        display: block;
        color: #E2E8F0;
        font-size: 13px;
        line-height: 1.45;
        padding: 8px 10px;
        border-radius: 8px;
    }

    .fc-hero {
        padding: 16px 0 24px;
        margin-bottom: 24px;
    }

        .fc-hero h1 {
            font-size: 26px;
        }

        .fc-hero p {
            font-size: 15px;
        }

    .fc-section-title-wrap h2 {
        font-size: 20px;
    }

    .fc-card-image-wrap {
        min-height: 200px;
    }

    .fc-price-current {
        font-size: 16px;
    }

    .fc-price-old,
    .fc-price-off,
    .fc-price small {
        font-size: 10px;
    }

    .fc-footer-grid {
        display: block !important;
        padding: 24px 14px 18px;
        font-size: 0;
    }

        .fc-footer-grid > * {
            font-size: 16px;
        }

    .fc-footer-brand-wrap {
        display: block;
        width: 100%;
        margin-bottom: 18px;
    }

    .fc-footer-grid > :nth-child(2),
    .fc-footer-grid > :nth-child(3) {
        display: inline-block;
        vertical-align: top;
        width: 48%;
    }

    .fc-footer-grid > :nth-child(2) {
        margin-right: 4%;
    }

    .fc-footer-title {
        margin-bottom: 8px;
    }

    .fc-footer-list li {
        margin-bottom: 7px;
    }

    .fc-footer-logo {
        max-width: 160px;
    }

        .fc-footer-logo img {
            max-width: 160px;
        }

    .fc-footer-bottom {
        padding: 12px 14px 16px;
    }
}

/* PÁGINAS INSTITUCIONAIS */
.fc-inst-page {
    padding: 28px 0 56px;
}

.fc-inst-hero {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--fc-border);
}

    .fc-inst-hero h1 {
        margin: 0 0 12px;
        color: var(--fc-text);
        font-size: 38px;
        line-height: 1.12;
        font-weight: 800;
        letter-spacing: -0.025em;
    }

    .fc-inst-hero p {
        margin: 0 auto;
        max-width: 760px;
        color: var(--fc-text-soft);
        font-size: 17px;
        line-height: 1.7;
    }

.fc-inst-content {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.fc-inst-section {
    background: var(--fc-card);
    border: 1px solid var(--fc-border);
    border-radius: 18px;
    padding: 24px 24px 22px;
    box-shadow: var(--fc-shadow-sm);
}

    .fc-inst-section h2 {
        margin: 0 0 12px;
        color: var(--fc-text);
        font-size: 22px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .fc-inst-section p {
        margin: 0 0 14px;
        color: var(--fc-text-soft);
        font-size: 15px;
        line-height: 1.75;
    }

        .fc-inst-section p:last-child {
            margin-bottom: 0;
        }

@media (max-width: 720px) {
    .fc-inst-page {
        padding: 20px 0 40px;
    }

    .fc-inst-hero {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

        .fc-inst-hero h1 {
            font-size: 28px;
        }

        .fc-inst-hero p {
            font-size: 15px;
        }

    .fc-inst-section {
        padding: 18px 16px;
        border-radius: 16px;
    }

        .fc-inst-section h2 {
            font-size: 19px;
        }

        .fc-inst-section p {
            font-size: 14px;
            line-height: 1.7;
        }
}

.fc-table-section {
    margin-top: 32px;
}

.fc-table-card {
    background: #FFFFFF;
    border: 1px solid var(--fc-border);
    border-radius: 20px;
    padding: 18px 18px 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.fc-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fc-compare-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
}

    .fc-compare-table thead th {
        text-align: left;
        font-size: 14px;
        font-weight: 800;
        color: var(--fc-text);
        padding: 14px 14px;
        border-bottom: 1px solid var(--fc-border);
        white-space: nowrap;
        background: #F8FAFC;
    }

    .fc-compare-table tbody td {
        padding: 16px 14px;
        border-bottom: 1px solid #EEF2F7;
        vertical-align: top;
        color: var(--fc-text);
        font-size: 15px;
        line-height: 1.55;
    }

    .fc-compare-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .fc-compare-table td:first-child {
        font-weight: 700;
        color: var(--fc-text);
        min-width: 140px;
    }

    .fc-compare-table td:nth-child(2) {
        min-width: 360px;
    }

    .fc-compare-table td:nth-child(3) {
        min-width: 220px;
    }

    .fc-compare-table td:nth-child(4) {
        min-width: 150px;
        white-space: nowrap;
    }

    .fc-compare-table td:nth-child(5),
    .fc-compare-table td:nth-child(6) {
        min-width: 110px;
        white-space: nowrap;
    }

    .fc-compare-table a {
        color: var(--fc-primary);
        text-decoration: none;
        font-weight: 700;
    }

        .fc-compare-table a:hover {
            text-decoration: underline;
        }

.fc-table-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.fc-table-product-thumb {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .fc-table-product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        padding: 4px;
    }

.fc-table-product-name {
    min-width: 0;
    color: var(--fc-text);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.fc-table-note {
    margin: 12px 4px 0;
    color: var(--fc-text-soft);
    font-size: 12px;
    line-height: 1.55;
}

/* MOBILE */
@media (max-width: 720px) {
    .fc-table-card {
        padding: 14px 14px 10px;
        border-radius: 16px;
    }

    .fc-table-scroll {
        overflow: visible;
    }

    .fc-compare-table {
        min-width: 0;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }

        .fc-compare-table thead {
            display: none;
        }

        .fc-compare-table,
        .fc-compare-table tbody,
        .fc-compare-table tr,
        .fc-compare-table td {
            display: block;
            width: 100%;
        }

            .fc-compare-table tbody tr {
                background: #FFFFFF;
                border: 1px solid var(--fc-border);
                border-radius: 14px;
                padding: 12px 12px 10px;
                margin-bottom: 12px;
                box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
            }

            .fc-compare-table tbody td {
                border: 0;
                padding: 0;
                margin-bottom: 10px;
                min-width: 0 !important;
                white-space: normal !important;
                font-size: 14px;
                line-height: 1.5;
            }

                .fc-compare-table tbody td:last-child {
                    margin-bottom: 0;
                }

                .fc-compare-table tbody td::before {
                    content: attr(data-label);
                    display: block;
                    margin-bottom: 4px;
                    color: var(--fc-text-muted);
                    font-size: 11px;
                    line-height: 1.35;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.03em;
                }

    .fc-table-product {
        align-items: flex-start;
        gap: 10px;
    }

    .fc-table-product-thumb {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        border-radius: 9px;
    }

    .fc-table-product-name {
        font-size: 14px;
        line-height: 1.4;
    }

    .fc-table-link-offer,
    .fc-table-link-review {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 12px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }

    .fc-table-link-offer {
        background: var(--fc-dark);
        color: #FFFFFF !important;
        border: 1px solid var(--fc-dark);
    }

    .fc-table-link-review {
        background: #FFFFFF;
        color: var(--fc-text-soft);
        border: 1px solid var(--fc-border);
    }

        .fc-table-link-offer:hover,
        .fc-table-link-review:hover {
            text-decoration: none;
        }

    .fc-table-note {
        margin-top: 10px;
        font-size: 11px;
        line-height: 1.5;
    }
}
@media (max-width: 720px) {
    .fc-compare-table tbody tr {
        padding: 10px 10px 8px;
        margin-bottom: 10px;
        border-radius: 13px;
    }

    .fc-compare-table tbody td {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.45;
    }

        .fc-compare-table tbody td::before {
            margin-bottom: 3px;
            color: #7B8798;
            font-size: 10px;
            line-height: 1.25;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* Perfil vira selo no topo do card */
        .fc-compare-table tbody td:first-child {
            display: inline-flex;
            align-items: center;
            width: auto;
            min-width: 0 !important;
            margin-bottom: 10px;
            padding: 5px 10px;
            border-radius: 999px;
            background: #EAF2FF;
            border: 1px solid #D5E5FF;
            color: #2563EB;
            font-size: 12px;
            line-height: 1.25;
            font-weight: 700;
        }

            .fc-compare-table tbody td:first-child::before {
                display: none;
                content: none;
            }

    /* Produto mais compacto */
    .fc-table-product {
        align-items: center;
        gap: 8px;
    }

    .fc-table-product-thumb {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 8px;
    }

        .fc-table-product-thumb img {
            padding: 3px;
        }

    .fc-table-product-name {
        font-size: 13px;
        line-height: 1.35;
        font-weight: 700;
    }

    /* Botões mais compactos */
    .fc-table-link-offer,
    .fc-table-link-review {
        min-height: 34px;
        padding: 0 10px;
        border-radius: 9px;
        font-size: 12px;
    }

    .fc-table-link-offer {
        border-width: 1px;
    }

    /* Preço um pouco mais enxuto */
    .fc-compare-table tbody td[data-label="Preço"] {
        font-size: 13px;
        line-height: 1.35;
        font-weight: 600;
    }

    /* Menos respiro no bloco inteiro */
    .fc-table-note {
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.45;
    }
}