/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    color: white;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Rubik Mono One', sans-serif;
    font-weight: normal;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at center, #220040, #150025);
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: min(600px, 80%);
    margin-bottom: 5px;
    animation: fadeInScale 1s ease-out;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 0 20px;
}

.hero h1 span {
    color: #00FFA3;
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.7);
    display: inline-block;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    color: #7CFCC7;
    max-width: 800px;
    padding: 0 20px;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Botões */
.cta-btn {
    background-color: #00FFA3;
    color: #150025;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

.cta-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.8);
    transform: translateY(-3px);
}

/* Como Funciona */
.how-it-works {
    background-color: #F4F0FF;
    color: #150025;
    padding: 80px 0;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: rotate(-5deg) scale(1.03);
}

.card i {
    font-size: 3rem;
    color: #00FFA3;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #220040;
}

/* Avatar Creator */
.avatar-creator {
    background: linear-gradient(to right, #00FFA3, #7CFCC7);
    color: #150025;
    padding: 60px 20px;
    text-align: center;
}

.avatar-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-display {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.avatar-part {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.avatar-controls {
    width: 100%;
    max-width: 500px;
}

.avatar-option {
    margin-bottom: 20px;
}

.avatar-option h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.option-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.option-display {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.arrow-btn {
    background-color: #150025;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background-color: #220040;
    transform: scale(1.1);
}

/* Features */
.features {
    padding: 80px 0;
    background-color: white;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.feature-img,
.feature-text {
    flex: 1;
    padding: 20px;
}

.feature-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-text h3 {
    color: #220040;
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-text p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
}

.zig-zag {
    flex-direction: row;
}

.zag-zig {
    flex-direction: row-reverse;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #220040, #150025);
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    border: 1px solid rgba(0, 255, 163, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #00FFA3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial span {
    color: #7CFCC7;
    font-weight: bold;
}

/* Final CTA */
.final-cta {
    background-color: #00FFA3;
    color: #150025;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: #150025;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.credits {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00FFA3;
}

/* Animações de Scroll */
.slide-left,
.slide-right,
.slide-up,
.flip-in {
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

.slide-up {
    transform: translateY(50px);
}

.flip-in {
    transform: perspective(1000px) rotateY(90deg);
}

.animate {
    opacity: 1;
    transform: translateX(0) translateY(0) rotateY(0);
}

/* Animações */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .feature {
        flex-direction: column;
    }

    .zig-zag,
    .zag-zig {
        flex-direction: column;
    }

    .feature-img,
    .feature-text {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .credits {
        text-align: center;
    }

    .avatar-display {
        width: 150px;
        height: 150px;
    }

    .option-display {
        width: 50px;
        height: 50px;
    }
}