/*
 * FCB HOME V2
 * H3B — DNA VISUAL DA LOJA FCB
 * Ambiente exclusivo de homologação.
 */

.fcbv2 {
    --fcb-verde:#0b3d3b;
    --fcb-verde-vivo:#0b5145;
    --fcb-verde-cta:#0b5d55;
    --fcb-verde2:#12645f;
    --fcb-teal:#197a73;
    --fcb-teal-luz:#237a73;

    --fcb-dourado:#d2ad45;
    --fcb-dourado2:#b9922e;
    --fcb-dourado-claro:#f4d77c;

    --fcb-marfim:#f7f5ee;
    --fcb-fundo:#f3f6f5;
    --fcb-branco:#ffffff;

    --fcb-texto:#172522;
    --fcb-texto-suave:#596b66;
    --fcb-borda:#d8e2df;

    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            var(--fcb-fundo) 100%
        );

    color:var(--fcb-texto);
}


/* ==========================================================
   HERO
   ========================================================== */

.fcbv2-hero {
    position:relative;
    overflow:hidden;
    padding:clamp(76px,9vw,142px) 0 118px;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(35,122,115,.92) 0,
            rgba(18,100,95,.62) 22%,
            rgba(11,81,69,.12) 46%,
            transparent 62%
        ),
        radial-gradient(
            circle at 15% 100%,
            rgba(210,173,69,.20),
            transparent 34%
        ),
        linear-gradient(
            128deg,
            #082f2e 0%,
            #0b3d3b 42%,
            #12645f 74%,
            #197a73 100%
        );

    color:#fff;
}

.fcbv2-hero::before {
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            115deg,
            rgba(255,255,255,.045) 0,
            transparent 35%,
            rgba(255,255,255,.025) 68%,
            transparent 100%
        );

    pointer-events:none;
}

.fcbv2-hero::after {
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-230px;
    bottom:-390px;

    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;

    box-shadow:
        0 0 0 65px rgba(255,255,255,.025),
        0 0 0 130px rgba(255,255,255,.018);

    pointer-events:none;
}

.fcbv2-hero__grid {
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:
        minmax(0,1.42fr)
        minmax(270px,.58fr);

    align-items:center;
    gap:70px;
}

.fcbv2-kicker {
    display:inline-flex;
    align-items:center;
    gap:11px;

    margin-bottom:25px;

    color:var(--fcb-dourado-claro);

    font-size:.75rem;
    font-weight:800;
    letter-spacing:.17em;
    text-transform:uppercase;
}

.fcbv2-kicker::before {
    content:"";
    width:38px;
    height:2px;

    background:var(--fcb-dourado);
}

.fcbv2-hero h1 {
    max-width:820px;
    margin:0;

    color:#fff;

    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(3.15rem,6.15vw,6.25rem);
    font-weight:900;
    line-height:.93;
    letter-spacing:-.045em;

    text-wrap:balance;
}

.fcbv2-hero h1 span {
    display:block;

    margin-top:8px;

    color:var(--fcb-dourado-claro);
}

.fcbv2-hero__content > p {
    max-width:670px;

    margin:30px 0 0;

    color:rgba(255,255,255,.82);

    font-size:clamp(1rem,1.4vw,1.18rem);
    line-height:1.75;
}

.fcbv2-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-top:38px;
}


/* ==========================================================
   BOTOES
   ========================================================== */

.fcbv2-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:52px;
    padding:0 23px;

    border:1px solid transparent;
    border-radius:9px;

    font-size:.8rem;
    font-weight:800;
    letter-spacing:.055em;
    text-decoration:none;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.fcbv2-btn:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.fcbv2-btn--gold {
    background:
        linear-gradient(
            135deg,
            #e0be59,
            var(--fcb-dourado)
        );

    color:#173c37;
}

.fcbv2-btn--gold:hover {
    background:
        linear-gradient(
            135deg,
            #efd275,
            #d7b54e
        );
}

.fcbv2-btn--light {
    background:#fff;
    color:var(--fcb-verde-vivo);
}

.fcbv2-btn--ghost {
    border-color:rgba(255,255,255,.46);

    background:rgba(255,255,255,.08);
    color:#fff;

    backdrop-filter:blur(8px);
}

.fcbv2-btn--ghost:hover {
    border-color:rgba(255,255,255,.72);
    background:rgba(255,255,255,.15);
}


/* ==========================================================
   SELO VISUAL
   ========================================================== */

.fcbv2-hero__visual {
    position:relative;

    display:flex;
    justify-content:center;
}

.fcbv2-hero__visual::before {
    content:"";

    position:absolute;
    width:330px;
    height:330px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(210,173,69,.22),
            rgba(210,173,69,.05) 45%,
            transparent 70%
        );

    filter:blur(4px);
}

.fcbv2-hero__seal {
    position:relative;
    z-index:2;

    width:min(280px,25vw);
    aspect-ratio:1;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;

    background:
        radial-gradient(
            circle at 35% 28%,
            rgba(255,255,255,.18),
            rgba(255,255,255,.06) 42%,
            rgba(8,47,46,.20) 100%
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,.20),
        inset 0 0 0 12px rgba(255,255,255,.035);

    backdrop-filter:blur(10px);
}

.fcbv2-hero__seal::before {
    content:"";

    position:absolute;
    inset:16px;

    border:1px solid rgba(210,173,69,.55);
    border-radius:50%;
}

.fcbv2-hero__seal strong {
    color:var(--fcb-dourado-claro);

    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(3.4rem,6vw,5.7rem);
    line-height:1;
    letter-spacing:-.06em;
}

.fcbv2-hero__seal span {
    margin-top:9px;

    color:rgba(255,255,255,.75);

    font-size:.69rem;
    font-weight:800;
    letter-spacing:.30em;
}


/* ==========================================================
   PORTAS PRINCIPAIS
   ========================================================== */

.fcbv2-gateway {
    position:relative;
    z-index:5;

    margin-top:-48px;
}

.fcbv2-gateway__grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);

    overflow:hidden;

    border:1px solid rgba(11,61,59,.08);
    border-radius:14px;

    background:#fff;

    box-shadow:
        0 18px 50px rgba(11,61,59,.13),
        0 2px 6px rgba(11,61,59,.05);
}

.fcbv2-gateway__item {
    position:relative;

    min-height:178px;
    padding:29px 28px;

    border-right:1px solid var(--fcb-borda);

    background:#fff;

    color:var(--fcb-texto);
    text-decoration:none;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.fcbv2-gateway__item:last-child {
    border-right:0;
}

.fcbv2-gateway__item::after {
    content:"";

    position:absolute;
    left:0;
    right:0;
    bottom:0;

    height:4px;

    background:
        linear-gradient(
            90deg,
            var(--fcb-verde2),
            var(--fcb-teal),
            var(--fcb-dourado)
        );

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .22s ease;
}

.fcbv2-gateway__item:hover {
    z-index:2;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #eef6f3
        );

    box-shadow:0 12px 30px rgba(11,61,59,.10);
}

.fcbv2-gateway__item:hover::after {
    transform:scaleX(1);
}

.fcbv2-gateway__number {
    display:flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(210,173,69,.12);
    color:var(--fcb-dourado2);

    font-size:.68rem;
    font-weight:900;
    letter-spacing:.08em;
}

.fcbv2-gateway__item strong {
    display:block;

    color:var(--fcb-verde-vivo);

    font-family:"Playfair Display",Georgia,serif;
    font-size:1.34rem;
    line-height:1.2;
}

.fcbv2-gateway__item small {
    display:block;

    margin-top:8px;

    color:#687a75;

    font-size:.82rem;
    line-height:1.5;
}


/* ==========================================================
   AREA DE HOMOLOGACAO
   ========================================================== */

.fcbv2-preview {
    position:relative;

    padding:112px 0 120px;

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(25,122,115,.08),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            var(--fcb-fundo),
            #fff
        );
}

.fcbv2-section-heading {
    max-width:760px;
}

.fcbv2-section-heading > span {
    display:inline-block;

    color:var(--fcb-teal);

    font-size:.71rem;
    font-weight:900;
    letter-spacing:.17em;
}

.fcbv2-section-heading h2 {
    margin:13px 0 16px;

    color:var(--fcb-verde);

    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(2.1rem,4vw,3.7rem);
    line-height:1.04;
    letter-spacing:-.025em;
}

.fcbv2-section-heading p {
    color:var(--fcb-texto-suave);

    font-size:1.02rem;
    line-height:1.75;
}

.fcbv2-preview__panel {
    position:relative;

    max-width:900px;

    margin-top:46px;
    padding:32px 34px;

    overflow:hidden;

    border:1px solid var(--fcb-borda);
    border-left:5px solid var(--fcb-dourado);
    border-radius:0 12px 12px 0;

    background:#fff;

    box-shadow:0 15px 40px rgba(11,61,59,.08);
}

.fcbv2-preview__panel::after {
    content:"";

    position:absolute;
    width:170px;
    height:170px;
    right:-85px;
    top:-85px;

    border-radius:50%;

    background:rgba(25,122,115,.07);
}

.fcbv2-preview__panel strong {
    color:var(--fcb-verde-vivo);

    font-size:1.05rem;
}

.fcbv2-preview__panel p {
    margin:9px 0 0;

    color:var(--fcb-texto-suave);

    line-height:1.72;
}


/* ==========================================================
   RESPONSIVO
   ========================================================== */

@media (max-width:980px) {

    .fcbv2-hero__grid {
        grid-template-columns:1fr;
    }

    .fcbv2-hero__content {
        max-width:780px;
    }

    .fcbv2-hero__visual {
        display:none;
    }

    .fcbv2-gateway {
        margin-top:-28px;
    }

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

    .fcbv2-gateway__item {
        border-bottom:1px solid var(--fcb-borda);
    }

    .fcbv2-gateway__item:nth-child(2) {
        border-right:0;
    }
}

@media (max-width:640px) {

    .fcbv2-hero {
        padding:62px 0 86px;
    }

    .fcbv2-kicker {
        font-size:.65rem;
        letter-spacing:.12em;
    }

    .fcbv2-hero h1 {
        font-size:clamp(2.65rem,13vw,4.1rem);
    }

    .fcbv2-hero__content > p {
        margin-top:23px;
    }

    .fcbv2-actions {
        flex-direction:column;
        margin-top:30px;
    }

    .fcbv2-btn {
        width:100%;
    }

    .fcbv2-gateway {
        margin-top:0;
    }

    .fcbv2-gateway__grid {
        grid-template-columns:1fr;
        border-radius:0;
    }

    .fcbv2-gateway__item {
        min-height:140px;
        border-right:0;
    }

    .fcbv2-preview {
        padding:74px 0 82px;
    }

    .fcbv2-preview__panel {
        padding:25px 23px;
    }
}


/* ==========================================================
   H3C — PORTAL FCB
   ========================================================== */

.fcbv2-section {
    padding:clamp(82px,9vw,128px) 0;
}

.fcbv2-section-heading em {
    display:block;
    color:var(--fcb-teal);
    font-style:normal;
}

.fcbv2-section-heading--light h2,
.fcbv2-section-heading--light p {
    color:#fff;
}

.fcbv2-section-heading--light > span {
    color:var(--fcb-dourado-claro);
}

.fcbv2-section-heading--light em {
    color:var(--fcb-dourado-claro);
}

.fcbv2-center {
    margin-inline:auto;
    text-align:center;
}

.fcbv2-text-link {
    display:inline-block;
    margin-top:26px;
    color:var(--fcb-verde-vivo);
    font-weight:800;
    text-decoration:none;
}

.fcbv2-arrow {
    position:absolute;
    right:25px;
    bottom:24px;
    color:var(--fcb-teal);
    font-size:1.25rem;
}

.fcbv2-flight {
    position:relative;
    text-align:center;
}

.fcbv2-flight__line {
    position:absolute;
    width:360px;
    height:360px;
    left:50%;
    top:50%;
    border:1px solid rgba(244,215,124,.30);
    border-radius:50%;
    transform:translate(-50%,-50%);
}

.fcbv2-flight small {
    display:block;
    margin-top:25px;
    color:rgba(255,255,255,.60);
    font-size:.66rem;
    font-weight:800;
    letter-spacing:.18em;
}


/* COMPETICAO */

.fcbv2-competition {
    background:#fff;
}

.fcbv2-split {
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(400px,1.1fr);
    align-items:center;
    gap:80px;
}

.fcbv2-competition__visual {
    position:relative;
    min-height:410px;
    overflow:hidden;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 72% 25%,
            rgba(244,215,124,.28),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #0b3d3b,
            #12645f 55%,
            #197a73
        );
    box-shadow:0 25px 60px rgba(11,61,59,.18);
}

.fcbv2-competition__visual::before,
.fcbv2-competition__visual::after {
    content:"";
    position:absolute;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
}

.fcbv2-competition__visual::before {
    width:420px;
    height:420px;
    right:-130px;
    top:-120px;
}

.fcbv2-competition__visual::after {
    width:250px;
    height:250px;
    right:-20px;
    bottom:-100px;
}

.fcbv2-competition__badge {
    position:absolute;
    left:42px;
    top:42px;
    z-index:2;
}

.fcbv2-competition__badge span {
    display:block;
    color:var(--fcb-dourado-claro);
    font-family:"Playfair Display",Georgia,serif;
    font-size:3rem;
    font-weight:900;
}

.fcbv2-competition__badge strong {
    display:block;
    color:#fff;
    font-size:1rem;
    letter-spacing:.12em;
}

.fcbv2-competition__badge small {
    display:block;
    margin-top:7px;
    color:rgba(255,255,255,.65);
}

.fcbv2-competition__word {
    position:absolute;
    left:38px;
    bottom:24px;
    color:rgba(255,255,255,.09);
    font-size:clamp(3.4rem,7vw,7.5rem);
    font-weight:900;
    letter-spacing:-.06em;
}


/* LOJA */

.fcbv2-store {
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 95% 0,
            rgba(25,122,115,.8),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #082f2e,
            #0b3d3b 55%,
            #12645f
        );
}

.fcbv2-store__header {
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:end;
    gap:60px;
}

.fcbv2-store__public {
    max-width:310px;
    padding:20px 22px;
    border:1px solid rgba(255,255,255,.17);
    border-radius:12px;
    background:rgba(255,255,255,.08);
    color:#fff;
}

.fcbv2-store__public strong,
.fcbv2-store__public span {
    display:block;
}

.fcbv2-store__public strong {
    color:var(--fcb-dourado-claro);
}

.fcbv2-store__public span {
    margin-top:5px;
    color:rgba(255,255,255,.75);
    font-size:.82rem;
}

.fcbv2-products {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:58px;
}

.fcbv2-product {
    position:relative;
    display:grid;
    grid-template-columns:100px 150px 1fr;
    align-items:center;
    gap:25px;
    min-height:265px;
    padding:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.14);
    border-radius:16px;
    background:#fff;
    box-shadow:0 22px 50px rgba(0,0,0,.13);
}

.fcbv2-product__year small,
.fcbv2-product__year strong {
    display:block;
}

.fcbv2-product__year small {
    color:#71807c;
    font-size:.61rem;
    font-weight:900;
    letter-spacing:.15em;
}

.fcbv2-product__year strong {
    margin-top:3px;
    color:var(--fcb-verde);
    font-family:"Playfair Display",Georgia,serif;
    font-size:2.6rem;
}

.fcbv2-ring {
    width:132px;
    height:132px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    box-shadow:
        inset 0 0 0 19px rgba(255,255,255,.15),
        0 15px 32px rgba(0,0,0,.15);
}

.fcbv2-ring span {
    color:#fff;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.12em;
}

.fcbv2-ring--blue {
    background:
        radial-gradient(circle,#196da8 28%,#0c4f82 60%,#083a61);
}

.fcbv2-ring--red {
    background:
        radial-gradient(circle,#db4b4b 28%,#b8262d 60%,#861a20);
}

.fcbv2-product__status {
    display:inline-block;
    color:var(--fcb-teal);
    font-size:.67rem;
    font-weight:900;
    letter-spacing:.10em;
    text-transform:uppercase;
}

.fcbv2-product h3 {
    margin:8px 0 4px;
    color:var(--fcb-verde);
    font-family:"Playfair Display",Georgia,serif;
    font-size:1.45rem;
}

.fcbv2-product__content p {
    margin:0;
    color:#667671;
    font-size:.82rem;
}

.fcbv2-product__content > a {
    display:inline-block;
    margin-top:20px;
    color:var(--fcb-verde-vivo);
    font-size:.78rem;
    font-weight:900;
    text-decoration:none;
}

.fcbv2-delivery {
    display:block;
    margin-top:9px;
    color:#8a6250;
}

.fcbv2-store__footer {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-top:28px;
    color:rgba(255,255,255,.72);
}

.fcbv2-store__footer p {
    margin:0;
    font-size:.82rem;
}


/* SERVICOS */

.fcbv2-services {
    background:var(--fcb-fundo);
}

.fcbv2-services__grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:52px;
}

.fcbv2-service {
    min-height:220px;
    padding:28px;
    border:1px solid var(--fcb-borda);
    border-radius:13px;
    background:#fff;
    color:var(--fcb-texto);
    text-decoration:none;
    box-shadow:0 10px 28px rgba(11,61,59,.05);
    transition:transform .2s ease,box-shadow .2s ease;
}

.fcbv2-service:hover {
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(11,61,59,.11);
}

.fcbv2-service > span {
    color:var(--fcb-dourado2);
    font-size:.68rem;
    font-weight:900;
}

.fcbv2-service strong {
    display:block;
    margin-top:38px;
    color:var(--fcb-verde-vivo);
    font-family:"Playfair Display",Georgia,serif;
    font-size:1.25rem;
}

.fcbv2-service p {
    margin:8px 0 0;
    color:#697975;
    font-size:.82rem;
    line-height:1.55;
}


/* CREDENCIAIS */

.fcbv2-credentials {
    padding:38px 0;
    background:#fff;
    border-top:1px solid var(--fcb-borda);
    border-bottom:1px solid var(--fcb-borda);
}

.fcbv2-credentials__inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.fcbv2-credentials__inner > div:first-child span,
.fcbv2-credentials__inner > div:first-child strong {
    display:block;
}

.fcbv2-credentials__inner > div:first-child span {
    color:#7b8985;
    font-size:.62rem;
    font-weight:900;
    letter-spacing:.14em;
}

.fcbv2-credentials__inner > div:first-child strong {
    margin-top:5px;
    color:var(--fcb-verde);
}

.fcbv2-credentials__marks {
    display:flex;
    align-items:center;
    gap:20px;
    color:var(--fcb-verde-vivo);
    font-weight:900;
}

.fcbv2-credentials__marks i {
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--fcb-dourado);
}


/* ASSOCIACAO */

.fcbv2-join {
    padding:clamp(72px,8vw,105px) 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(210,173,69,.18),
            transparent 24%
        ),
        var(--fcb-verde-vivo);
}

.fcbv2-join__inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.fcbv2-join__inner > div {
    max-width:720px;
}

.fcbv2-join__inner span {
    color:var(--fcb-dourado-claro);
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.16em;
}

.fcbv2-join h2 {
    margin:10px 0 13px;
    color:#fff;
    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.05;
}

.fcbv2-join p {
    margin:0;
    color:rgba(255,255,255,.73);
    line-height:1.7;
}


/* RESPONSIVO H3C */

@media (max-width:1000px) {

    .fcbv2-split,
    .fcbv2-store__header {
        grid-template-columns:1fr;
    }

    .fcbv2-products {
        grid-template-columns:1fr;
    }

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

    .fcbv2-store__public {
        max-width:none;
    }
}

@media (max-width:700px) {

    .fcbv2-split {
        gap:42px;
    }

    .fcbv2-competition__visual {
        min-height:310px;
    }

    .fcbv2-product {
        grid-template-columns:75px 90px 1fr;
        gap:15px;
        padding:22px 18px;
    }

    .fcbv2-ring {
        width:82px;
        height:82px;
    }

    .fcbv2-product__year strong {
        font-size:1.8rem;
    }

    .fcbv2-services__grid {
        grid-template-columns:1fr;
    }

    .fcbv2-store__footer,
    .fcbv2-credentials__inner,
    .fcbv2-join__inner {
        align-items:flex-start;
        flex-direction:column;
    }

    .fcbv2-credentials__marks {
        flex-wrap:wrap;
    }
}

@media (max-width:480px) {

    .fcbv2-product {
        grid-template-columns:1fr;
    }

    .fcbv2-ring {
        width:105px;
        height:105px;
    }
}


/* ==========================================================
   H3D2 — CREDENCIAL INSTITUCIONAL FCI
   ========================================================== */

.fcbv2-credential-text {
    display:inline-flex;
    align-items:center;
    min-height:48px;

    color:var(--fcb-verde-vivo);

    font-size:.92rem;
    font-weight:900;
    letter-spacing:.055em;
}

.fcbv2-fci-mark {
    display:flex;
    align-items:center;
    gap:12px;
}

.fcbv2-fci-mark small {
    color:#7b8985;

    font-size:.61rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    white-space:nowrap;
}

.fcbv2-fci-mark img {
    display:block;

    width:auto;
    max-width:118px;
    height:52px;

    object-fit:contain;
}

@media (max-width:700px) {

    .fcbv2-fci-mark {
        width:100%;
    }

    .fcbv2-fci-mark img {
        max-width:108px;
        height:48px;
    }
}


/* ==========================================================
   H3D3 — IMAGENS REAIS DAS ANILHAS OFICIAIS
   ========================================================== */

.fcbv2-product__image {
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    width:150px;
    height:170px;

    padding:8px;
}

.fcbv2-product__image::after {
    content:"";

    position:absolute;
    left:50%;
    bottom:8px;

    width:110px;
    height:18px;

    border-radius:50%;

    background:rgba(8,47,46,.12);
    filter:blur(9px);

    transform:translateX(-50%);
}

.fcbv2-product__image img {
    position:relative;
    z-index:2;

    display:block;

    width:100%;
    max-width:145px;
    height:160px;

    object-fit:contain;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.fcbv2-product:hover .fcbv2-product__image img {
    transform:translateY(-4px) scale(1.035);

    filter:
        drop-shadow(0 14px 13px rgba(8,47,46,.13));
}

@media (max-width:700px) {

    .fcbv2-product__image {
        width:90px;
        height:120px;
        padding:0;
    }

    .fcbv2-product__image img {
        max-width:90px;
        height:115px;
    }

    .fcbv2-product__image::after {
        width:72px;
    }
}

@media (max-width:480px) {

    .fcbv2-product__image {
        width:150px;
        height:155px;
    }

    .fcbv2-product__image img {
        max-width:145px;
        height:150px;
    }
}


/* ==========================================================
   H3E1 — COMPETICOES DINAMICAS + NOTICIAS
   ========================================================== */

.fcbv2-competition__live {
    position:relative;
    min-height:410px;
    overflow:hidden;

    border:1px solid var(--fcb-borda);
    border-radius:18px;

    background:#fff;

    box-shadow:0 25px 60px rgba(11,61,59,.13);
}

.fcbv2-live__top {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    padding:18px 22px;

    border-bottom:1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            135deg,
            var(--fcb-verde),
            var(--fcb-verde2)
        );

    color:#fff;
}

.fcbv2-live__top span {
    color:var(--fcb-dourado-claro);

    font-size:.72rem;
    font-weight:900;
    letter-spacing:.12em;
}

.fcbv2-live__top small {
    color:rgba(255,255,255,.70);
}

.fcbv2-live__content {
    padding:24px;
}

.fcbv2-live__content img,
.fcbv2-live__content table {
    max-width:100%;
}

.fcbv2-live__fallback {
    display:flex;
    min-height:285px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;

    padding:30px;
}

.fcbv2-live__fallback strong {
    color:var(--fcb-verde);

    font-family:"Playfair Display",Georgia,serif;
    font-size:2rem;
}

.fcbv2-live__fallback p {
    max-width:470px;
    margin:12px 0 20px;

    color:#657570;
    line-height:1.65;
}

.fcbv2-live__fallback a {
    color:var(--fcb-verde-vivo);
    font-weight:900;
    text-decoration:none;
}


/* NOTICIAS */

.fcbv2-news {
    background:#fff;
}

.fcbv2-news__head {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:50px;

    margin-bottom:48px;
}

.fcbv2-news__head .fcbv2-text-link {
    flex:0 0 auto;
    margin-bottom:8px;
}

.fcbv2-news__grid {
    display:grid;
    grid-template-columns:minmax(0,1.55fr) repeat(3,minmax(0,.72fr));
    gap:18px;
}

.fcbv2-news-card {
    overflow:hidden;

    border:1px solid var(--fcb-borda);
    border-radius:14px;

    background:#fff;

    box-shadow:0 10px 30px rgba(11,61,59,.055);
}

.fcbv2-news-card__media {
    position:relative;

    display:block;
    overflow:hidden;

    aspect-ratio:4 / 3;

    background:
        linear-gradient(
            135deg,
            var(--fcb-verde),
            var(--fcb-teal)
        );
}

.fcbv2-news-card--featured .fcbv2-news-card__media {
    aspect-ratio:16 / 9;
}

.fcbv2-news-card__media img {
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .35s ease;
}

.fcbv2-news-card:hover .fcbv2-news-card__media img {
    transform:scale(1.035);
}

.fcbv2-news-card__placeholder {
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    color:rgba(255,255,255,.55);

    font-family:"Playfair Display",Georgia,serif;
    font-size:3rem;
    font-weight:900;
}

.fcbv2-news-card__body {
    padding:22px;
}

.fcbv2-news-card__meta {
    margin-bottom:8px;

    color:var(--fcb-dourado2);

    font-size:.65rem;
    font-weight:900;
    letter-spacing:.09em;
}

.fcbv2-news-card h3 {
    margin:0;

    font-family:"Playfair Display",Georgia,serif;
    font-size:1.12rem;
    line-height:1.25;
}

.fcbv2-news-card--featured h3 {
    font-size:1.7rem;
}

.fcbv2-news-card h3 a {
    color:var(--fcb-verde);
    text-decoration:none;
}

.fcbv2-news-card__body p {
    margin:13px 0 0;

    color:#687873;
    font-size:.86rem;
    line-height:1.65;
}

.fcbv2-news-card__link {
    display:inline-block;

    margin-top:17px;

    color:var(--fcb-verde-vivo);

    font-size:.73rem;
    font-weight:900;
    text-decoration:none;
}

.fcbv2-news__empty {
    padding:40px;

    border:1px solid var(--fcb-borda);
    border-radius:12px;

    background:var(--fcb-fundo);

    color:#687873;
    text-align:center;
}


@media (max-width:1050px) {

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

    .fcbv2-news-card--featured {
        grid-column:1 / -1;
    }
}

@media (max-width:700px) {

    .fcbv2-news__head {
        align-items:flex-start;
        flex-direction:column;
        gap:5px;
    }

    .fcbv2-news__grid {
        grid-template-columns:1fr;
    }

    .fcbv2-news-card--featured {
        grid-column:auto;
    }

    .fcbv2-live__top {
        align-items:flex-start;
        flex-direction:column;
        gap:4px;
    }

    .fcbv2-live__content {
        padding:15px;
    }
}


/* ==========================================================
   H3E2D — HERO DEFINITIVO FCB
   ========================================================== */

.fcbv2-hero__visual {
    position:relative;
    z-index:2;
}

.fcbv2-hero-photo {
    position:relative;

    width:min(100%,520px);
    min-height:570px;
    margin-left:auto;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.15);
    border-radius:28px 28px 110px 28px;

    background:#082f2e;

    box-shadow:
        0 35px 80px rgba(0,0,0,.28),
        0 0 0 1px rgba(210,173,69,.08);
}

.fcbv2-hero-photo::before {
    content:"";

    position:absolute;
    z-index:3;
    top:0;
    right:0;

    width:150px;
    height:5px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--fcb-dourado),
        var(--fcb-dourado-claro)
    );
}

.fcbv2-hero-photo__image {
    position:absolute;
    inset:0;

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;
}

.fcbv2-hero-photo__shade {
    position:absolute;
    z-index:1;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(8,47,46,.03) 30%,
            rgba(8,47,46,.20) 57%,
            rgba(8,47,46,.94) 100%
        ),
        linear-gradient(
            90deg,
            rgba(8,47,46,.18),
            transparent 55%
        );
}

.fcbv2-hero-photo__brand {
    position:absolute;
    z-index:4;
    top:24px;
    left:24px;

    display:flex;
    align-items:center;
    gap:12px;

    max-width:calc(100% - 48px);
    padding:9px 14px 9px 9px;

    border:1px solid rgba(255,255,255,.18);
    border-radius:14px;

    background:rgba(8,47,46,.82);

    box-shadow:0 10px 30px rgba(0,0,0,.16);

    backdrop-filter:blur(8px);
}

.fcbv2-hero-photo__logo {
    display:block;

    width:auto;
    height:50px;
    max-width:100px;

    object-fit:contain;
}

.fcbv2-hero-photo__brandcopy {
    display:flex;
    flex-direction:column;
    gap:2px;
}

.fcbv2-hero-photo__brandcopy strong {
    color:#fff;

    font-size:.78rem;
    font-weight:900;
    letter-spacing:.08em;
}

.fcbv2-hero-photo__brandcopy span {
    color:var(--fcb-dourado-claro);

    font-size:.62rem;
    font-weight:700;
    letter-spacing:.04em;
}

.fcbv2-hero-photo__caption {
    position:absolute;
    z-index:4;
    right:32px;
    bottom:35px;
    left:32px;

    display:flex;
    flex-direction:column;
    gap:7px;
}

.fcbv2-hero-photo__caption span {
    color:var(--fcb-dourado-claro);

    font-size:.65rem;
    font-weight:900;
    letter-spacing:.13em;
}

.fcbv2-hero-photo__caption strong {
    max-width:380px;

    color:#fff;

    font-family:"Playfair Display",Georgia,serif;
    font-size:1.75rem;
    font-weight:700;
    line-height:1.1;
}


/* reforco de contraste do rodape da loja */

.fcbv2-store .fcbv2-store__footer,
.fcbv2-store .fcbv2-store__footer p {
    color:rgba(255,255,255,.78);
}


@media (max-width:1050px) {

    .fcbv2-hero-photo {
        min-height:500px;
    }

    .fcbv2-hero-photo__caption strong {
        font-size:1.5rem;
    }
}

@media (max-width:820px) {

    .fcbv2-hero-photo {
        width:100%;
        min-height:470px;
        margin:35px auto 0;

        border-radius:22px 22px 70px 22px;
    }
}

@media (max-width:560px) {

    .fcbv2-hero-photo {
        min-height:420px;
    }

    .fcbv2-hero-photo__brand {
        top:16px;
        left:16px;

        max-width:calc(100% - 32px);
    }

    .fcbv2-hero-photo__logo {
        height:42px;
        max-width:84px;
    }

    .fcbv2-hero-photo__caption {
        right:22px;
        bottom:25px;
        left:22px;
    }

    .fcbv2-hero-photo__caption strong {
        font-size:1.3rem;
    }
}


/* ==========================================================
   H3F1 — COMUNICACAO FCB
   ========================================================== */

.fcbv2-media {
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(25,122,115,.12),
            transparent 32%
        ),
        #f7f5ee;
}

.fcbv2-media__heading {
    max-width:720px;
    margin-bottom:38px;
}

.fcbv2-media__heading > span {
    display:block;
    margin-bottom:10px;

    color:#b9922e;

    font-size:.7rem;
    font-weight:900;
    letter-spacing:.14em;
}

.fcbv2-media__heading h2 {
    margin:0;

    color:#0b3d3b;

    font-family:"Playfair Display",Georgia,serif;
    font-size:clamp(2.2rem,4vw,3.7rem);
    line-height:.98;
}

.fcbv2-media__heading h2 em {
    display:block;

    color:#197a73;

    font-style:normal;
}

.fcbv2-media__heading p {
    max-width:610px;
    margin:18px 0 0;

    color:#63736e;
    line-height:1.7;
}

.fcbv2-media__grid {
    display:grid;
    grid-template-columns:minmax(0,1.7fr) minmax(300px,.7fr);
    gap:24px;
    align-items:stretch;
}

.fcbv2-media__interviews {
    min-width:0;
    overflow:hidden;

    border:1px solid #d8e2df;
    border-radius:18px;

    background:#fff;

    box-shadow:0 18px 45px rgba(11,61,59,.08);
}

.fcbv2-media__interviews > * {
    margin-top:0;
    margin-bottom:0;
}

.fcbv2-radio {
    position:relative;

    display:flex;
    min-height:330px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;

    overflow:hidden;

    padding:34px;

    border-radius:18px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(244,215,124,.20),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #0b3d3b,
            #12645f
        );

    color:#fff;

    box-shadow:0 20px 50px rgba(11,61,59,.18);
}

.fcbv2-radio::before {
    content:"";

    position:absolute;
    top:-90px;
    right:-90px;

    width:220px;
    height:220px;

    border:1px solid rgba(244,215,124,.18);
    border-radius:50%;
}

.fcbv2-radio__signal {
    position:absolute;
    top:34px;
    left:34px;

    display:flex;
    height:36px;
    align-items:flex-end;
    gap:4px;
}

.fcbv2-radio__signal span {
    display:block;

    width:4px;

    border-radius:4px;

    background:#f4d77c;
}

.fcbv2-radio__signal span:nth-child(1) {
    height:12px;
}

.fcbv2-radio__signal span:nth-child(2) {
    height:24px;
}

.fcbv2-radio__signal span:nth-child(3) {
    height:34px;
}

.fcbv2-radio__signal span:nth-child(4) {
    height:20px;
}

.fcbv2-radio__label {
    margin-bottom:12px;

    color:#f4d77c;

    font-size:.68rem;
    font-weight:900;
    letter-spacing:.13em;
}

.fcbv2-radio h3 {
    max-width:350px;
    margin:0;

    color:#fff;

    font-family:"Playfair Display",Georgia,serif;
    font-size:2rem;
    line-height:1.04;
}

.fcbv2-radio h3 em {
    color:#f4d77c;
    font-style:normal;
}

.fcbv2-radio p {
    max-width:360px;
    margin:17px 0 24px;

    color:rgba(255,255,255,.76);

    font-size:.84rem;
    line-height:1.65;
}

@media (max-width:900px) {

    .fcbv2-media__grid {
        grid-template-columns:1fr;
    }

    .fcbv2-radio {
        min-height:300px;
    }
}

@media (max-width:560px) {

    .fcbv2-media__heading h2 {
        font-size:2.25rem;
    }

    .fcbv2-radio {
        min-height:290px;
        padding:26px;
    }

    .fcbv2-radio__signal {
        top:26px;
        left:26px;
    }

    .fcbv2-radio h3 {
        font-size:1.7rem;
    }
}
