/* ********** Common Settings ********** */
h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

img {
    max-width: 100%;
}

.icon {
    height: 128px;
    width: 128px;
    border-radius: 50%;
    background-color: #111a99;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: rgba(47, 47, 145, 0.33) 0 7px 29px;
    transition: transform 0.25s;
}

.icon:hover {
    transform: scale(1.1);
}

.destaque .icon img {
    width: 64px;
    filter: brightness(0) invert(1);
}

h3, .duvidas > div > h4 {
    color: #111a99;
}

a, button {
    cursor: pointer;
}

.jumbotron {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.atlas-cta {
    border-radius: 22px;
    padding: 12px 30px;
    font-weight: 700;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.atlas-cta:hover {
    text-decoration: none;
    transform: translateY(-5px);
}

.atlas-cta-wide {
    width: 100%;
}

/* ********** Banner ********** */
#banner {
    position: relative;
}

#banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% + 120px);
    background-image: url(../img/patrocinio_bkg.jpg);
    background-size: cover;
}

#banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

#banner .container {
    position: relative;
    z-index: 1;
}

#banner header {
    overflow: hidden;
}

#banner header img {
    max-width: 80px;
}

/* ********** Feature ********** */
.feature img {
    width: 100%;
    max-width: 480px;
}

#feature-first {
    background: linear-gradient(168deg, #ffffff 55%, rgba(220, 255, 66, 0.75) 0);   
    
}

#feature-last {
    background: linear-gradient(12deg, #ffffff 45%, rgba(220, 255, 66, 0.75) 0);
    
}

/* ********** Seção Publico ********** */

#chart {
    text-align: center;
    color: #333;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.chart-container {
    width: 31%;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    display:flex; /* Alinha o conteúdo dentro do container */
    flex-direction: column; /* Alinha os filhos em coluna */
    justify-content: space-between; /* Distribui o espaço entre os elementos filhos */
    margin: 10px;
}

canvas {
    max-width: 100%;
    height: 150px;
}

/* ********** Cadastro ********** */
.cadastro {
    text-align: center;
    margin-top: 20px;
}

.cadastro input[type="email"] {
    padding: 12px;
    width: 300px;
    margin-right: 10px;
    border-radius: 16px;
    border: 1px solid #291ac9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cadastro input[type="email"]:focus {
    outline: none;
    border-color: #111a99;
    box-shadow: rgba(41, 26, 201, 0.33) 0 7px 29px;
}

.cadastro button {
    padding: 12px 30px;
    background-color: #291ac9;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}

.cadastro button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* ********** Contact ********** */
#contact {
    background-size: cover;
}

#contact ul li {
    padding: 3px 0;
}

/* ********** Copyright ********** */
#copyright {
    background: #192440;
    padding: 2rem 3rem;
}

#copyright #social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    transition: background-color 0.4s;
}

#copyright #social-media a i {
    color: #192440;
    font-size: 1.2rem;
    line-height: 40px;
}

#copyright #social-media a:hover {
    background: #002fff;
}

#copyright #social-media a:hover i {
    color: #fff;
}

/* ********** Responsiveness ********** */
@media (max-width: 700px) {
    #banner h1 {
        font-size: 2.5rem;
    }

    .jumbotron {
        padding: 2rem 1rem;
    }
}

.question {
    margin-bottom: 24px;
}

.striked {
    text-decoration: line-through;
}
