:root {
    --primary: #0F7ADE;
    --primary-dark: #0F7ADE;
    --secondary: #ff6b00;
    --light: #f6fbff;
    --dark: #2c3e50;
    --gray: #f5f7fa;
    --text: #3c4858;
    /* Tamanhos para desktop */
    --h1-size: 40px;
    --h2-size: 34px;
    --h3-size: 28px;
    --h4-size: 24px;
    --h5-size: 20px;
    --h6-size: 18px;
    --p-size: 16px;

    /* Espaçamento de linha proporcional */
    --h1-line-height: 1.2;
    --h2-line-height: 1.25;
    --h3-line-height: 1.3;
    --h4-line-height: 1.35;
    --h5-line-height: 1.4;
    --h6-line-height: 1.45;
    --p-line-height: 1.5;
}

.form-valida{
    width: 500px;
}

/* Estilos base para todos os títulos e textos */
h1, .h1 {
    font-size: var(--h1-size);
    line-height: var(--h1-line-height);
    font-weight: 800;
}

h2, .h2 {
    font-size: var(--h2-size);
    line-height: var(--h2-line-height);
    margin-bottom: 0.7em;
    font-weight: 800;
}

h3, .h3 {
    font-size: var(--h3-size);
    line-height: var(--h3-line-height);
    margin-bottom: 0.7em;
    font-weight: 800;
}

h4, .h4 {
    font-size: var(--h4-size);
    line-height: var(--h4-line-height);
    margin-bottom: 0.7em;
    font-weight: 600;
}

h5, .h5 {
    font-size: var(--h5-size);
    line-height: var(--h5-line-height);
    margin-bottom: 0.7em;
    font-weight: 500;
}

h6, .h6 {
    font-size: var(--h6-size);
    line-height: var(--h6-line-height);
    margin-bottom: 0.7em;
    font-weight: 500;
}

p, .p, li, td, th, input, textarea, select, button {
    font-size: var(--p-size);
    line-height: var(--p-line-height);
}

/* Telas grandes (1440px) */
@media screen and (max-width: 1440px) {
    :root {
        --h1-size: 38px;
        --h2-size: 32px;
        --h3-size: 26px;
        --h4-size: 22px;
    }
}

/* Tablets e desktops pequenos (1024px) */
@media screen and (max-width: 1024px) {
    :root {
        --h1-size: 34px;
        --h2-size: 30px;
        --h3-size: 24px;
        --h4-size: 20px;
        --h5-size: 18px;
        --h6-size: 16px;
    }
}

/* Tablets menores (767px) */
@media screen and (max-width: 767px) {
    :root {
        --h1-size: 32px;
        --h2-size: 28px;
        --h3-size: 22px;
        --h4-size: 18px;
        --h5-size: 16px;
        --h6-size: 15px;
        --p-size: 15px;
    }
}

/* Celulares (600px) */
@media screen and (max-width: 600px) {
    :root {
        --h1-size: 28px;
        --h2-size: 24px;
        --h3-size: 20px;
        --h4-size: 18px;
        --h5-size: 16px;
        --h6-size: 15px;
        --p-size: 14px;
    }
}

/* Celulares pequenos (320px) */
@media screen and (max-width: 320px) {
    :root {
        --h1-size: 24px;
        --h2-size: 22px;
        --h3-size: 18px;
        --h4-size: 16px;
        --h5-size: 15px;
        --h6-size: 14px;
        --p-size: 14px;
    }
}

/* Telas com altura menor que 700px */
@media screen and (max-height: 700px) {
    dialog {
        margin: 50px auto;
        max-height: calc(100vh - 70px);
    }

    #modal-indique {
        margin: 40px auto;
        max-height: calc(100vh - 60px);
    }
}

/* Classes de texto específicas - manter a hierarquia visual correta */
.feature-content h3,
.rotas-content h3,
.os-content h3,
.chamados-content h3,
.ativos-content h3,
.section-header h2 {
    font-size: 2.5rem;
    line-height: var(--h2-line-height);
}

.feature-content p,
.rotas-content p,
.os-content p,
.chamados-content p,
.ativos-content p {
    margin-bottom: 1.5rem;
}

/* Ajuste para os elementos que estavam usando tamanhos personalizados */
.rotas-infos > div h4,
.chamados-infos .infos-chamados > div h4,
.center-content-dir h4,
.agenda-chamados .agenda-chamados-txt h4,
.content-center-esq h4 {
    font-size: var(--h4-size);
    line-height: var(--h4-line-height);
}

.chamados-infos .infos-chamados > div h5 {
    font-size: var(--h5-size);
    line-height: var(--h5-line-height);
}

/* Ajustes para casos específicos */
.center-content-dir h4 span {
    font-size: calc(var(--h2-size) + 4px);
    line-height: 1.2;
}

*,*:focus,*:hover{
    outline:none;
}

button{
    cursor: pointer;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    list-style: none;
}

a{
    text-decoration: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    color: var(--text);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    font-size: 16px;
    font-family: Poppins;
}

.myBtn {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    font-family: Poppins;
}

.myBtn:hover {
    background-color: #52C5FF;
    border-color: #52C5FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 162, 255, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: #00C6FF;
    color: white;
    transform: translateY(-2px);
    border-color: #00C6FF;
}

.nav-menu a svg{
    fill: white;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.menusndesk{
    background-color: #F0F8FF;
}

.menu-items {
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1560px;
    min-width: 1000px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.logosndesk {
    width: 150px;
}

.logosndesk img {
    width: 100%;
    cursor: pointer;
}

.botoesmenu {
    width: fit-content;
    height: fit-content;
}

.botoesmenu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
}

.botoesmenu ul a{
    text-decoration: none;
    color: inherit;
}

.botoesmenu ul a:hover{
    color: var(--primary);
    transition: 0.3s;
}

#entrar-btn:hover{
    color: white;
}

.menu-entrar a:hover{
    color: white;
}

.botoesmenu ul > li {
    align-content: center;
    cursor: pointer;
    position: relative;
}

.botoesmenu ul > li:hover{
    transform: translateY(-1px);
    transition: 0.3s;
}



.indique-ganhe-btn{
    background: transparent;
    color: #0F7ADE;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.indique-ganhe-btn:hover{
    color: #00C9FF;
    transition: 0.3s;
}

.menu-entrar {
    background-color: #0F7ADE;
    color: white;
    padding: 5px 30px;
    border-radius: 30px;
}

.menu-entrar:hover{
    background-color: #00C9FF;
    transition: 0.3s;
}

.dropdown {
    position: relative;
    z-index: 99999;
}

.dropdown svg{
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    z-index: 1;
    left: -55px;
    top: 100%;
    border-radius: 10px;
    padding-top: 30px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white !important;
    padding: 18px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    background-color: #0F7ADE;
}

.dropdown-content a:nth-child(8){
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dropdown-content a:nth-child(1){
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dropdown-content a:hover {
    background-color: #00C9FF;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.navbar {
    display: none;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Estilos do menu hamburger */
.nav-menu li {
    border: none;
    width: fit-content;
}

.nav-menu li:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #00C4FF;
    transition: 0.3s;
}

.nav-menu .solucoes-hamburguer.ativo > ul {
    display: flex;
}

.solucoes-hamburguer.ativo > ul > li{
    margin-top: -15px;
    a{
        font-size: 14px;
    }
}

.nav-menu li ul {
    margin-top: 20px;
    display: none;
}

.nav-menu li ul li {
    list-style: none;
    color: white;
}

.logosndesk-hamburguer {
    width: 180px;
    margin-bottom: 20px;
    margin-top: 40px;
}

@media (max-width: 400px) {
    .logosndesk-hamburguer {
        width: 140px;
    }
}

.logosndesk-hamburguer img {
    width: 100%;
}

/* CORREÇÃO: Botão hambúrguer sempre fixo no topo */
.hamburger {
    display: block;
    cursor: pointer;
    width: 36px;
    height: 40px;
    position: fixed; /* Mudança principal: fixed ao invés de relative */
    top: 20px; /* Posição fixa do topo */
    right: 20px; /* Posição fixa da direita */
    z-index: 1001; /* Z-index alto para ficar sobre o menu */
    border-radius: 7px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger span {
    left: 20%;
    margin-top: 25%;
    display: block;
    position: absolute;
    height: 1.7px;
    width: 30px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Animação do hamburguer quando ativo */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    background: #ff3333;
    width: 20px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    background: #FF3333FF;
    width: 20px;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    background: #FF3333FF;
    width: 20px;
}

/* Menu de navegação com posição fixa também */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 1000;
    overflow-y: auto;
    list-style: none;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
    display: block;
    padding: 10px 0;
}






.message-div {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: green;
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 10000; /* Garantir que a mensagem tenha z-index maior */
    text-align: center;
    width: 100%;
    max-width: 600px; /* Limita a largura da mensagem */
}









dialog {
    color: #4D5357;
    z-index: 999;
    position: fixed;
    border: none;
    border-radius: 10px;
    width: 600px;
    background-color: #FFFFFF;
    margin: 100px auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

dialog::backdrop{
    background-color: rgb(0 0 0 / .5);
}

dialog div form p{
    color: #0F7ADE;
    font-weight: 300;
    text-align: center;
}

form{
    margin-top: 30px;
}

.contato-text{
    margin-top: 20px;
}

::placeholder{
    color: #d3d3d3;
    font-style: italic;
}

#modal-content{
    width: 100%;
    padding: 20px 20px;
}

.titulo-modal{
    text-align: center;
}

.titulo-modal h2{
    font-weight: 700;
    color: #0F7ADE;
}

.titulo-modal h3{
    font-weight: 300;
    font-size: 15px;
    color: #ababab;
}
form div label, form div div label{
    margin-left: 10px;
    font-size: 14px;
    color: #6791be;
}


.container-razao input{
    width: 100%;
}

input{
    padding: 7px 10px;
    border-radius: 20px;
    border: solid 1px #7aa2c7;
    width: 100%;
    background-color: #FFFFFF;
    font-family: Poppins;
}

input:focus{
    outline: none;
}

.cnpj-colaboradores{
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.telefone-email{
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.container-email{
    width: 60%;
}

.container-telefone{
    width: 40%;
}

.btn-solicitar-teste{
    margin-top: 40px;
    text-align: center;
}

form div button{
    background-color: #0F7ADE;
    width: 100%;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 12px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

form div button:hover{
    transform:scale(1.03);
    transition: 0.15s;
}







/* INDIQUE E GANHE /\/\/\/\/\/\/\/\ -------------------------------------------------------------------------- */

#modal-indique{
    margin: 70px auto;
    z-index: 1000;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
}

#indique-content{
    width: 100%;
    padding: 20px 20px;
}

.indique-titulo{
    text-align: center;
}

.indique-titulo p{
    font-weight: 700;
    font-size: 25px;
    color: #0F7ADE;
}

.ganhe-150{
    margin-top: 20px;
    text-align: center;
}

.ganhe-150 h3{
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
}

.ganhe-150 h3 span{
    font-weight: 700;
    color: #0F7ADE;
}

.alem-disso-text{
    display: flex;
    margin-top: 20px;
}

.logo-icone-indique{
    width: 30%;
    margin-right: 20px;
}

.logo-icone-indique img{
    width: 100%;
    opacity: 0.3;
}

.container-dados{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    background-image: linear-gradient(#F0F8FF, #cae4f1);
    border-radius: 20px;
    padding: 20px 20px;
}

.text-cima p{
    color: #4D5357;
}

.text-cima p span{
    font-weight: 700;
}


.container-progresso{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.container-progresso div label{
    font-size: 12px;
}

.text-progresso{
    display: flex;
    text-align: center;
}

.text-progresso > label{
    margin: 0;
}

.seusdados2 div label{
    color: #ababab;
}

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

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


.circulo-num1{
    font-size: 12px;
    border: solid 0.5px #8cbeec;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #8cbeec;
}

.circulo-num2{
    color: #ababab;
    font-size: 12px;
    border: solid 0.5px #ababab;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.tracado{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tracado div{
    background-color: #ababab;
    height: 1px;
    width: 100%;
}

.seu-nome{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.seu-nome label{
    color: #ababab;
    font-size: 14px;
}

.input-nome{
    width: 70%;
}

.primeira-indicacao{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    line-height: 17px;
}

.text-pergunta label{
    text-align: left;
    margin: 0;
}


.input-radio-sn{
    display: flex;
    gap: 10px;
    -webkit-appearance: radio;
}

.primeira-indicacao1, .primeira-indicacao2{
    display: flex;
}

.primeira-indicacao1 input, .primeira-indicacao2 input{
    margin: 0;
}

.primeira-indicacao1 label, .primeira-indicacao2 label{
    margin: 5px;
}

.email-celular{
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.email-celular label{
    font-size: 14px;
    color: #ababab;
}

.btn-proximo{
    margin-top: 10px;
    width: 100%;
}

.btn-proximo button{
    padding: 5px 0;
    border-radius: 20px;
    border: none;
    width: 100%;
    background-color: #0F7BDE;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.text-rodape{
    margin-top: 20px;
}

.text-rodape p{
    font-style: italic;
    font-size: 12px;
    color: #4D5357;
    opacity: 0.8;
}


.dados-flex2{
    margin-top: 10px;
    display: none;
}

.dados-flex2 label{
    color: #ababab;
}

.nome-empresa{
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.nome-empresa div input{
    width: 250px;
}

.telefone-email2{
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.telefone-email2 div input{
    width: 250px;
}

.observacoes{
    margin-top: 10px;
}

textarea{
    font-family: Poppins;
    padding: 12px 10px;
    border-radius: 30px;
    border: solid 1px #7aa2c7;
    width: 100%;
    background-color: #FFFFFF;
}

textarea:focus{
    outline: none;
}


.btn-voltar-indicar{
    margin-top: 10px;
    display: flex;
    gap: 10px;
    height: fit-content;
}

.btn-voltar-indicar button{
    padding: 5px;
    font-size: 16px;
}

#btn-voltar2{
    background-image: none;
    background-color: #b6b6b6;
}


















.footer {
    background-color: #0F7ADE;
    color: white;
    font-family: Arial, sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Section */
.footer-top {
    padding: 30px 0;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 300;
}

/* Center Download Section */
.footer-center-content {
    text-align: center;
}

.footer-download h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.app-store-button img, .google-play-button img {
    height: 60px;
}

/* Help Section */
.footer-help-section {
    text-align: right;
}

.footer-help-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    background-color: #2CB573;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.footer-contact-button:hover {
    background-color: #259e63;
}

.contact-icon {
    width: 20px;
    margin-left: 8px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Bottom Section */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Legal */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright {
    font-size: 14px;
    color: white;
    align-content: start;
}

.legal-links {
    font-size: 14px;
}

.legal-links a {
    color: white;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 15px;
    margin-right: 30px;
    align-items: center;
}

.social-icon img {
    width: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icon:hover img {
    opacity: 1;
}

/* Additional Info */
.footer-additional-info {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.additional-info-line {
    font-size: 14px;
    color: white;
}

.canal-denuncia {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.canal-telefone {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;

    color: white;
}

.canal-disponivel {
    font-size: 12px;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-section, .footer-help-section {
        text-align: center;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-legal {
        order: 3;
    }

    .footer-social {
        order: 2;
        justify-content: center;
    }

    .footer-additional-info {
        order: 1;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 1024px){
    .footer-bottom .footer-container{
        align-items: center;
    }
}
