@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #EAEEF4;
    color: #222;
    line-height: 1.6;

}

header {
    background-color: #00163d;
    background-image: url("https://www.transparenttextures.com/patterns/vichy.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
    color: #E5E7EB;
    text-align: center;
    padding-top: 1rem;
}

header small {
    padding-bottom: 1rem;
    font-size: 1rem;
    font-weight: normal;
    display: block;
}

.hero {
    max-width: 970px;
    margin: 2rem auto;
    border: 2px dotted #aaa;
    padding: 2rem;
    border-radius: 15px;
    background-color: #3ac83f;
    color: white;
}

h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
}

.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border-top: 5px solid #0077cc;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #0077cc;
    color: #12334a;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.card p {
    margin-bottom: 1rem;

    color: #555;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.card ul li::before {
    content: "✔";
    color: #28a745;
    position: absolute;
    left: 0;
}

.botao {
    display: inline-block;
    border: 3px solid #8750F7;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.botao:hover {
    background-color: #8750F7;
    color: white;
}
.faq{
    max-width: 970px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
}

.outros {
    text-align: center;
    margin: 2rem 0;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #8750F7;
    color: white;
}