/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Estilo para a barra superior */
.top-bar {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilo para o texto da esquerda */
.left-text {
    flex: 1;
}

.left-text a {
    text-decoration: none;
    color: #dcdcdc;
    font-weight: bold;
}

/* Estilo para o texto da direita */
.right-text-promo a {
    flex: 1;
    text-align: right;
    color: #f00; /* ou a cor desejada */
    font-weight: bold;
}

.right-text-whats a {
    flex: 1;
    text-align: right;
    color: #f00; /* ou a cor desejada */
    font-weight: bold;
}


/* Adicionando a cor de fundo à barra superior */
.bg-topbar {
    background-color: #0c183e;
    color: #fff; /* Adicionando a cor do texto para contrastar com o fundo */
}

/* Estilos para tornar a barra responsiva em dispositivos móveis */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        height: auto;
    }

    .left-text, .right-text {
        margin: 10px 0;
        text-align: center;
    }

    .right-text {
        order: -1;
    }

    .whatsapp-icon {
        margin-bottom: 10px;
	margin-top: 10px;    
}

}

.pulsating-text {
    animation: pulsate 3s infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Cores Gerais  */
#header {
    background-color: #040D28 !important;
    border-radius: 0 0 0 0 !important;
}

ul.top-nav>li>a {
   color: #fff !important;
}

section#home-banner {
    margin: 0;
    padding: 50px 0 60px;
    background-color: #0e172a;
    color: #fff;
}

section#main-menu {
    background-color: #F63737;
}

.home-shortcuts {
  margin: 0;
  background: #ca2626;
  color: #fff;
}

.home-shortcuts li {
  float: left;
  width: 24%;
  padding: 5px 3px;
  border-right: 1px solid #F63737;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}
.home-shortcuts li:first-child {
  border-left: 1px solid #F63737;
}

div.header-lined .breadcrumb > .active {
    color: #770e0e;
}

ul.top-nav > li.primary-action > a.btn {
    padding: 6px 15px;
    background-color: #ab3434;
    color: #fff;
    border-radius: 3px;
}

div.header-lined h1 {
    margin-top: 0;
    margin-bottom: 15px;
    padding:6px 0;
    border-bottom:1px solid #ccc;
    font-weight: 400;
    color: #CA2626;
}

#registration .sub-heading span {
    display: inline-block;
    position: relative;
    padding: 0 17px;
    top: -11px;
    font-size: 16px;
    color: rgb(136, 0, 0);
    background-color: #fff;
}

.div-service-item .dropdown-menu > li:active {
    color: #fff;
    background-color: #b73333;
}

.navbar-main {
    margin-bottom: 0;
    background-color: #d22626;
    border: 0;
    min-height: 38px;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
}
.navbar-main li.account {
    background-color: #b62325;
}

.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > .active > a,
.navbar-main .navbar-nav > .active > a:hover,
.navbar-main .navbar-nav > .active > a:focus,
.navbar-main .navbar-nav > .open > a,
.navbar-main .navbar-nav > .open > a:hover,
.navbar-main .navbar-nav > .open > a:focus {
    color: #eee;
    background-color: #a01f21;
}

.btn-primary {
    background-color: #0f1c44 !important;
    border-color: #122048 !important;
}

.btn-primary.focus,.btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40
}

.btn-primary:hover {
    background-color: #1d3062 !important;
    border-color: #22376d;
}

/*
Product Listing
*/

#products .product {
    margin: 15px 0;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

#products .product:hover {
    background-color: #E6EDFF;
    cursor: pointer;
    cursor: hand;
}

#products .product .pricing {
    float: right;
    text-align: right;
    font-family: Lucida Sans Unicode,Lucida Grande,sans-serif;
    font-size: 18px;
    line-height: 20px;
}

#products .product .name {
    font-family: Lucida Sans Unicode,Lucida Grande,sans-serif;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 10px;
}

#products .product .prodfeature {
    float: left;
    margin: 5px 5px 0 0;
    padding: 5px 10px 5px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-align: center;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 20px;
    color: #ff6600;
}


/* Tamanho letras na assinatura */

#order-standard_cart .products .product div.product-desc{
    font-size: 1.2em !important;
}

#order-standard_cart .products .product div.product-pricing {
    font-size: 1.3em !important;
}

#order-standard_cart .products .product header span {
    font-size: 1.3em !important;
}


/* Remove opções do painel de revendedor */
/*
.btn.btn-block.btn-social.btn-bitbucket.btn3 {
  display: none;
}*/

/*
a[href="credits.php"] .panel-footer {
  display: none;
}*/
/*
#Primary_Navbar-Announcements a[href="credits.php"] {
  display: none !important;
}*/

/*
#menu #Primary_Navbar-Billing > a:before {
    content: "\f0d6" !important;
}
*/
