/* Segunda seção da landing: consequências de uma comunicação limitada. */
.stakes,
.stakes * {
    box-sizing: border-box;
}

.stakes {
    --stakes-cream: var(--landing-cream);
    --stakes-gold: var(--landing-gold);
    --stakes-gray: var(--landing-maroon);
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: var(--stakes-cream);
    color: var(--landing-ink, #2b2b2b);
    font-family: var(--font-inter, Arial, sans-serif);
    overflow: hidden;
}

.stakes-main {
    position: relative;
    flex: 1 0 auto;
    width: 100%;
    max-width: 1440px;
    min-height: 560px;
    margin: 0 auto;
    padding: 92px var(--page-inset, 60px) 70px;
}

.stakes-frame {
    position: absolute;
    top: 40px;
    right: var(--page-inset, 60px);
    display: block;
    width: auto;
    height: calc(100% - 40px);
    object-fit: contain;
    object-position: right top;
    pointer-events: none;
}

.stakes-intro,
.stakes-grid {
    position: relative;
    z-index: 1;
}

.stakes-intro {
    max-width: 760px;
}

.stakes-intro h2 {
    margin: 0 0 16px;
    color: var(--stakes-gold);
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(24px, 1.75vw, 30px);
    font-weight: 500;
    line-height: 1.1;
}

.stakes-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
}

.stakes-intro strong {
    font-weight: 700;
}

.stakes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.4vw, 38px);
    max-width: 1100px;
    margin-top: 112px;
}

.stakes-card {
    min-height: 170px;
    padding: 26px 22px 24px;
    border-radius: 30px;
    background: var(--landing-maroon);
    color: #ffffff;
    text-align: center;
}

.stakes-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--stakes-gold);
}

.stakes-card h4 {
    margin: 0 0 9px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.stakes-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.32;
}

.stakes-closing {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 145px;
    padding: 28px var(--page-inset, 60px);
    background: var(--stakes-gray);
    color: var(--stakes-cream);
}

.stakes-closing-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.stakes-door {
    flex: 0 0 48px;
    width: 48px;
    height: 62px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.72);
    stroke-width: 1.4;
}

.stakes-closing p {
    margin: 0;
    font-size: clamp(17px, 1.25vw, 21px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
}

@media (max-width: 1024px) {
    .stakes-main {
        min-height: 0;
        padding: 72px 30px 60px;
    }

    .stakes-frame {
        top: 30px;
        right: 30px;
        height: calc(100% - 30px);
    }

    .stakes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 72px;
    }

    .stakes-card {
        min-height: 160px;
    }
}

@media (max-width: 640px) {
    .stakes-main {
        padding: 56px 20px 48px;
    }

    .stakes-frame {
        display: none;
        top: 20px;
        right: 20px;
        height: calc(100% - 20px);
    }

    .stakes-intro h2 {
        font-size: 23px;
    }

    .stakes-intro p {
        font-size: 14px;
    }

    .stakes-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 52px;
    }

    .stakes-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .stakes-closing {
        min-height: 150px;
        padding: 28px 20px;
    }

    .stakes-closing-inner {
        gap: 10px;
    }

    .stakes-door {
        flex-basis: 38px;
        width: 38px;
        height: 52px;
    }

    .stakes-closing p {
        font-size: 15px;
        line-height: 1.15;
    }
}
