/**
 * DEVISA Travel Cubes - Estilos
 * Animación de cubos viajando en perspectiva hacia la cámara
 *
 * @package BXC_Base
 */

.devisa-travel {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: var(--devisa-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 600px;
    perspective-origin: 50% 50%;
}

.devisa-travel__text {
    position: relative;
    z-index: 10;
    font-family: var(--devisa-font-sans);
    font-weight: 300;
    font-size: clamp(24px, 3vw, 40px);
    color: var(--devisa-white);
    text-align: center;
    pointer-events: none;
    
    font-size: 6vw;
    
}
//
.devisa-travel__text .text-stich{
    text-shadow: 0px 10px 10px #000;
}
.devisa-travel__text .text-stich.onscreen{
    transition: all 1s;
    font-size: 4vw;
    text-shadow: 0 1px 1px #000;
}



.devisa-travel__cubes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform-style: preserve-3d;
}

.devisa-travel__cube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: translateZ(-1000px) scale(0.1);
    opacity: 0;
}

.devisa-travel__cube::before,
.devisa-travel__cube::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.devisa-travel__cube::before {
    transform: rotateX(90deg);
    transform-origin: bottom;
}

.devisa-travel__cube::after {
    transform: rotateY(90deg);
    transform-origin: right;
}

/* Variación de tamaños y colores */
.devisa-travel__cube:nth-child(3n) {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border-color: rgba(255, 255, 255, 0.5);
}

.devisa-travel__cube:nth-child(3n+1) {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.devisa-travel__cube:nth-child(5n) {
    width: 25px;
    height: 25px;
    margin-top: -12px;
    margin-left: -12px;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

/* Efecto de estela */
.devisa-travel__cube .trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    transform-origin: top center;
    transform: translate(-50%, 0) rotateX(90deg);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .devisa-travel {
        height: 50vh;
        min-height: 300px;
        perspective: 600px;
    }

    .devisa-travel__cube {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        margin-left: -15px;
    }

    .devisa-travel__cube:nth-child(3n+1) {
        width: 35px;
        height: 35px;
        margin-top: -17px;
        margin-left: -17px;
    }
}
