* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5e4f;
    --secondary-color: #0066cc;
    --text-color: #333333;
    --bg-color: #ffffff;
    --accent-color: #0066cc;
    --hover-color: #0052a3;
    --nav-color: #1e8e5f;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--nav-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e0e0e0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Top CTA Button */
.top-cta {
    text-align: center;
    padding: 1rem 0;
    background: #ffffff;
}

.top-cta-button {
    display: inline-block;
    background: #0066cc;
    color: #ffffff !important;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.top-cta-button:hover {
    background: #0052a3;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #333333;
    padding: 2rem 0 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: bold;
    text-align: center;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333333;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    display: none;
}

.features {
    display: none;
}

/* Features Show Section */
.features-show {
    background: #2D574E;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.features-show h2 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.features-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-item {
    background: transparent;
    padding: 1rem;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Robux Icon - Gold hexagon */
.feature-icon-robux {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.robux-symbol {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Free R$ Icon - Green with white circle */
.feature-icon-free {
    background: #00C853;
    border-radius: 15px;
    position: relative;
}

.feature-icon-free::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #00C853;
}

.free-symbol {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: #00C853;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.free-badge {
    position: absolute;
    background: #FF9800;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    white-space: nowrap;
}

/* Platforms Icon - iOS and Android */
.feature-icon-platforms {
    background: #2D574E;
    border: 2px solid #4A8B7A;
    border-radius: 15px;
}

.platform-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.apple-icon {
    font-size: 3.5rem;
    color: #4A8B7A;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.android-icon {
    font-size: 3rem;
    filter: brightness(1.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Countdown Section */
.countdown-section {
    background: #ffffff;
    padding: 2rem 0;
    text-align: center;
    color: #333333;
    display: none;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.countdown-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.countdown-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333333;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    border: 2px solid #ddd;
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: #333333;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.main-content {
    text-align: center;
}

.main-content h1 {
    font-size: 2rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.main-content h1 + p {
    text-align: left;
}

.main-content h2 {
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.main-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.main-content strong {
    font-weight: bold;
    color: #000000;
}

/* Team Members */
.team-members {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.team-member p {
    font-size: 1rem;
    color: #333333;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.content-section {
    margin: 2rem 0;
    padding: 0;
    text-align: center;
}

.content-section h2 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    text-align: center;
}

.content-section p {
    margin-bottom: 1rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-image[src=""],
.section-image[alt=""] {
    display: none;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
    padding: 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: bold;
}

.faq-section > p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333333;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: transparent;
    padding: 1rem 0;
    border-radius: 0;
    border-bottom: 2px solid #ddd;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: none;
}

.faq-item:hover {
    border-color: #ddd;
    transform: none;
}

.faq-item h3 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.faq-item p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2D574E;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.cookie-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-notice p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.cookie-button {
    background: #0066cc;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cookie-button:hover {
    background: #0052a3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--nav-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .features-list {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-item {
        max-width: 100%;
    }

    .team-members {
        flex-direction: column;
        gap: 2rem;
    }

    .team-member {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeIn 0.6s ease-in;
}

.faq-item {
    animation: fadeIn 0.6s ease-in;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--secondary-color);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--secondary-color);
    color: #ffffff;
}

