/* ============================================================
   Página: Dormentes e Cruzetas — Armazém do Eucalipto
   Complemento ao eucalipto-tratado.css (classes base compartilhadas)
   ============================================================ */

/* ==========================================================
   GRADE DE FOTOS — 5 COLUNAS
   ========================================================== */
.photos-row--5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Cancela o "último filho ocupa 2 colunas" do base para a linha de 5 */
@media (max-width: 768px) {
    .photos-row--5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .photos-row--5 .photos-row__item:last-child {
        grid-column: unset;
    }

    /* Botões do corpo — coluna única, texto centralizado */
    .content-block__cta { justify-content: stretch; }
    .btn-content {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
    }

    .cta-actions { flex-direction: column; align-items: stretch; }
    .btn-cta-whatsapp,
    .btn-cta-phone {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .photos-row--5 {
        grid-template-columns: 1fr 1fr;
    }

    .photos-row--5 .photos-row__item:nth-child(5) {
        grid-column: span 2;
    }

    .page-hero__actions { flex-direction: column; align-items: stretch; }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }
}

/* ==========================================================
   SEPARADOR VISUAL ENTRE DORMENTES E CRUZETAS
   ========================================================== */
.product-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-divider__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #CD9C3D, rgba(205,156,61,0.1));
}

.product-divider__line--right {
    background: linear-gradient(to left, #CD9C3D, rgba(205,156,61,0.1));
}

.product-divider__badge {
    background: #201101;
    color: #CD9C3D;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
    border: 1px solid rgba(205,156,61,0.3);
}

/* ==========================================================
   LINK INLINE
   ========================================================== */
.intro-link,
.inline-link {
    color: #AF8656;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.intro-link:hover,
.inline-link:hover {
    color: #CD9C3D;
}
