/* Campanha */
.campaign-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 800px;
    gap: 20px;
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.campaign-phase-card {
    flex: 1;
    background: rgba(10, 20, 40, 0.8);
    border: 1px solid #4488ff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(68, 136, 255, 0.3);
}

.campaign-phase-card img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid rgba(68, 136, 255, 0.5);
}

.campaign-phase-card h2 {
    margin: 0 0 10px 0;
}

.campaign-phase-card p {
    color: #ccc;
    font-size: 1.1em;
    line-height: 1.4;
}

.btn-nav {
    background: transparent;
    color: #4488ff;
    border: none;
    font-size: 3em;
    cursor: pointer;
    transition: 0.2s;
    text-shadow: 0 0 10px rgba(68, 136, 255, 0.5);
}

.btn-nav:hover {
    color: #fff;
    transform: scale(1.2);
}

.btn-nav:disabled {
    color: #444;
    cursor: not-allowed;
    text-shadow: none;
}

/* Cinemática */
#cinematic-letterbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

#cinematic-letterbox .bar-top,
#cinematic-letterbox .bar-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 12%;
    background: #000;
    transition: transform 1s ease-in-out;
}

#cinematic-letterbox .bar-top {
    top: 0;
    transform: translateY(-100%);
}

#cinematic-letterbox .bar-bottom {
    bottom: 0;
    transform: translateY(100%);
}

#cinematic-letterbox.active .bar-top,
#cinematic-letterbox.active .bar-bottom {
    transform: translateY(0);
}

#cinematic-dialogue {
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 800px;
    background: rgba(10, 20, 40, 0.95);
    border: 1px solid #4488ff;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    font-size: 1.2em;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(68, 136, 255, 0.4);
    display: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

#cinematic-dialogue .portrait-container {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border: 2px solid #4488ff;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 10px rgba(68, 136, 255, 0.3);
}

#cinematic-dialogue .portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cinematic-dialogue .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#cinematic-dialogue .speaker {
    color: #4488ff;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#cinematic-dialogue .text {
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#cinematic-dialogue.side-right {
    flex-direction: row-reverse;
}

#cinematic-dialogue.side-right .content {
    text-align: right;
}

@media (max-width: 600px) {
    #cinematic-dialogue {
        width: 95%;
        padding: 15px;
        bottom: 10%;
        font-size: 1em;
    }
    #cinematic-dialogue .portrait-container {
        width: 80px;
        height: 80px;
    }
}
