/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}



header {
    background-color: #f8f8f8;
    color: #1d473f;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo img {
    height: 100px;
    margin-right: 1rem;
}

.company-info {
    text-align: left;
}

.company-info h1 {
    margin: 0;
    font-size: 2rem;
}

.company-info p {
    margin: 0;
    font-size: 1.25rem;
}

nav {
    margin-top: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #97989a;
    border-radius: 5px;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

.hero {
    background-image: url('imagens/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
}

.cta-button {
    background-color: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #555;
}

.curiosidades {
    padding: 2rem;
    background-color: white;
}

.curiosidades h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.curiosidade {
    background-color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.curiosidade:hover {
    transform: scale(1.05);
}

.curiosidade img.curiosidade-icon {
    width: 80px;
    height: 80px;
    margin-right: 1.5rem;
    border-radius: 50%;
}

.curiosidade-content {
    max-width: 600px;
}

.curiosidade h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.planos {
    padding: 2rem;
    background-color: white;
    text-align: center;
}

.planos h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.plano {
    background-color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.plano:hover {
    transform: scale(1.05);
}

.plano-content {
    max-width: 600px;
    text-align: center;
}

.plano-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

footer {
    background-color: #1d473f;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
    position: relative;
    bottom: 0;
}

.sobre {
    padding: 2rem;
    background-color: white;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sobre h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.sobre h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contato {
    padding: 2rem;
    background-color: white;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contato h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contato-opcoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
}

.contato-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.contato-item p {
    margin-top: 0.5rem;
}

.contato-item a {
    color: #1d473f;
    text-decoration: none;
    text-align: center;
}

.contato-item a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .curiosidades h2 {
        font-size: 1.5rem;
    }

    .curiosidade {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .curiosidade img.curiosidade-icon {
        margin-bottom: 1rem;
    }

    .curiosidade h3 {
        font-size: 1.25rem;
    }

    .curiosidade p {
        font-size: 1rem;
    }

    .planos h2 {
        font-size: 1.5rem;
    }

    .plano {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
    }

    .plano-content h3 {
        font-size: 1.25rem;
    }

    .plano-content p {
        font-size: 1rem;
    }
}
