/********** Template CSS **********/
  @font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Regular.ttf') format('woff2')
  }
  @font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Regular.ttf') format('woff2')
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-family: 'PT Serif', sans-serif;
  }

p{
    font-family: PT Sans;
    font-size: 1.1rem;
  }
:root {
    --primary: #0E2E50;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.logo {
    width: 50px;
    border-radius: 10px;
}

.textF {
    color: #d8dbdf;
    text-decoration: none;
}

.textF:hover {
    color: #fff;
}
a {
    color: #0D6EFD;
    text-decoration: none
  }
  
  a:hover {
    color: #0D6EFD;
  }
  
  a:not([href]):not([class]),
  a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }
  
  @media (max-width: 575px) {
    #variavel img{
      max-width: 100%;
    }
  }
  
  #footerAnuncio *{
    margin: -3px;
 }
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 85px;
    z-index: 99;
}
body{
background-color: #0E2E50;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.dropdown-item {
    color: var(--primary);
    font-weight: 500;
    font-family: 'PT Serif';
}
/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 35px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    font-family: 'PT Serif';
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}

/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgb(14 , 46, 80, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}



/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgb(14 , 46, 80, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgb(14 , 46, 80, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\F285";
    font-family: "bootstrap-icons";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer a{
    font-family: 'PT Sans';
}

.breadcrumb-item{
    font-family: 'PT Serif';
    font-weight: 500;
    font-size: 1.2rem;
}
/* ======================================================
   Tema HOTSITE - MaxNet Telecom
   Adaptado para a estrutura de temas do MKAuth
   ====================================================== */
:root {
  --primary: #f58220;
  --secondary: #101820;
  --light: #f6f7f9;
  --dark: #101820;
}
body { background: #fff; color: #323840; font-family: "PT Sans", Arial, sans-serif; }
.container-xxl { max-width: 100%; }
.nav-bar { position: relative; z-index: 1000; padding: 0; }
.navbar { min-height: 92px; border-bottom: 4px solid var(--primary); box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.navbar .icon { border: 0 !important; width: 190px; height: 76px; display:flex; align-items:center; }
.maxnet-logo { max-width: 175px; max-height: 68px; object-fit: contain; }
.navbar-brand h2 { display:none; }
.navbar-light .navbar-nav .nav-link { color:#1b242c; font-weight:700; text-transform:uppercase; padding: 34px 13px; }
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active { color:var(--primary); }
.dropdown-menu { border-top:3px solid var(--primary); box-shadow:0 12px 28px rgba(0,0,0,.15); }
.header { background:linear-gradient(135deg,#111820 0%,#26333d 100%) !important; color:#fff; }
.header .display-5 { color:#fff; font-weight:800; line-height:1.05; }
.header .text-primary { color:var(--primary) !important; }
.header p { color:#e8edf1; font-size:1.15rem; max-width:620px; }
.header-carousel img { width:100%; min-height:450px; object-fit:cover; }
.btn-primary { background:var(--primary); border-color:var(--primary); color:#fff; font-weight:700; }
.btn-primary:hover { background:#d96b0d; border-color:#d96b0d; }
.btn-outline-primary { color:var(--primary); border-color:var(--primary); font-weight:700; }
.btn-outline-primary:hover { background:var(--primary); border-color:var(--primary); color:#fff; }
.bg-dark { background-color:var(--secondary) !important; }
.text-primary { color:var(--primary) !important; }
.maxnet-services { background:#fff; }
.service-card { display:block; height:100%; padding:34px 24px; text-decoration:none; color:#242b31; border-radius:8px; background:#fff; border:1px solid #eceff2; box-shadow:0 8px 24px rgba(16,24,32,.08); transition:.25s ease; }
.service-card:hover { transform:translateY(-7px); color:#242b31; border-color:var(--primary); box-shadow:0 15px 35px rgba(16,24,32,.15); }
.service-card i { display:inline-flex; align-items:center; justify-content:center; width:74px; height:74px; border-radius:50%; background:var(--primary); color:#fff; font-size:34px; margin-bottom:18px; }
.service-card h4 { font-weight:800; color:#17212a; }
.service-card p { margin:0; color:#68727c; }
.footer { border-top:5px solid var(--primary); }
.footer .btn-social:hover { background:var(--primary); border-color:var(--primary); }
.form-control:focus,.form-select:focus { border-color:var(--primary); box-shadow:0 0 0 .25rem rgba(245,130,32,.2); }
#spinner .spinner-border { color:var(--primary)!important; }
@media (max-width: 991.98px) {
  .navbar { min-height:76px; }
  .navbar .icon { width:155px; height:65px; }
  .maxnet-logo { max-width:145px; max-height:58px; }
  .navbar-light .navbar-nav .nav-link { padding:12px 8px; }
  .header-carousel img { min-height:280px; }
}
@media (max-width: 575.98px) {
  .header .display-5 { font-size:2.25rem; }
  .header .btn { display:block; width:100%; margin:8px 0!important; }
}


/* Slider principal inspirado no layout hotsite_boss */
.boss-slider-wrap {
    width: 100%;
    background: #24103f;
    overflow: hidden;
    border-top: 8px solid #24103f;
}
.boss-header-carousel,
.boss-header-carousel .owl-stage-outer,
.boss-header-carousel .owl-stage,
.boss-header-carousel .owl-item,
.boss-slide {
    width: 100%;
}
.boss-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 510px;
    object-fit: cover;
    object-position: center;
}
.boss-header-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 18px;
}
.boss-header-carousel .owl-nav button.owl-prev,
.boss-header-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 127, 0, .92);
    color: #fff;
    font-size: 24px;
    pointer-events: auto;
    transition: .25s ease;
}
.boss-header-carousel .owl-nav button:hover {
    background: #24103f;
}
.boss-header-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    text-align: center;
}
.boss-header-carousel .owl-dot span {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.65);
}
.boss-header-carousel .owl-dot.active span {
    background: #ff7f00;
}
@media (max-width: 767.98px) {
    .boss-slider-wrap { border-top-width: 4px; }
    .boss-slide img { min-height: 220px; object-fit: cover; }
    .boss-header-carousel .owl-nav { padding: 0 8px; }
    .boss-header-carousel .owl-nav button.owl-prev,
    .boss-header-carousel .owl-nav button.owl-next { width: 38px; height: 38px; font-size: 18px; }
}


/* Planos no estilo Hotsite Boss - construído somente com HTML/CSS */
#planosP.boss-planos-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.boss-plano-col { min-width: 0; }
.boss-plano-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #eeeeee;
    border: 0;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
}
.boss-plano-title {
    padding: 26px 12px 18px;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    border-bottom: 1px solid #d9d9d9;
}
.boss-speedometer {
    --gauge-progress: 45%;
    position: relative;
    width: 150px;
    height: 84px;
    margin: 11px auto 5px;
    overflow: hidden;
}
.boss-speedometer::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(from 225deg, #25113f 0 25%, #ff8300 25% 50%, transparent 50% 100%);
}
.boss-speedometer::after {
    content: "";
    position: absolute;
    left: 35px;
    top: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eeeeee;
}
.boss-gauge-needle {
    position: absolute;
    z-index: 3;
    left: 73px;
    top: 67px;
    width: 4px;
    height: 66px;
    background: #050505;
    border-radius: 4px;
    transform-origin: 50% 2px;
    transform: rotate(calc(-70deg + (var(--gauge-progress) * 1.4)));
}
.boss-gauge-center {
    position: absolute;
    z-index: 4;
    left: 69px;
    top: 63px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #050505;
}
.boss-plano-price {
    text-align: center;
    padding: 5px 10px 13px;
}
.boss-plano-price strong {
    display: block;
    color: #ff423b;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
}
.boss-plano-price small {
    display: block;
    margin-top: 7px;
    color: #111;
    font-size: 11px;
    font-weight: 700;
}
.boss-plano-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #d8d8d8;
    flex: 1;
}
.boss-plano-features li {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-bottom: 1px solid #d8d8d8;
    font-size: 12px;
    line-height: 1.25;
}
.boss-plano-features i { font-size: 11px; color: #111; }
.boss-plano-button {
    display: block;
    margin: 24px 12px 0;
    padding: 13px 10px;
    text-align: center;
    background: #ff423b;
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: filter .2s ease;
}
.boss-plano-button:hover { filter: brightness(.92); }
@media (max-width: 991.98px) {
    #planosP.boss-planos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    #planosP.boss-planos-grid { grid-template-columns: 1fr; }
    .boss-plano-card { max-width: 360px; width: 100%; margin: 0 auto; }
}


/* Ajuste fino dos cards conforme o Hotsite Boss original */
.boss-plano-card {
    position: relative;
    min-height: 590px;
}
.boss-plano-title {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px 12px;
    font-size: 21px;
}
.boss-speedometer {
    width: 174px;
    height: 105px;
    margin: 12px auto 3px;
}
.boss-speedometer::before {
    left: 7px;
    width: 160px;
    height: 160px;
}
.boss-speedometer::after {
    left: 42px;
    top: 35px;
    width: 90px;
    height: 90px;
}
.boss-gauge-needle {
    left: 85px;
    top: 78px;
    height: 75px;
}
.boss-gauge-center {
    left: 80px;
    top: 73px;
    width: 14px;
    height: 14px;
}
.boss-plano-price {
    min-height: 90px;
    padding: 3px 10px 15px;
}
.boss-plano-price strong { font-size: 31px; }
.boss-plano-features li {
    min-height: 40px;
    padding: 10px 22px;
}
.boss-plano-button {
    margin: 24px 12px 12px;
    min-height: 38px;
    padding: 12px 10px;
}
.boss-plano-ribbon {
    position: absolute;
    z-index: 6;
    top: 13px;
    right: -39px;
    width: 145px;
    padding: 5px 0;
    color: #fff;
    background: #ff493f;
    text-align: center;
    font-size: 10px;
    transform: rotate(45deg);
    box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
@media (max-width: 575.98px) {
    .boss-plano-card { min-height: 570px; }
}

/* Ajuste final: proporções fiéis aos cards do Hotsite Boss */
#planosP.boss-planos-grid {
    width: 100%;
    max-width: 1026px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
}
.boss-plano-card {
    min-height: 635px;
    background: #efefef;
    box-shadow: none;
}
.boss-plano-title {
    min-height: 73px;
    padding: 18px 10px;
    font-size: 21px;
    line-height: 1.25;
}
.boss-speedometer {
    width: 178px;
    height: 110px;
    margin-top: 11px;
    margin-bottom: 2px;
}
.boss-speedometer::before {
    left: 7px;
    width: 164px;
    height: 164px;
}
.boss-speedometer::after {
    left: 43px;
    top: 36px;
    width: 92px;
    height: 92px;
    background: #efefef;
}
.boss-gauge-needle {
    left: 87px;
    top: 80px;
    height: 78px;
}
.boss-gauge-center {
    left: 82px;
    top: 75px;
}
.boss-plano-price {
    min-height: 97px;
    padding: 5px 8px 18px;
}
.boss-plano-price strong {
    font-size: 31px;
    line-height: 1.15;
}
.boss-plano-price small {
    margin-top: 8px;
    font-size: 10px;
}
.boss-plano-features li {
    min-height: 40px;
    padding: 10px 22px;
    font-size: 11px;
}
.boss-plano-button {
    margin: 25px 12px 12px;
    min-height: 39px;
    padding: 12px 8px;
    border-radius: 2px;
}
@media (max-width: 1090px) {
    #planosP.boss-planos-grid {
        max-width: 760px;
    }
}
@media (max-width: 767.98px) {
    #planosP.boss-planos-grid {
        max-width: 360px;
    }
    .boss-plano-card {
        min-height: 620px;
    }
}

/* =========================================================
   TOPO Hotsite Boss — reprodução estrutural fiel
   ========================================================= */
html, body { background: #fff; }
.container-xxl.bg-white.p-0 { max-width: none !important; width: 100%; overflow: hidden; }
.boss-header-shell { position: relative; z-index: 1000; width: 100%; font-family: Arial, Helvetica, sans-serif; }
.boss-topbar { height: 35px; display: flex; color: #fff; font-size: 14px; font-weight: 600; line-height: 35px; }
.boss-topbar-left, .boss-topbar-right { width: 50%; height: 35px; }
.boss-topbar-left { background: #ff8400; padding-left: max(4.2em, calc((100vw - 1170px)/2)); }
.boss-topbar-right { background: #22133e; text-align: right; padding-right: max(4.5em, calc((100vw - 1170px)/2)); }
.boss-topbar i { margin-right: 8px; font-size: 12px; }
.boss-topbar .ProvedorFone span { margin-left: 3px; }
.boss-brand-area { position: relative; height: 176px; background: #f2f6f7; border-bottom: 10px solid #22133e; }
.boss-header-container { width: 1170px; max-width: calc(100% - 30px); height: 100%; margin: 0 auto; position: relative; }
.boss-logo-link { position: absolute; left: 45px; top: 14px; width: 300px; height: 108px; display: flex; align-items: center; }
.boss-logo { display: block; width: 100%; max-width: 300px; max-height: 108px; object-fit: contain; object-position: left center; }
.boss-central-button { position: absolute; right: 38px; top: 27px; min-width: 149px; height: 46px; padding: 0 22px; display: flex; align-items: center; justify-content: center; background: #ff4337; color: #fff !important; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; transition: .25s; }
.boss-central-button:hover { background: #22133e; color: #fff !important; }
.boss-main-nav { position: absolute; left: 50%; transform: translateX(-50%); bottom: -41px; width: auto; min-width: 910px; background: #ff8400; box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.boss-main-nav ul { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; }
.boss-main-nav li { margin: 0; padding: 0; }
.boss-main-nav a { height: 70px; padding: 0 18px; display: flex; align-items: center; justify-content: center; color: #fff !important; font-size: 16px; font-weight: 400; text-decoration: none; white-space: nowrap; transition: .25s; }
.boss-main-nav a:hover, .boss-main-nav a.active { color: #22133e !important; }
.boss-main-nav .boss-home-item a { width: 52px; padding: 0; background: #22133e; color: #fff !important; font-size: 20px; }
.boss-main-nav .boss-home-item a:hover { background: #22133e; color: #fff !important; }
.boss-menu-toggle { display: none; }
.boss-slider-wrap { margin-top: 0 !important; width: 100%; position: relative; z-index: 1; }
.boss-slider-wrap .boss-slide img { width: 100%; display: block; }

@media (max-width: 991.98px) {
  .boss-topbar { height: auto; min-height: 35px; }
  .boss-topbar-left, .boss-topbar-right { padding: 0 16px; }
  .boss-brand-area { height: 142px; border-bottom-width: 7px; }
  .boss-header-container { max-width: 100%; width: 100%; }
  .boss-logo-link { left: 18px; top: 12px; width: 210px; height: 80px; }
  .boss-central-button { right: 18px; top: 26px; min-width: 130px; height: 42px; }
  .boss-main-nav { left: 0; right: 0; transform: none; bottom: -48px; min-width: 0; width: 100%; box-shadow: none; }
  .boss-menu-toggle { display: block; width: 100%; height: 48px; border: 0; background: #ff8400; color: #fff; font-size: 16px; text-align: left; padding: 0 18px; }
  .boss-main-nav ul { display: none; position: absolute; left: 0; right: 0; top: 48px; flex-direction: column; background: #ff8400; box-shadow: 0 12px 24px rgba(0,0,0,.25); }
  .boss-main-nav ul.is-open { display: flex; }
  .boss-main-nav a { height: 48px; justify-content: flex-start; padding: 0 18px; }
  .boss-main-nav .boss-home-item a { width: 100%; height: 48px; justify-content: flex-start; padding-left: 18px; }
  .boss-slider-wrap { margin-top: 48px !important; }
}
@media (max-width: 575.98px) {
  .boss-topbar { display: block; }
  .boss-topbar-left, .boss-topbar-right { width: 100%; text-align: center; padding: 0 10px; }
  .boss-brand-area { height: 128px; }
  .boss-logo-link { left: 14px; top: 14px; width: 165px; height: 65px; }
  .boss-central-button { right: 14px; top: 24px; min-width: 112px; height: 40px; padding: 0 12px; font-size: 13px; }
}

/* MaxNet Telecom - logo oficial enviada pelo cliente */
.boss-logo-link {
    width: 320px;
    height: 112px;
}
.boss-logo {
    width: 320px;
    max-width: 320px;
    max-height: 112px;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 991.98px) {
    .boss-logo-link {
        width: 225px;
        height: 84px;
    }
    .boss-logo {
        width: 225px;
        max-width: 225px;
        max-height: 84px;
    }
}
