.palcos {
    width: 100%;
    max-width: 600px;
}

.palco-card {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: var(--section-gap);
    padding-left: 10px;
    padding-right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .palco-card-title {
        text-align: center;
        font-size: clamp(2rem, 2.5rem + 2vw, 3.75rem);
        margin-top: 4px;
        color: var(--yellow-100);
    }

    .palco-card-subtitle {
        text-align: center;
        margin-top: 4px;
        margin-bottom: 4px;
        color: var(--yellow-500);
    }

    .palco-card-img {
        margin-top: 12px;
        border-radius: 20px;
        width: 100%;
        max-width: 600px;
        margin: 12px auto auto;
    }

    .palco-card-description {
        margin-top: 12px;
        text-align: center;
        color: var(--white);
        margin-bottom: 48px;
        width: 100%;
        max-width: 600px;

        ul {
            text-align: center;
        }

        .enfasis-text {
            font-size: 30px;
            color: var(--yellow-100);
            font-family: "Kablammo", system-ui;
        }
    }
}

.concierto-card-description {
    background-color: white;
    margin: 20px auto 48px auto;
    max-width: 1100px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.concierto-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 150px;
    flex: 1;
}

.concierto-card-item i {
    font-size: 1.3rem;
    color: #f3c200;
    margin-top: 3px;
}

.detalle span:first-child {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #666;
}

.detalle span:last-child {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}

.concierto-content {
    color: var(--white);
}