/* Estilos Gerais */
body {
    font-family: 'Poppins', sans-serif; /* A fonte exata precisa ser confirmada, usando uma similar */
    color: #4A5568;
    background-color: #fff;
    margin: 0;
    line-height: 1.6;
}

a {
    color: #00D084;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
}

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

header .logo a {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: #555;
    font-weight: 500;
}

.cta-button {
    background-color: #00D084;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #00b371;
    text-decoration: none;
}

/* Main Content */
main {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

article {
    flex: 3;
}

article h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

article h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

article p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-section {
    background-color: #f4f7f6;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Sidebar */
.sidebar {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}
