/* COPY BLOCK — phone-like, centered column */
.copy-box {
    width: 100%;
    /* match the main container feel */
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    font-size: clamp(17px, 5.6vw, 17px);
    color: var(--text, #f0f0f0);
    line-height: 1.75;
    text-align: center;
}

/* Headings inside the copy area */
h2 {
    font-size: clamp(25px, 5vw, 30px);
    font-weight: 800;
    color: var(--accent, #ff4d4d);
    margin-bottom: 6px;
    line-height: 1.25;
}

.copy-box h3 {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #ff8080;
    margin-top: 6px;
}

/* Emphasis chips */
.copy-box .highlight {
    font-weight: 600;
    color: #ffc2c2;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 10px;
    line-height: 1.6;
}

.copy-box .question {
    font-size: clamp(18px, 3.8vw, 20px);
    font-weight: 600;
    color: #ffbaba;
    margin-top: -6px;
}

/* Dots separators */
.dots {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 0;
    opacity: 0.9;
}

.dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

/* Alert list items (feature bullets) */
.alert-list {
    width: 90%;
    background: var(--surface, rgba(255, 255, 255, 0.062));
    border-left: 5px solid var(--accent, #ff4d4d);
    padding: 16px 18px;
    border-radius: 12px;
    font-weight: 500;
    color: #fdd;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    /* bullets read better left-aligned */
}

/* Info callout box */
.info-box {
    margin: 32px 0;
    width: 100%;
    background: var(--surface, rgba(255, 255, 255, 0.062));
    border: 1px dashed var(--accent, #ff4d4d);
    padding: 18px;
    border-radius: 14px;
    color: #f8dada;
    line-height: 1.7;
    text-align: center;
    font-weight: 800;
}

.warranty-box {
    margin: 32px 0;
    width: 100%;
    /* gradiente vivo em tons de vermelho */
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.15), rgba(204, 0, 0, 0.25));
    border: 2px solid rgba(255, 77, 77, 0.7);
    padding: 22px;
    border-radius: 16px;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    font-weight: 800;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.warranty-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 28px rgba(255, 0, 0, 0.4);
}

/* selo flutuante opcional (canto superior) */
.warranty-box::before {
    content: "🔒 Compra Segura";
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(to right, #ff1a1a, #cc0000);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.3);
}


.fa-circle-check {
    font-size: 20px;
    color: rgb(53, 135, 230);
}

/* Quote / emphasis block */
.quote-box {
    width: 100%;
    background: rgba(255, 77, 77, 0.06);
    padding: 18px;
    border-radius: 14px;
    border-left: 4px solid var(--accent, #ff4d4d);
    font-style: italic;
    color: #f5baba;
    line-height: 1.8;
    text-align: left;
}

/* Big pill highlight */
.big-highlight {
    font-size: clamp(18px, 4.4vw, 22px);
    font-weight: 800;
    color: #fff;
    background: linear-gradient(to right, #ff1a1a, #cc0000);
    padding: 10px 16px;
    border-radius: 10px;
    display: inline-block;
    margin: 8px 0;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
    text-align: center;
}

/* Final call line */
.final-call {
    font-weight: 600;
    font-size: clamp(18px, 3.8vw, 20px);
    color: #ffcaca;
    margin-top: 10px;
}

/* Spacing tuning on larger screens (keeps the tight, centered feel) */
@media (min-width: 1024px) {
    .copy-box {
        gap: 24px;
    }

    .alert-list,
    .quote-box {
        padding: 18px 20px;
    }
}