/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a6d38;
    --primary-dark: #13592d;
    --secondary: #f8c300;
    --light: #f5f5f5;
    --dark: #333;
    --gray: #777;
}

body {
    background-color: #f9f9f9;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--secondary);
}

.cta-button {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #e6b400;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/torcedores-brasileiros-comemorando-gol-futemais.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.3;
}

.feature-card p {
    line-height: 1.6;
}

/* App Showcase */
.app-showcase {
    padding: 60px 0;
    background-color: var(--light);
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.showcase-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.showcase-image img:hover {
    transform: scale(1.05);
}

.showcase-text {
    flex: 1;
    min-width: 300px;
}

.showcase-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.showcase-text p {
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.6;
}

.steps {
    margin-top: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.step-text p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Quality Section */
.quality-section {
    padding: 60px 0;
    background-color: white;
}

.quality-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quality-text {
    flex: 1;
    min-width: 300px;
}

.quality-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.quality-image img:hover {
    transform: scale(1.05);
}

.quality-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.quality-text p {
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.6;
}

/* Usage Section */
.usage-section {
    padding: 60px 0;
    background-color: var(--light);
}

.usage-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.usage-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

.usage-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.usage-image img:hover {
    transform: scale(1.05);
}

.usage-text {
    flex: 1;
    min-width: 300px;
}

.usage-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.usage-text p {
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.6;
}

.benefits {
    margin-top: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.benefit-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit span {
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e6b400;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
}

/* Additional styles for policy pages */
.page-hero {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.policy-content, .about-content, .disclaimer-content {
    padding: 60px 0;
    background-color: white;
}

.policy-section, .about-section, .disclaimer-section {
    margin-bottom: 40px;
}

.policy-section h2, .about-section h2, .disclaimer-section h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.policy-section p, .about-section p, .disclaimer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--dark);
}

.policy-section ul, .about-section ul, .disclaimer-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section li, .about-section li, .disclaimer-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* About page specific styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.value-card {
    background-color: var(--light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    margin-top: 30px;
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat p {
    font-size: 0.9rem;
}

/* Mobile-First Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    nav ul {
        gap: 12px;
        justify-content: center;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 60vh;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features, .app-showcase, .quality-section, .usage-section, .cta-section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .showcase-content, .quality-content, .usage-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .showcase-image, .quality-image, .usage-image {
        min-width: 100%;
        order: 2;
    }
    
    .showcase-text, .quality-text, .usage-text {
        min-width: 100%;
        order: 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    nav ul {
        gap: 8px;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .showcase-text h2, .quality-text h2, .usage-text h2 {
        font-size: 1.4rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .policy-section h2, .about-section h2, .disclaimer-section h2 {
        font-size: 1.3rem;
    }
}