:root {
    --primary-color: #4B2E83; /* Cor roxa do logo */
    --header-color: #412D69;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
header {
    background-color: var(--header-color);
    padding: 2px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    height: 50px;
    display: block;
    margin: 20px auto;
}

/* Hero Section */
.hero {
    padding: 0;
    margin: 0;
    background-color: var(--light-gray);
    display: flex;
    align-items: flex-start;
    height: auto;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    padding: 0;
    margin: 0;
    height: auto;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    height: auto;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    padding: 0;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    padding: 0;
}

.store-buttons {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.store-button {
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-5px);
}

.store-button img {
    height: 50px;
}

.fade-in {
    animation: fadeIn 1s ease-in forwards;
    opacity: 1 !important;
}

/* Features Section */
.features {
    padding: 0;
    margin: 0;
    background-color: var(--white);
}

.features h2 {
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    padding: 10px 0;
    font-size: 2rem;
}

.features-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.intro-text, .outro-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .store-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}
