/* Rota: produto (single) — WooCommerce-style layout */

/* ── Gallery ── */
.produto-single__gallery {
    position: sticky;
    top: 100px;
}

.produto-single__img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ── Info column ── */
.produto-single__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.produto-single__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #063063;
    margin: 0;
    line-height: 1.2;
}

.produto-single__description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #232323;
}

.produto-single__description p {
    margin: 0;
}

.produto-single__block {
    margin-top: 8px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #063063;
}

.produto-single__block-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #063063;
}

.produto-single__block-text {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.produto-single__block-text--muted {
    color: #888;
    font-style: italic;
}

.produto-single__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produto-single__benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.produto-single__benefits-list li:last-child {
    margin-bottom: 0;
}

.produto-single__benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #EBAA1D;
    font-weight: 700;
}

/* ── Mascote image ── */
.produto-single__mascote {
    display: flex;
    align-items: center;
}

.produto-single__mascote-img {
    max-width: 120px;
    height: auto;
}

/* ── Action buttons ── */
.produto-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.produto-single__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.produto-single__btn--whatsapp {
    background-color: #063063;
    color: #fff;
    border-color: #EBAA1D;
}

.produto-single__btn--whatsapp:hover {
    background-color: #0a4a8f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 48, 99, 0.3);
}

.produto-single__btn--whatsapp svg {
    flex-shrink: 0;
}

.produto-single__btn--back {
    background-color: transparent;
    color: #063063;
    border-color: #063063;
}

.produto-single__btn--back:hover {
    background-color: #063063;
    color: #fff;
    transform: translateY(-2px);
}

/* ── CTA Section ── */
.produto-single__cta {
    background-color: #E5E5E5;
    padding: 60px 0;
    margin-top: 60px;
}

.produto-single__cta-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #063063;
    margin-bottom: 12px;
}

.produto-single__cta-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #232323;
    margin-bottom: 28px;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .produto-single__gallery {
        position: static;
        margin-bottom: 20px;
    }

    .produto-single__title {
        font-size: 1.6rem;
    }

    .produto-single__btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .produto-single__actions {
        flex-direction: column;
    }

    .produto-single__cta {
        padding: 40px 0;
        margin-top: 40px;
    }

    .produto-single__cta-title {
        font-size: 1.5rem;
    }
}
