/* Configurações Globais e de Fonte */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #333;
}

/* Container Principal */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo {
    display: block;
    max-width: 180px;
    margin: 0 auto 30px;
}

/* Títulos e Cabeçalho */
h1, h2, h3 {
    line-height: 1.3;
    color: #1a237e; /* Um azul escuro para os títulos */
}

h1 {
    font-size: 2em; /* 32px */
    text-align: center;
    margin-bottom: 10px;
}

.subtitulo {
    font-size: 1.1em; /* 18px */
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

h2 {
    font-size: 1.6em; /* 26px */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2em; /* 20px */
    color: #3949ab; /* Um tom de azul mais claro */
    margin-top: 30px;
}

/* Parágrafos e Links */
p {
    margin-bottom: 15px;
}

strong {
    color: #1a237e;
}

a {
    color: #3949ab;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Listas */
ul {
    padding-left: 20px;
    list-style-type: '✔ '; /* Adiciona um ícone de check na lista */
}

ul li {
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Seção de Chamada para Ação (Call to Action) */
.call-to-action {
    text-align: center;
    background-color: #f0f4ff;
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background-color: #1a237e;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #3949ab;
    transform: scale(1.05);
    text-decoration: none;
}

/* Assinatura */
.assinatura {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: left;
}

.assinatura p {
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
        padding: 15px 25px;
    }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.4em; }
}