:root {
    --primary-color: #FFC107;
    /* Vindo Yellow/Gold */
    --secondary-color: #333;
    --text-color: #F8F9FA;
    --text-muted: #ADB5BD;
    --background-dark: #121212;
    --background-card: #1E1E1E;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Language Toggle */
.lang-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-toggle button {
    background: none;
    border: none;
    color: #888;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    transition: color 0.3s;
}

.lang-toggle button.active {
    color: var(--primary-color);
}

.lang-toggle .divider {
    color: #555;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    width: 120px;
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 2.5rem;
}

.hero-subtext p {
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.feature-card {
    background-color: var(--background-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-muted);
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--background-card);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 15px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.user-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.club-logo {
    height: 50px;
    object-fit: contain;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-body {
    font-style: italic;
    color: #ddd;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
}

.testimonial-body::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -20px;
}

@media (max-width: 600px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .club-logo {
        height: 30px;
        align-self: flex-start;
    }
}

/* Showcase Section */
.showcase {
    padding: 5rem 0;
    background-color: #151515;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Carousel Layout */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 3rem 0;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.phone-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(0.9);
}

.phone-card.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.screen-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Carousel Controls */
.control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    z-index: 30;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.control-btn.prev {
    left: 0;
}

.control-btn.next {
    right: 0;
}


/* Store Badges */
.store-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.store-link img {
    height: 50px;
    transition: transform 0.2s;
}

.store-link:hover img {
    transform: scale(1.05);
}

/* Open Beta Section */
.open-beta {
    padding: 4rem 0;
    background-color: #222;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.open-beta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.open-beta p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.open-beta strong {
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #444;
    background: #333;
    color: #fff;
    width: 300px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    padding: 2rem 0;
    background-color: #000;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .phone-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .carousel-wrapper {
        padding: 0 10px;
    }

    .phone-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .control-btn {
        font-size: 2rem;
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
    }

    .control-btn.prev {
        left: 10px;
    }

    .control-btn.next {
        right: 10px;
    }
}