.v2-included-subtitle {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--silver);
    margin-top: 40px;
    margin-bottom: 8px;
}

.media-placeholder {
    width: 100%;
    min-height: 120px;
    margin-top: 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Carousel de Feedbacks */
.carousel-container {
    width: 100%;
    margin: 40px 0 0;
    perspective: 1200px;
    overflow: hidden;
    padding: 20px 0 40px;
}

.carousel-viewport {
    transform: rotateX(45deg);
    transform-style: preserve-3d;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.carousel-item {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    will-change: transform;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-item.portrait {
    width: 220px;
    height: 300px;
}

.carousel-item.landscape {
    width: 340px;
    height: 220px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.carousel-item:hover {
    transform: translateZ(24px) scale(1.04);
    box-shadow: 0 8px 28px rgba(232, 63, 56, 0.35);
    border-color: rgba(232, 63, 56, 0.3);
}

.carousel-item:hover img {
    filter: brightness(1.08);
}

@media (max-width: 640px) {
    .carousel-container {
        perspective: 700px;
    }

    .carousel-item.portrait {
        width: 150px;
        height: 210px;
    }

    .carousel-item.landscape {
        width: 240px;
        height: 160px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 28px 32px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.modal-feedback {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 12px;
    min-height: 1.4em;
}

.modal-feedback.success {
    color: #4ade80;
}

.modal-feedback.error {
    color: var(--orange-soda);
}

/* Week Calendar */
.week-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
    background: rgba(255, 255, 255, 0.04);
}

.week-day {
    display: flex;
    flex-direction: column;
    min-height: 160px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s;
}

.week-day-header {
    padding: 10px 12px;
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.week-day-date {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    opacity: 0.6;
    margin-top: 2px;
    text-transform: none;
}

.week-day-active .week-day-header {
    color: var(--orange-soda);
    background: rgba(232, 63, 56, 0.06);
    border-bottom-color: rgba(232, 63, 56, 0.2);
}

.week-day-body {
    flex: 1;
    padding: 12px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(230, 229, 235, 0.85);
}

.week-day-active .week-day-body {
    background: rgba(232, 63, 56, 0.04);
    border-left: 2px solid rgba(232, 63, 56, 0.4);
}

.week-day-body p {
    margin: 0;
}

.week-day-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.week-day-empty-label {
    font-family: var(--font-secondary);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.15);
    font-style: italic;
    text-align: center;
}

@media (max-width: 640px) {
    .week-calendar {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .week-day {
        min-height: auto;
        flex-direction: row;
        align-items: stretch;
    }

    .week-day-header {
        writing-mode: initial;
        width: 64px;
        min-width: 64px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 6px;
        text-align: center;
    }

    .week-day-active .week-day-header {
        border-right-color: rgba(232, 63, 56, 0.2);
    }

    .week-day-body {
        padding: 14px 12px;
    }

    .week-day:not(.week-day-active) {
        display: flex;
    }

    .week-day-empty {
        justify-content: flex-start;
        align-items: center;
        padding: 14px 12px;
    }

    .week-day-empty-label {
        text-align: left;
    }
}