﻿/* Reset e estilos base */
html, body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #ffffff;
    line-height: 1.6;
  
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);



}

/* Layout */
form {
    width: 100% !important;
    margin: 0 auto;
    height: 100vh!important;
    display: flex;
    flex-direction: column;
}

/* Componentes */
.panelFootContact {
    display: block;
    background: #1E2A47;
    width: 100%;
    width: 100%;
    border-top: 1px solid #ffffff;
    font-family: inherit;
    font-size: 0.875rem;
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.HeaderFoot {
    width: 100%;
    /*padding: 1.25rem;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Tipografia */
.lblCopyRight {
    font-family: inherit;
    font-size: 0.875rem;
    color: #ffffff;
}

.lblAgree {
    font-family: inherit;
    font-size: 0.75rem;
    color: #666;
}

/* Layout de busca */
#searchdiv {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 1rem 0;
}

/* Cards e containers */
.tableAddUser {
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    color: #333333 !important;
}

/* Headings */
.lblAddWelcome {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    color: inherit;
    /*margin-bottom: 1.5rem;*/
}

/* Labels e textos */
.lblDefault,
.lblCodigo {
    font-family: inherit;
    font-size: 0.875rem;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
}

.tableHeader > .lblDefault {
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #2c3e50;
}

#lblSeparatorNoMemory {
    color: #2c3e50;
}

/* Inputs */
.txtCodigo {
    font-family: inherit;
    font-size: 0.875rem;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border: 2px solid #333333;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    width: 100% !important;
    max-width: 500px;
    box-sizing: border-box;
}

    .txtCodigo:focus {
        border-color: #1565c0;
        box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
        outline: none;
    }

/* Links */
.lkCodigo,
.lkVoltar {
    font-family: inherit;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #ffffff;
    background: #2c3e50;
    padding: 10px;
    border-radius: 5px;
}

/* Textos informativos */
.lblExemplo,
.lblResultado {
    font-family: inherit;
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Inputs de texto */
.txtDefault {
    font-family: inherit;
    width: 100% !important;
    height: 40px !important;
    border-radius: 0.5rem;
    border: 2px solid black;
    box-sizing: border-box;
}

#table2 {
    background: inherit;
    border-top: 1px solid #d1d1d1;
    border-radius: 0px !important;
    box-shadow: none !important;
}

#table9, #table7, #table8 {
    max-width: 400px !important;
    min-height: 300px;
}

#Label8, #lblAddCupom, #Label3 {
    font-size: 24px;
}

#Label16 {
    padding-left: 5px;
}

/* Mensagens */
.addCupom {
    font-family: inherit; text-align: center;
    height: 40px !important; width:100%; padding-left: 15px; padding-right:15px;
    border-radius: 0.5rem;
    border: 2px solid black;
    box-sizing: border-box;
}

/* Indicadores de força de senha */
.BarIndicator {
    text-align: right;
    padding: 0.75rem;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.TextIndicator_TextBox1_Strength1 {
    background-color: #e74c3c;
}

.TextIndicator_TextBox1_Strength2 {
    background-color: #e67e22;
}

.TextIndicator_TextBox1_Strength3 {
    background-color: #f1c40f;
}

.TextIndicator_TextBox1_Strength4 {
    background-color: #2ecc71;
}

.TextIndicator_TextBox1_Strength5 {
    background-color: #993399;
}

/* Containers */
.border {
    border: 2px solid #333333;
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(52,152,219,0.1);
}

/* Botões */
.btn {
    width: 100%;
    height: 3.5rem;
    cursor: pointer;
    background: #993399;
    border: none;
    border-radius: 1.75rem;
    color: white;
    font-size: 1.2rem;
    font-weight:bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn:hover {
        background: #333333;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .btn span {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        position: relative;
        z-index: 1;
    }

/* Links de ação */
.lkChangePass,
.lblChangePassCancel {
    color:black;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

/* Títulos de seção */
.lblPlano {
    font-family: inherit;
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
}

/* Cabeçalhos de tabela */
.tableHeader {
    background: #1E2A47;
    width: 100%;
    padding: 1.25rem;
    border-radius: 1rem 1rem 0 0;
    color: #ffffff;
    height: 1px;
}


/* Labels de pacote */
.lblPacote, .lblVantagem, .lblVantagem2, .lblCupom {
    font-family: Verdana;
    font-size: 1.2rem;
    font-weight: bold; margin-left:5px;
}

.lblPacoteVitalicio {
    font-family: Verdana;
    font-size: 3rem;
    font-weight: bold;
}
/* Cards de plano */
.tableAddPlano {
    width: 100%;
    background-color: white;
    border: 2px solid black;
    border-radius: 1rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .tableAddPlano:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

/* Responsividade */
@media (max-width: 991px) {

    .btn {
        height: 3rem;
        font-size: 1.5rem;
    }
        .btn span {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }
    .lblPlano {
        font-size: 1.5rem;
    }
}

#Label4, #Label12 {
    padding: 0 10px;
    font-size: 18px;
}

td {
    position: relative;
}

#Button1, #Button2, #Button3 {
    max-width: 300px;
    margin: 20px 0;
}

/* Tabelas de plano */
.tableAdd3Planos,
.tableAddUserPlano {
    width: 100%;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Labels de status */
.lblPagamentoSeguro {
    font-family: inherit;
    font-size: 0.875rem;
    color: #993399;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}





#table11 {
    box-shadow: none;
    border-radius: 0;
    background: inherit;
}

    #table11 > tbody:first-of-type {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: auto;
        flex-direction: column;
    }

    @media(min-width: 1024px) {
        #table11 > tbody:first-of-type {
            flex-direction: row;
        }
    }

        #table11 > tbody:first-of-type > * {
            flex: 1;
        }

        /* Preços */
        .lblPreco {
            font-family: inherit;
            font-size: 3rem;
            color: #993399;
            font-weight: 700;
        }




.lblPrecoPeriodo {
    font-family: inherit;
    font-size: 0.875rem;
    color: #7f8c8d;
}

/* Badges */
.lblDesconto {
    font-family: inherit;
    font-size: 0.75rem;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    /*padding: 0.25rem 0.75rem;*/
    border-radius: 1rem;
    font-weight: 600;
    display: inline-block;
}

/* Preços riscados */
.lblPrecoCheio {
    font-family: inherit;
    text-decoration: line-through;
    font-size: 1rem;
    color: #95a5a6;
}

/* Vantagens */
.lblVantagens {
    font-family: inherit;
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
}

/*.lblVantagem {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 20px; padding-top:-5px;
}*/

/* IPs */
.lblDefaultIp {
    font-family: inherit;
    font-size: 0.875rem;
    color: #e74c3c;
    padding: 0.5rem;
    background: rgba(231,76,60,0.1);
    border-radius: 0.5rem;
}

/* Containers de dicas */
.divDicas {
    width: 100%;
    text-align:left;
    /*padding: 2rem;*/
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    border-radius: 1rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Campos de login */
#lblRememberLogin,
#lblRememberSenha {
    border: none;
    background: transparent;
    color: #2c3e50;
    font-weight: 600;
}

/* Logo */
.fotoLogo {
    height: auto;
    width: 156px;
    max-width: 100%;
}
.fotoLogoInitial {
    height: auto; 
    height: auto; 
    width: 300px;height: 150px;
    max-width: 100%; padding-top: 50px; padding-bottom: 50px;
}
/* Checkboxes */
.chkDefault {
    font-family: inherit;
    font-size: 0.875rem;
    color: #e74c3c;
}

/* Labels importantes */
.lblDefaultImportant {
    font-family: inherit;
    font-size: 0.875rem;
    color: #e74c3c;
    font-weight: 600;
}

/* Campos de formulário */
.lblHello2,
.txtHello2,
.lblRememberSenha {
    font-family: inherit;
    width: 100%;
    max-width: 300px;
    height: 40px;
    border-radius: 0.5rem;
    border: 2px solid black;
    box-sizing: border-box;
}

.txtHello2 {
    text-align: center;
    padding: 0 1rem;
}

    .txtHello2:focus {
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
        outline: none;
    }

/* Mensagens de boas-vindas */
.Hello2 {
    font-family: inherit;
    font-size: 0.875rem;
    color: #2c3e50;
}


/* Botões de login */
.btnLogin,
.LinkAddUser,
.LinkAddUser2 {
    background: #1E2A47;
    border: none;
    cursor: pointer;
    color: white;
    width: 300px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;

}
.LinkAddUserApp {
    background: #1E2A47;
    border: none;
    cursor: pointer;
    color: white;
    width: 300px; display:none;
    height: 40px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
    .btnLogin:hover,
    .LinkAddUser:hover,
    .LinkAddUser2:hover {
        background: #333333;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
.LinkAddUserApp:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* Links de termos */
.lkTerms {
    font-family: inherit;
    font-size: 0.875rem;
    color:black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .lkTerms:hover {
        text-decoration: underline;
    }

/* Títulos de idiomas */
.lblIdiomas {
    font-family: inherit;
    font-size: 2rem;
    font-weight: bold;
    color: #333333;
    margin: 1.5rem 0;
}

/* Cards de idiomas */
.imagemIdioma {
    background: #333333;
    width: 100%;
    max-width: 347px;
    height: 260px;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

    .imagemIdioma:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

/* Textos de copy */
.lblCopy01 {
    font-family: inherit;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.lblCopy02 {
    font-family: inherit;
    font-size: 0.875rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.lblCopy03,
.lblCopy04 {
    font-family: inherit;
    /*font-size: 1.125rem;*/
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    font-weight: bold;
}

    .lblCopy03 strong {
        font-size: 1.5rem;
    }

    .lblCopy04 strong {
        font-size: 24px;
        display: inline-block;
    }

/* Links do rodapé */
.lblHomeFoot,
.lblHomeFoot2 {
    font-family: inherit;
    /*font-size: 0.8rem;*/
    font-size: 1rem;
    color: white;
    text-decoration: none;
    /*margin: 0 0.75rem;*/
    transition: all 0.2s ease;
    font-weight: 500;
}

span.lblHomeFoot2, span.lblHomeFoot {
    margin: 0;
}

.lblHomeFoot {
    padding-left: 5px;
}

.lblHomeFoot2 {
    padding-right: 5px;
}


@media(min-width: 768px) {
    .lblHomeFoot, .lblHomeFoot2 {
        /*font-size: 0.9375rem;*/
        font-size: 1.1rem;
    }
}

    .lblHomeFoot:hover,
    .lblHomeFoot2:hover {
        opacity: 0.8;
        transform: translateY(-1px);
    }

/* Layout de tabela */
#Table12 tbody {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 1280px;
    margin: auto;
    gap: 2rem;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    padding: 30px 10px 50px 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #Table12 tbody:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    #Table12 tbody img {
        width: 100%;
        max-width: 400px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        #Table12 tbody img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

#Table12 tr:first-child {
    text-align: center;
    width: 100%;
}

    #Table12 tr:first-child td {
        display: flex;
        justify-content: center;
    }

#Table12 tr:nth-child(2) {
    width: inherit !important;
    height: inherit !important;
}


#table6 {
    background: #ffffff; 
   
}

#Table3 {
    background: #ffffff;
    flex: 1;
}

#lblRemember {
    color: #2c3e50;
}

#FieldRemember {
    border: 1px solid #2c3e50;
    border-radius: 10px;
}

#table10 {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 10px;
}

#Table4 {
    background: #ffffff;
    flex: 1;
}

#Table5 {
    background: #ffffff;
}

#Table13 {
    background: #ffffff;
}


.success-container {
    text-align: center;
    background-color: #4CAF50;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.success-image {
    width: 250px; /* Tamanho da imagem ajustável */
    height: 250px;
    margin-bottom: 20px;
}


.success-message {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.login-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF; /* Cor azul para o botão */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}


