* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #fff;
    font-family: 'Epilogue', sans-serif;
    overflow: hidden;
    height: 100vh;
}

.app-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.section.active {
    opacity: 1;
    visibility: visible;
}

.content {
    text-align: center;
    perspective: 1000px;
}

/* Texto 3D Effect */
.text-3d-wrapper {
    margin-bottom: 20px;
}

.text-3d {
    font-size: 10vw;
    font-weight: 900;
    color: #fff;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-10deg);
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.7;
    letter-spacing: 5px;
}

/* Botão Customizado */
.next-btn {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.next-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

/* Imagem Reveal */
.image-reveal-wrapper {
    width: 40vw;
    height: 50vh;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    transform: rotateY(15deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
}

.reveal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

/* Elementos Flutuantes */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.2;
    filter: blur(2px);
}

.float-item:nth-child(1) { top: 20%; left: 20%; color: #1a49f2; }
.float-item:nth-child(2) { top: 60%; right: 25%; color: #f21a49; }
.float-item:nth-child(3) { bottom: 15%; left: 30%; color: #1af249; }
