:root {
    --cor-padrao: #0000FF;
    --cor-padrao-hover: #000094;
    --cor-h1: #1C244B;
}

.bg-gray-900 {
    background-color: var(--cor-padrao);
}

.bg-gray-900:hover {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-400 {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-400:hover {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-300 {
    background-color: var(--cor-h1);
    color: white;
}

.bg-gray-100 {
    background-color: #fff;
}

/* Font and Basic Settings */
html {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--cor-h1);
    line-height: 1.6;
    background: rgb(236, 234, 253);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 234, 253, 1)), to(rgba(255, 255, 255, 1))) fixed;
}

a {
    text-decoration: none;
    color: var(--cor-h1);
}

.content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}

/* Header */
.header {
    background-color: #ECEAFDCC;
    padding: 0px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cor-h1);
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--cor-padrao);
}


.logo {
	cursor: pointer;
	min-width: 150px;
	max-width: 200px;
	max-height: 90px;
	object-fit: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo img {
	max-width: 200px;
	max-height: 200px;
	object-fit: contain;
}

.logo a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-criar-conta {
    background-color: var(--cor-padrao);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-criar-conta:hover {
    background-color: var(--cor-padrao-hover);
    transition: 0.3s;
}

/* Estilos para o ícone de menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 20px;
        right: 0;
        background-color: #fff;
        width: 200px;
        padding: 15px 0px 15px 9px;
        border: 1px solid var(--cor-padrao);
        border-radius: 10px;
        flex-direction: column;
        box-shadow: 0 0 5px var(--cor-padrao);
    }

    .logo img {
        max-width: 150px;
        max-height: 200px;
    }


    .menu-icon {
        display: block;
    }

    /* Quando o checkbox está marcado, mostra o menu */
    .menu-toggle:checked~.nav-links {
        display: flex;
    }
}

/* ------------- content ------------*/

.consulta {
    display: flex;
    /*width: 90%;*/
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0px 100px 0px;
}

.consulta img {
    width: 98px;
    height: 28px;
    margin-right: 10px;
    color: var(--cor-padrao);
}

.consulta h1 {
    color: var(--cor-h1);
    font-weight: 800;
    font-size: 54px;
    margin: 0px 0px 28px;
    line-height: 60px;
}

.consulta p {
    margin: 0px 0px 32px;
}

.consulta .info {
    margin: 20px 0px 0px;
    display: flex;
    align-items: center;
}

.consulta strong {
    font-weight: 700;
    margin-right: 5px;
}

.content-consulta-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-consulta-img img {
    width: 100%;
    height: auto;
}

.btn-consultar {
    background-color: var(--cor-padrao);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 20px 10px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
}

.btn-consultar:hover {
    background-color: var(--cor-padrao-hover);
    transition: 0, 3s;
}

.consulta-form {
    margin: 20px 0;
}

.consulta-form input {
    padding: 20px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 20px;
}

.consulta-form input {
    outline: none;
}

.consulta-form input:focus {
    border: 1px solid var(--cor-padrao);
    box-shadow: 0 0 5px var(--cor-padrao);

}

@media (max-width: 768px) {
    .consulta {
        display: flex;
        flex-direction: column;
        padding: 50px 0px 100px 0px;
    }

    .consulta h1 {
        font-weight: 800;
        font-size: 34px;
        margin: 0px 0px 28px;
        line-height: 40px;
    }

    .consulta .info {
        margin: 20px 0px 0px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .btn-consultar {
        padding: 20px 10px;
        cursor: pointer;
        width: 100%;
        font-size: 18px;
    }


    .consulta-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ------------- content FEATURES------------*/

.features {
    /*width: 90%;*/
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 20px;
}

.content-cards {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    width: 20%;
    vertical-align: top;
    flex: 1 150px;

}

.feature-card h3 {
    color: var(--cor-h1);
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 5px;
}

.feature-card p {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;

    color: var(--cor-h1);
    margin-top: 5px;
    margin-bottom: 5px;
}

.pricing h2 {
    color: var(--cor-padrao);
    font-weight: 800;
    font-size: 54px;
    margin: 0px 0px 28px;
    line-height: 60px;
}

.plan-cards h3 {
    color: var(--cor-padrao);
    font-weight: 800;
    font-size: 24px;
    margin: 0px 0px 28px;
    line-height: 60px;
}

.promo {
    font-size: 16px;
    margin-bottom: 5px;
}

.promo span {
    margin-left: 5px;
    margin-right: 5px;
    color: red;
}

.promo-two {
    margin-top: 0px;
    margin-bottom: 10px;
}



/* Pricing Section */
.pricing .plan-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 340px;
    min-width: 340px;
    text-align: center;
}


.old-price {
    text-decoration: line-through;
    color: #999;
}

.price {
    font-size: 38px;
    font-weight: bold;
    color: var(--cor-padrao);
    margin-bottom: 10px;
    margin-top: 0px;
}


.itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}

.itens svg {
    width: 20px;
    margin-right: 4px;
}

.itens p {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.plan-card button {
    background-color: var(--cor-padrao);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    margin-top: 20px;
    cursor: pointer;
}

.plan-card button:hover {
    background-color: var(--cor-padrao-hover);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .pricing h2 {
        color: var(--cor-padrao);
        font-weight: 800;
        font-size: 34px;
        margin: 0px 0px 28px;
        line-height: 40px;
    }

}

/* Hero Section */
.hero {
    background-color: #F5F3FF;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 36px;
    color: #333;
}

.hero p {
    font-size: 16px;
    margin: 20px 0;
}

/* Features Section */
.features-1,
.pricing,
.compare-plans {
    padding: 50px 0;
    text-align: center;
}

/*--------------------- FAQ --------------------- */

/* FAQ Section */
.faq {
    padding-top: 90px;
    padding-bottom: 90px;
}

.faq h2 {
    margin-bottom: 20px;
    color: var(--cor-padrao);
    font-weight: 800;
    font-size: 54px;
    margin: 0px 0px 28px;
    line-height: 60px;
}

.compare-plans h2 {
    margin-bottom: 20px;
}


.content-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub {
    margin-bottom: 70px;
}

.faq-perg {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.details {
    display: flex;
    width: 70%;
    border-bottom: 1px solid var(--cor-padrao);
    padding: 10px 20px;
}

.details summary {
    color: var(--cor-padrao);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    list-style: none;
    outline: none;
    display: flex;
}

.details p {
    display: flex;
    justify-content: flex-start;
    color: var(--cor-h1);
    font-size: 14px;
    font-weight: 700;
}

.details summary::after {
    content: '▶';
    font-size: 12px;
    position: absolute;
    right: 0;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

/* Quando o details está aberto, a seta gira para baixo */
.details[open] summary::after {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .faq h2 {
        margin-bottom: 20px;
        color: var(--cor-padrao);
        font-weight: 800;
        font-size: 34px;
        margin: 0px 0px 28px;
        line-height: 40px;
    }

    .faq {
        width: 100%;
        /*background-color: #F5F3FF;*/
        padding: 90px 20px 90px 20px;
    }

    .details {
        width: 100%;
    }

    .faq-perg {
        width: 90%;
    }

}

.navbar-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
}

.nav-links-footer {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links-footer a {
    text-decoration: none;
    color: var(--cor-h1);
    font-weight: bold;
}

.nav-links-footer a:hover {
    color: var(--cor-padrao);
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-social {
    width: 24px;
    margin-right: 5px;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    color: var(--cor-h1);
}

@media (max-width: 768px) {
    .navbar-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
    }

    .nav-links-footer {
        list-style: none;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        padding: 0;
    }

}

/* Estilo para modal ou popup com scroll */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--cor-padrao);
    border-radius: 6px;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

body::-webkit-scrollbar-button {
    display: none;
}
