/* Importação da Fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Variáveis de Cores e Estilos */
:root {
    --primary-color: #2ED573;
    --dark-color: #2f3542;
    --gray-color: #57606f;
    --light-color: #ffffff;
    --bg-color: #f1f2f6;
    --box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

/* Reset e Padrões Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #25a85a;
    border-color: #25a85a;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* Header e Navegação */
.main-header {
    padding: 1.5rem 0;
    background-color: var(--light-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}
.logo span {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 500;
}

/* Seção Hero (Principal) */
.hero {
    padding: 6rem 0;
    text-align: center;
}
.hero .container {
    max-width: 800px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.hero-buttons .btn {
    margin: 0 0.5rem;
}
.hero-image {
    margin-top: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Seções de Features */
.feature-section {
    padding: 6rem 0;
}
.feature-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-section:nth-child(even) .container {
    grid-template-areas: "image text";
}
.feature-section:nth-child(odd) .container {
     grid-template-areas: "text image";
}
.feature-text { grid-area: text; }
.feature-image { grid-area: image; }

.feature-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Seção de Call to Action (CTA) */
.cta-section {
    background-color: var(--bg-color);
    padding: 5rem 0;
    text-align: center;
}
.cta-section .container {
    max-width: 700px;
}
.cta-section .btn {
    margin-top: 1rem;
}

/* Footer (Rodapé) */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0;
    text-align: center;
}
.main-footer p {
    color: var(--bg-color);
    opacity: 0.8;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }

    .hero, .feature-section {
        padding: 4rem 0;
    }
    
    .feature-section .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "text";
        text-align: center;
    }
    .feature-section:nth-child(odd) .container {
        grid-template-areas: 
            "image"
            "text";
    }
}