/* Aviso de prazo da confecção — obrigatório e visível, logo abaixo do hero
   de confeccao.html. Declara o prazo real e devolve para a home quem já tem
   o corte (o cliente do produto bom). */

.notice {
    width: 100%;
    background: #1a1a1a;
    border-top: 3px solid var(--primary-yellow);
    padding: clamp(2rem, 6vh, 3rem) 0;
    display: flex;
    justify-content: center;
}

.notice-container {
    max-width: 520px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.9rem, 3vh, 1.2rem);
}

.notice-text {
    font-size: clamp(0.98rem, 3.6vw, 1.12rem);
    font-weight: 400;
    line-height: 1.65;
    color: #e5e5e5;
}

.notice-text strong {
    color: #ffffff;
    font-weight: 700;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.95rem, 3.4vw, 1.05rem);
    font-weight: 700;
    color: var(--primary-yellow);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease;
}

.notice-link:hover {
    border-bottom-color: var(--primary-yellow);
}

.notice-link svg {
    width: 0.9em;
    height: 0.9em;
    flex-shrink: 0;
}

/* Tablets */
@media (min-width: 768px) {
    .notice-container {
        max-width: 680px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .notice-container {
        max-width: var(--content-max);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    .notice-text {
        font-size: 1.15rem;
        max-width: 72ch;
    }

    .notice-link {
        flex-shrink: 0;
    }
}
