/* ============================================================
   SECTION 4 — ISABELLI (USANDO CORES GLOBAIS)
   ============================================================ */

:root {
    --bg-start: var(--bg-base-start);
    --bg-end:   var(--bg-base-end);
    --gray:     var(--stroke-gray);
    --gold1:    var(--gold-start);
    --gold2:    var(--gold-end);
}

/* ============================================================
   WRAPPER
   ============================================================ */

.isabelli-section {
    width: 100%;
    background: linear-gradient(299deg, var(--bg-start) 14%, var(--bg-end) 91%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===============================
   BLOCO 1 - MOLDURA ESQUERDA/TOP
   =============================== */

.isabelli-bloco-1 {
    width: 90%;
    max-width: 1400px;

    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;

    background: linear-gradient(299deg, var(--bg-start) 14%, var(--bg-end) 91%);
    border-radius: 6px;

    /* BORDA ESQUERDA + TOPO EM GRADIENTE */
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;

    border-image:
        linear-gradient(
            to right,
            rgba(210,168,64,1) 0%,
            rgba(210,168,64,0) 80%
        ) 1 100%;

    border-image-slice: 1;
}

/* Barra dourada */
.isabelli-bar {
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, var(--gold1), var(--gold2));
    border-radius: 20px;
    margin-bottom: 24px;
}

/* Título */
.isabelli-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.25;
}

.isabelli-gold {
    background: linear-gradient(90deg, var(--gold1), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.isabelli-gold-reversal {
    background: linear-gradient(90deg, var(--gold2), var(--gold1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Textos */
.isabelli-bloco-1-dir p {
    color: #d8d8d8;
    font-size: 1.3rem;
    line-height: 170%;
    margin-bottom: 18px;
}

/* Responsivo */
@media (max-width: 950px) {
    .isabelli-bloco-1 {
        flex-direction: column;
        padding: 50px 30px;
        gap: 40px;
    }
}


/* ============================================================
   SECTION 4 — BLOCO 2 — FINAL, IGUAL AO SLIDE ORIGINAL
============================================================ */

.isabelli-bloco-2 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 55% 35% 10%;
    align-items: center;
    gap: 1rem;
}

/* ===========================
   IMAGEM GRANDE
=========================== */

.isabelli-bloco-2-esq {
    position: relative;
    display: flex;
    justify-content: right;
}

.isabelli-bloco-2-esq img {
    width: 100%;
    max-width: 560px;
    object-fit: cover;
}

/* ===========================
   TEXTO
=========================== */

.isabelli-bloco-2-dir {
    padding-right: 40px;
}

.isabelli-nome {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 18px;

    background: linear-gradient(90deg, var(--gold1), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.isabelli-bloco-2-dir p {
    color: #DADADA;
    font-size: 1.4rem;
    line-height: 165%;
    margin-bottom: 16px;
}

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

@media (max-width: 950px) {
    .isabelli-bloco-2 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .isabelli-bloco-2-dir {
        padding-right: 0;
    }

    .isabelli-nome {
        font-size: 2.2rem;
    }

    .isabelli-bloco-2-esq img {
        max-width: 440px;
    }
}


/* ============================================================
   BLOCO 3 — VERSÃO PREMIUM (FUNDO ESCURO + BORDA DOURADA SUAVE)
   ============================================================ */

.isabelli-bloco-3 {
    width: min(1200px, 92%);
    padding: 10px 0 2px 100px;

    background: #141414; /* fundo escuro liso, igual ao slide */
    border-radius: 20px;

    /* Borda dourada fina com brilho suave */
    border: 1.8px solid transparent;
    background-image:
        linear-gradient(#141414, #141414),
        linear-gradient(90deg, rgba(210,168,64,0.5), rgba(225,114,23,0.35));
    background-origin: border-box;
    background-clip: padding-box, border-box;

    color: #e5e5e5;
}

/* Texto dividido em 2 colunas */
.isabelli-bloco-3-textos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.isabelli-bloco3-left {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;
    color: #d6d6d6;
}

.isabelli-bloco3-right {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.45;
    color: #ffffff;
}

.isabelli-bloco3-right span {
    background: linear-gradient(90deg, var(--gold1), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Linha final */
.isabelli-bloco3-bottom {
    margin-top: 22px;
    font-size: 1rem;
    color: #d0d0d0;
}

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

@media (max-width: 950px) {
    .isabelli-bloco-3-textos {
        flex-direction: column;
        gap: 20px;
    }

    .isabelli-bloco3-right {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .isabelli-bloco-3 {
        padding: 30px 24px;
    }

    .isabelli-bloco3-right {
        font-size: 1.15rem;
    }
}
