/* Estilo geral */
body {
    background-color: rgba(11, 63, 219, 0.05);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Menu */
nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 16px;
    background: rgb(12, 89, 111);
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: white;
    color: rgb(11, 63, 219);
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
}

header img {
    width: 400px;
    height: auto;
    border-radius: 0%;
}

header h1 {
    margin-top: 20px;
    color: rgb(11, 63, 219);

}

/* Planos */
.planos {
    text-align: center;
    padding: 40px 20px;
}

.planos h2 {
    margin-bottom: 20px;
    color: rgb(11, 63, 219);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.921);


    /* Aumento do tamanho da letra */
    font-size: 20px;
}

.card strong {
    font-size: 22px;
    color: rgb(11, 63, 219);
}

.card:hover {
    transform: scale(1.05);
    background: #e0e0e0;
}

.card h3 {
    color: rgb(219, 129, 11);
}

/* Rodapé */
footer {
    text-align: center;
    background: rgb(243, 130, 74);
    color: white;
    padding: 15px;
    margin-top: 40px;
}

/* Contato */
.contato {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
}

.contato h2 {
    color: rgb(11, 63, 219);
    margin-bottom: 20px;
}

.contato form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
}

.contato label {
    text-align: left;
    font-weight: bold;
    color: #333;
}

.contato input,
.contato textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.contato button {
    background: rgb(18, 219, 11);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contato button:hover {
    background: rgb(8, 50, 180);
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content p {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}


.fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
}

.destaque {
    border: 2px solid gold;
    box-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 40px rgba(255, 215, 0, 0.7);
    animation: brilho 2s infinite alternate;
}

@keyframes brilho {
    from {
        box-shadow: 0 0 10px gold;
    }

    to {
        box-shadow: 0 0 25px gold;
    }
}