/* estilos específicos para beerd.html */
.beer-detail-section {
    background-color: #f1d8ba;
    padding: 30px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.beer-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.beer-detail-image {
    flex: 2 1 520px;
    min-width: 360px;
    max-width: 680px;
}

.beer-detail-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.beer-detail-card {
    flex: 1 1 480px;
    min-width: 320px;
    background-color: #fff6ec;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.beer-detail-card h2 {
    margin-top: 0;
    color: #5d4e37;
    font-size: 2rem;
}

.beer-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.beer-stat-item {
    background-color: #f6e4d0;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-label {
    color: #8b6f47;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.stat-value {
    color: #3f2c19;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-note {
    color: #6b4f34;
    font-size: 0.88rem;
}

.beer-description h3,
.beer-reviews h3 {
    margin: 0 0 14px;
    color: #5d4e37;
}

.beer-description p {
    margin: 0;
    color: #4a3823;
    line-height: 1.75;
}

.beer-reviews {
    margin-top: 24px;
}

.review-card {
    background-color: #f7e2c8;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.review-author {
    margin: 0 0 8px;
    color: #5d4e37;
    font-weight: 700;
}

.review-text {
    margin: 0;
    color: #4a3823;
    line-height: 1.6;
}

@media (max-width: 860px) {
    .beer-detail-layout {
        flex-direction: column;
        align-items: center;
    }
}
