/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 1em 0;
}

header img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-top: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.feature-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.feature-item h3 {
    margin-bottom: 15px;
}

.feature-item table {
    width: 100%;
    margin-bottom: 20px;
}

.feature-item td {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
}

.slider-image {
    width: 100%;
    height: auto;
    display: none;
}

.slider-image:first-child {
    display: block;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #000; /* Preto */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #333; /* Cinza escuro para efeito hover */
}

.back-button {
    background-color: #fff;
    color: #004080; /* Substituído o azul */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.back-button:hover {
    background-color: #f0f0f0;
}


/* Responsividade */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .feature-item {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .cta-button {
        width: 100%;
    }
}
