@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Estilos básicos para o corpo e texto */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, p {
    margin: 10px 0;
}

/* Estilos para botões */
.btn {
    padding: 12px 25px;
    border-radius: 8px;
    background-image: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-image: linear-gradient(to right, #0056b3, #004085);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn:active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

/* Estilos para o cabeçalho */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #0056b3;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features, .packages, .testimonials {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.feature, .package {
    background-color: #fafafa;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.testimonials {
    background-color: #eeeeee;
    padding: 20px;
    font-style: italic;
    border-left: 5px solid #007bff;
}

/* Estilos para o rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: #999;
    text-decoration: none;
    padding: 0 5px;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .features, .packages {
        flex-direction: column;
    }

    .feature, .package {
        width: 100%; /* Full width on small screens */
    }

    footer a {
        display: block; /* Stacking links vertically on smaller screens */
        margin: 5px 0; /* Adding some space between links */
    }
}
