.apogeo-vista-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #201004; /* Dark background from image */
    color: #e5ccb3; 
    padding: 60px 40px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.apogeo-vista-container * {
    box-sizing: border-box;
}

.apogeo-vista-left {
    flex: 1 1 50%;
    max-width: 60%;
}

.apogeo-vista-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #a89f91;
    text-transform: uppercase;
}

.apogeo-vista-title span {
    color: #d35400; /* Orange highlight */
    font-weight: 700;
}

.apogeo-vista-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 2px solid #2a1610;
}

.apogeo-vista-image-wrapper img {
    width: calc(100% + 10px);
    height: auto;
    display: block;
    margin-right: -10px; /* Compensa o aumento e empurra a rebarba para fora do overflow */
}

.apogeo-vista-center {
    flex: 1 1 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.apogeo-nav-instruction {
    font-size: 11px;
    letter-spacing: 1px;
    color: #8c7e6c;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.5;
}

.apogeo-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.apogeo-btn {
    background: transparent;
    border: 2px solid #d35400;
    color: #d35400;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.apogeo-btn:hover:not(:disabled) {
    background: #d35400;
    color: #fff;
}

.apogeo-btn svg {
    width: 24px;
    height: 24px;
}

.apogeo-floor-display {
    font-size: 40px;
    font-weight: 400;
    color: #e5ccb3;
    margin: 10px 0;
}

.apogeo-vista-right {
    flex: 1 1 30%;
    max-width: 35%;
    display: flex;
    justify-content: center;
    position: relative;
}

.apogeo-vista-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    clip-path: inset(0 10px 0 0); /* Corta 10px do lado direito da imagem */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .apogeo-vista-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .apogeo-vista-left {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .apogeo-vista-center {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .apogeo-controls {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .apogeo-nav-instruction {
        margin-bottom: 20px;
    }
    
    .apogeo-vista-right {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .apogeo-vista-title {
        font-size: 18px;
    }
    
    .apogeo-floor-display {
        font-size: 32px;
    }
    
    .apogeo-btn {
        width: 40px;
        height: 40px;
    }
}
