* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}

:root {
    --azul-primario: #0a6fcf;
    --azul-secundario: #0bb1e8;
    --azul-escuro: #043876;
    --amarelo-destaque: #ffeb00;
     --verde-destaque: #c4f628;
    --cinza-claro: #f4f6f8;
}

body {
    background-color: #f6f6f6;
    color: #2f2f2f;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    background-color: #ffffff;
    width: 100%;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-navbar img {
    width: 140px;
}

/* LINKS DESKTOP */
.link-navbar {
    display: flex;
    gap: 40px;
    list-style: none;
}

.link-navbar li a {
    font-weight: 600;
    text-transform: uppercase;
    color: #505050;
}

/* BOTÃO */
.contato-btn {
    padding: 14px 36px;
    border-radius: 10px;
    background: linear-gradient(45deg, #0149A1, #0073ff);
    color: white;
    font-weight: 700;
}

/* BOTÃO MOBILE */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MENU LATERAL */
.menu-lateral {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #071b2f 0%, #041423 100%);
   
    padding: 22px 18px;
    transition: right 0.35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.menu-lateral.active {
    right: 0;
}

.header-menu {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.header-menu img {
    width: 90px;
}

/* Botão fechar */
.close-menu {
    align-self: flex-end;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9fb4c8;
    margin-bottom: 10px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.close-menu:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

/* Lista */
.menu-lateral ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

/* Links */
.menu-lateral ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* Hover */
.menu-lateral ul li a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* Item ativo (simula o "Posts" da imagem) */
.menu-lateral ul li a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 600;
}

.btn-contato {
    display: flex;
    justify-content: center;
}

/* Botão contato estilo dashboard */
.btn-lateral {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(135deg, #0a6fcf, #2dd4ff);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 10px 26px rgba(10, 111, 207, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-lateral:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(10, 111, 207, 0.55);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .link-navbar,
    .contato-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


/*Header*/ 



#desk {
    height: 70vh
}

#desk img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

#mobile {
    display: none;
}


@media (max-width: 800px) {
    #desk {
        display: none !important;
    }

    #mobile {
        display: block;
        height: 85vh
    }

    #mobile img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
}



.beneficios-planos {
    background: linear-gradient(180deg, var(--azul-primario), var(--azul-escuro));
}

.faixa-beneficios {
    position: relative;
    background: linear-gradient(
        90deg,
        #9cff00,
        #b7ff2a
    );
    padding: 30px 20px 50px;
    text-align: center;
    color: #043876;
    /* margin-bottom: 80px; */
}

/* TEXTO */
.faixa-beneficios h2 {
    font-size: 1.6rem;
    font-weight: 700;
    max-width: 700px;
    margin: 10px auto 0;
}

/* LABEL PEQUENA */
.faixa-label {
    display: inline-block;
    background: #043876;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ÍCONE CENTRAL COM RECORTE */
.faixa-icon {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);

    width: 44px;
    height: 44px;
    background: #9cff00;
    color: #043876;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 2;
}

/* RECORTE NA FAIXA */
.faixa-beneficios::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);

    width: 80px;
    height: 28px;
    background: var(--azul-primario);

    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    z-index: 1;
}



.beneficios-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 50px 45px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.beneficio-card h3 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.beneficio-card b {
    color: var(--verde-destaque);
}

.beneficio-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.beneficio-card ul li {
    font-size: 1.2rem;
    opacity: 0.95;
}

.beneficio-card ul li::before {
    content: "✔";
    color: var(--verde-destaque);
    margin-right: 10px;
}

/* NÃO INCLUSO */
.beneficio-card ul li::before {
    content: "✔";
    color: var(--verde-destaque);
    margin-right: 10px;
    font-weight: 700;
}

.beneficio-card ul li.none {
    color: #bdbdbd;
    opacity: 0.8;
    text-decoration: line-through;
}

.beneficio-card ul li.none::before {
    content: "✖";
    color: #d9534f;
}


.beneficio-card.destaque {
    background: linear-gradient(180deg, var(--azul-secundario), var(--azul-primario));
    transform: translateY(-10px);
}

/* ================= PLANOS ================= */

.planos-valores {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--azul-escuro), var(--azul-primario));
    text-align: center;
    color: #ffffff;
}

.planos-valores h2 {
    font-size: 3.2rem;
    margin-bottom: 80px;
}

.planos-valores h2 span {
    color: var(--amarelo-destaque);
}

.planos-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
}

.plano-card {
    background: #ffffff;
    border-radius: 36px;
    padding: 50px 40px;
    color: var(--azul-escuro);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.plano-card h3 {
    font-size: 1.6rem;
    margin-bottom: 35px;
}

.preco {
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
}

.preco:last-child {
    border-bottom: none;
}

.preco span {
    display: inline-block;
    padding: 17px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-primario);
    background: rgba(10, 111, 207, 0.1);
    border-radius: 999px;
    margin-bottom: 6px;
}


.preco strong {
    font-size: 2.3rem;
    display: block;
    margin: 8px 0;
    font-weight: 800;
}

.preco small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.preco.destaque strong {
    color: var(--azul-secundario);
}

.obs {
    margin-top: 60px;
    font-weight: 600;
    color: var(--amarelo-destaque);
}

/* AÇÃO */
.acao-plano {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acao-plano select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d0d7e2;
    font-size: 0.95rem;
    font-weight: 600;
    color: #043876;
    background-color: #ffffff;
    cursor: pointer;
}

.acao-plano select:focus {
    outline: none;
    border-color: var(--azul-primario);
}

/* BOTÃO */
.acao-plano button {
    padding: 15px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #0073ff, #0bb1e8);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.acao-plano button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 115, 255, 0.4);
}



