* {
    margin: 0.00;
    padding: 0.00;
    list-style: none;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* img {
    width: 400px;
    height: 400px;
} */

body {
    background-color: #0f0f1e;
    color: #fff;
    font-size: 16px;
    overflow: hidden;
}

header {
    position: fixed;
    width: 90vw;
    top: 0;
    padding: 20px 50px;
    display: flex;
    /* background-color: ; */
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.logo {
    font-size: 1rem;
    font-weight: 900;
    color: #00f7ff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    font-family: "Orbitron", sans-serif;
}

header nav ul {
    display: flex;
    gap: 48px;
}

header nav ul li {
    position: relative;
    cursor: pointer;
    padding: 5px 0;

}

header nav ul li a {
    color: #b8b8d0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

header nav ul li a:hover {
    color: #00f7ff;
}

header nav ul li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #00f7ff;
    bottom: 0;
    left: 0;
    transition: width 0.2s ease;
}

header nav ul li:hover::after {
    width: 100%;
}

.container {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0f0f1e 0%, #1f1f3a);
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, rgba(15, 15, 30, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -52%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.list {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;

    /* ANIMACAO */
    transform: translateX(100vw);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-image {
    max-width: 45%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.product-image img {
    max-width: 80%;
    min-height: 60%;
    filter: drop-shadow(0, 0 30px rgba(0, 247, 255, 0.3));

    /* ANIMACAO */
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .product-image img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    width: 55%;
    padding-right: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    flex-direction: column;
}

.product-tag {
    font-size: 1rem;
    text-transform: uppercase;
    color: #00f7ff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 4.5rem;
    font-family: "Orbitron", sans-serif;
    line-height: 1.1;
    margin-bottom: 20px;

    /* ANIMACAO */
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .product-name {
    transform: translateX(0);
    opacity: 1;
}


.description {
    font-size: 1.1rem;
    color: #b8b8d0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;

    /* ANIMACAO */
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .description {
    transform: translateX(0);
    opacity: 1;
}

.btn {
    padding: 12px 10px;
    background: linear-gradient(90deg, #00f7ff, #0066ff);
    border-radius: 30px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
}

.btn:hover {
    background: linear-gradient(90deg, #0066ff, #00f7ff);
    font-size: 1.05rem;
}

.arrow {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.arrow-btn:hover {
    background-color: rgba(0, 247, 255, 0.2);
    border-color: #00f7ff;
}

.indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.number {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.dot.active {
    background-color: #00f7ff;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.tech-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.circle:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 80%;
}

.circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 20%;
}

.circle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 70%;
}

/* Responsividade geral */
@media (max-width: 1200px) {
    .container {
        width: 100vw;
        padding: 0 20px;
    }

    .content {
        padding-right: 30px;
    }

    .product-name {
        font-size: 3rem;
    }

    .product-image img {
        max-width: 60vw;
        max-height: 200px;
    }
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        padding: 0 10px;
    }

    .list {
        width: 100%;
    }

    .content {
        width: 100%;
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .product-name {
        font-size: 2.2rem;
    }

    .description {
        font-size: 1rem;
        max-width: 90vw;
    }

    .product-image {
        max-width: 90vw;
        margin-bottom: 20px;
    }

    .product-image img {
        max-width: 80vw;
        max-height: 150px;
    }

    .btn {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }

    .circle:nth-child(1),
    .circle:nth-child(2),
    .circle:nth-child(3),
    .circle:nth-child(4) {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        padding: 10px 5vw;
        width: 100vw;
    }

    .logo {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    header nav ul {
        gap: 20px;
    }

    .container {
        padding: 0 2vw;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 10px 0;
        width: 100%;
        max-width: 180px;
    }

    .circle:nth-child(1),
    .circle:nth-child(2),
    .circle:nth-child(3),
    .circle:nth-child(4) {
        width: 40px !important;
        height: 40px !important;
    }
}