/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #005f99;
    color: white;
    padding: 20px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none; /* Esconder o botão por padrão */
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu {
    list-style: none; /* Remove os marcadores padrão */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove o margin padrão */
    display: flex; /* Flex para o menu principal */
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #00b3ff;
}

.logo img {
    max-width: 200px; /* Tamanho Original: 15*/
}

#hero {
    display: flex;   
    /* background-color: #0077cc; */
    background-image: linear-gradient(to left, #00b3ff, #0077cc);
    color: white;
    padding: 64px 0;
    text-align: left;
}

/* #hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
} */

.banner{
    display: flex;  
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-itens{
    width: 100%;
    max-width: 550px;
}

#banner-left h2 {
    font-size: 2.5rem;
    margin-top: 32px;
    margin-bottom: 32px;
}

#banner-left h3 {
    margin-bottom: 48px;  
}

#banner-left a {
    margin-bottom: 48px;
}

#lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaço entre os inputs */
    height: 100%;
    background-color: #f0f0f0;
    /* background-color: #00b3ff; */
    border-radius: 15px;
    box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#lead-form h3{
    color: #005f99;
    padding-top: 40px;
}

#lead-form input,
#lead-form button {
    width: 90%;
    padding: 10px;
    margin: 16px 0px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Arredondamento dos cantos */
    /* background-color: #f0f0f0; */
}

#lead-form button {
    background-color: #005f99;
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 32px;
}

#lead-form button:hover {
    background-color: #004a73;
}

.modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.close-btn {
    margin-top: 15px;
    cursor: pointer;
    color: white;
    background-color: #007bff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
}

.btn {
    background-color: #00b3ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #005f99;
}

.texto {
    padding: 100px 0;
    text-align: center;
    font-size: 2.5rem; 
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

#img-texto {
    background-color: #f0f0f0;
}

#img-texto img {
    height: auto;
}

#img-texto p {
    flex: 1;
    font-size: 2.0rem; 
}

#benefits {
    background-color: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

#benefits h2 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    color: #005f99;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px; /* Adiciona espaço entre os itens */
}

.benefit {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit h2 {
    padding-bottom: 20px;
}

.benefit h3 {
    font-size: 1.5rem;
    color: #005f99;
    margin-bottom: 15px;
}

#features {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
}

#features h2 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    color: #005f99;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature img {
    max-width: 300px;
    margin-top: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    color: #005f99;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #333;
}

#plans {
    background-color: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

#plans h2 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    color: #005f99;
}

.plans-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plan {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plan.featured {
    border: 2px solid #0077cc;
}

.plan h3 {
    font-size: 1.5rem;
    color: #005f99;
}

.plan h4 {
    font-size: 2.0rem;
    color: #4d4d4d;
}

.plan p {
    margin-bottom: 20px;
}

.plan ul.plan-benefits {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 20px;
    text-align: left;
}

.plan ul.plan-benefits li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}

footer {
    background-color: #005f99;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #00b3ff;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu {
        display: none; /* Esconder o menu em telas menores */
        flex-direction: column; /* Organizar opções verticalmente */
        position: absolute;
        top: 60px; /* Ajuste conforme necessário */
        right: 0;
        background-color: #005f99; /* Fundo do menu */
        width: 100%; /* Largura total */
    }

    .menu.show {
        display: flex; /* Exibir menu quando a classe 'show' é adicionada */
    }

    .hamburger {
        display: block; /* Mostrar botão hamburger */
    }

    #hero {
        text-align: center;
    }

    #banner-left {
        padding-bottom: 32px;
    }

    #banner-left h2{
        margin-top: 0px;
    }

    .flex-container {
        flex-direction: column;
        text-align: center;

    }

    #img-texto img {
        width: 450px;
    }

}
