.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e6f5ea;
    /* verde bem claro */
}

.content-principal {
    background-color: #fff;
    width: 80%;
    max-width: 850px;
    margin: 30px auto;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header com gradiente */
.header {
    background: linear-gradient(to right, #40b986, #388357);
    padding: 40px 20px 20px;
    text-align: center;
    color: white;
    position: relative;
    border-top-left-radius: 10px;
    /* Raio no canto superior esquerdo */
    border-top-right-radius: 10px;
    /* Raio no canto superior direito */
    border-bottom-left-radius: 0;
    /* Mantém os cantos inferiores retos */
    border-bottom-right-radius: 0;

}

.header h1 {
    font-weight: bolder;
    font-size: 3em;
    margin: 10px 0 5px;
}

.book-icon {
    font-size: 50px;
    margin-bottom: 100px;

}

.header p {
    margin: 0;
    font-size: 1.1em;
    padding-bottom: 20px;
}


.icon {
    font-size: 50px;
    margin-bottom: 10px;
}

/* Conteúdo em duas colunas */
.tab ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
    padding: 0;
    list-style: none;
    margin: 40px 20px;
}

.tab li {
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    font-size: 1.20em;
    color: #555;
}

.tab li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #40b986;
}

/* Seções */
.text {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #40b986;
    margin-top: 30px;
    text-align: center;
}

.hero {
    text-align: center;
    margin-top: 40px;
}

.text2 {
    font-size: 2em;
}

.dinheiro {
    font-size: 2.7em;
    color: #40b986;
    margin: 10px 0;
    font-family: "Anton";
    font-weight: bold;
}

button {
    background-color: #40b986;
    color: white;
    padding: 15px 25px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #388357;
}

.text3 {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 20px;
    line-height: 2;
    text-align: center;
}

.hero-content {
    margin-top: 30px;
    padding: 0 10px;
}

.title3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: sans-serif;
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    background-color: #e6f5ea;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 40px;
    border-top: 1px solid #cce5d6;
}

.footer-content p {
    margin: 5px 0;
}

@media (max-width: 720px){

    .tab ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin: 40px 20px;
}

}