/*
Theme Name: Netcare
Theme URI: https://developer.elobyte.com.br/
Author: Netcare
Author URI: https://exploreinga.com.br/
Description: Tema exclusivo para a NetCare
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netcare
*/

:root {
    --nc-purple-light: 5715ff;
    --nc-purple: #390ea6;
    --nc-purple-dark: #230867;
    --nc-yellow: #e5f034;
    --nc-green-btn1: #2aa81a;
    --nc-green-btn2: #30c21d;
}

body {
    margin: 0;
    font-family: "Ubuntu", sans-serif !important;
    background-color: #f9f9fb;
}
/* HEADER */
.nc-header {
    background-color: #ffffff;
    padding: 16px 0;
}

.nc-header-inner {
    display: flex;
    align-items: center;
}

.custom-logo-link img {
    height: 46px; /* ajuste conforme o seu logo */
    display: block;
}
a.custom-logo-link img {
    width: 195px;
    height: auto;
}
.nc-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* NAV */
.nc-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.nc-nav-menu li a {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--nc-purple);
    font-weight: 500;
    white-space: nowrap;
}
ul.nc-nav-menu li a {
    padding: 5px 15px 5px 15px;
    height: 30px;
    border-radius: 999px;
}
ul.nc-nav-menu li a:not(.active):hover {
    color: #1b0552;
}
.nc-contact a {
    background: #ffffff;
    z-index: 100;
    position: relative;
    display: block;
}
/* "SOLUÇÕES" destacado, sem degradê */
.nc-nav-menu .active {
    background: var(--nc-purple);
    color: var(--nc-yellow);
    border-radius: 999px;
    display: inline-block;
    margin: 0 5px;
}
.nc-nav-menu li.nc-contact a.active {
    color: var(--nc-yellow);
    background: var(--nc-purple);
}
/* BUSCA — comportamento correto */
.nc-search-wrapper {
display: flex;
align-items: center;
gap: 15px;
margin-left: 4px;
}

.nc-search-form {
position: relative;
background: var(--nc-purple);
border-radius: 999px;
padding: 0 40px 0 20px;
display: flex;
align-items: center;
width: 190px;
height: 30px;
transition: width 0.25s ease;
z-index: 1;
}

/* Expande APENAS quando clica */
.nc-search-form:focus-within {
width: 260px;
}

/* Input */
.nc-search-input {
border: none;
background: transparent;
font-size: 15px;
color: #ffffff;
width: 100%;
height: 100%;
outline: none;
display: flex;
align-items: center;
text-indent: 35px;
padding-bottom: 2px;
font-family: "Ubuntu", sans-serif;
}

/* Placeholder */
.nc-search-input::placeholder {
color: #f0e9ff;
}

/* Botão da lupa FIXO na borda direita */
.nc-search-btn {
position: absolute;
right: 14px;
top: 50%;
transform: translateY(-50%);
border: none;
background: transparent;
color: #ffffff;
font-size: 15px;
cursor: pointer;
padding: 0;
}

/* WHATSAPP */
.nc-whats-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: var(--nc-green-btn1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}
.nc-whats-btn:hover {
    background-color: var(--nc-green-btn2);
}

/* HAMBURGER */
.nc-burger {
    width: 26px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
}

.nc-burger span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background-color: var(--nc-purple);
    transition: all 0.25s ease;
}

.nc-burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nc-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.nc-burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 992px) {
    .nc-header-inner {
        justify-content: space-between;
    }

    .nc-header-right {
        position: absolute;
        top: 51px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 0px 20px 20px 20px;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
        display: none;
        z-index: 999;
    }

    .nc-header-right.is-open {
        display: flex;
    }

    .nc-nav-menu {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    /* Menu simples no mobile (sem destaque em SOLUÇÕES) */
    .nc-nav-menu li.active a {
        background: none;
        padding: 0;
        border-radius: 0;
        color: var(--nc-purple);
    }

    .nc-search-wrapper {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .nc-search-form {
        width: 100%;
    }

    .nc-search-form:hover,
    .nc-search-input:focus {
        width: 100%;
    }

    .nc-burger {
        display: flex;
    }
}

/* DESKTOP: efeito do CONTATO passando por cima da busca */
@media (min-width: 992px) {

    .nc-nav-menu li.nc-contact {
        position: relative;
        z-index: 5;        /* fica acima da busca */
        background: #ffffff;
        border-radius: 999px 0 0 999px; /* lado direito arredondado */
        padding: 10px 18px 10px 22px;   /* ajuste perfeito */
        margin-right: -22px;            /* invade o espaço da busca */
    }
    .nc-contact {
        display: flex;
    }
    .nc-contact a {
        margin-left: -20px;
    }
    .nc-contact a {
        margin-right: -70px;
    }
    .nc-nav-menu li.nc-contact a.active {
        margin-right: -80px;
        margin-left: -10px;
    }
    .nc-nav-menu li.nc-contact a {
        color: var(--nc-purple);
        position: relative;
        z-index: 6;
        text-transform: uppercase;
        font-weight: 500;
    }

    /* Busca fica por baixo naturalmente */
    .nc-search-wrapper {
        position: relative;
        z-index: 1;
    }
}
/* ============================
MENU MOBILE SIMPLES E LIMPO
============================ */
@media (max-width: 992px) {

    /* Lista do menu */
    .nc-nav-menu {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        text-align: center !important;
        width: 100%;
    }

    /* Links */
    .nc-nav-menu li a,
    .nc-nav-menu li.nc-contact a,
    .nc-nav-menu li a.active {
        background: none !important;
        color: var(--nc-purple) !important;
        padding: 8px 0 !important;
        border-radius: 0 !important;
        width: 100%;
        display: block;
        text-align: center;
        font-size: 15px;
        letter-spacing: 0.03em;
    }

    /* Remove qualquer efeito de interação */
    .nc-nav-menu li a:hover,
    .nc-nav-menu li a:active,
    .nc-nav-menu li a:focus {
        background: none !important;
        color: var(--nc-purple) !important;
    }

    /* Busca no mobile: SEM expansão */
    .nc-search-wrapper {
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }

    .nc-search-form {
        width: 100% !important;
        max-width: 260px;
        transition: none !important;
        height: 35px !important;
        padding: 0 40px 0 15px !important;
    }

    .nc-search-form:focus-within {
        width: 100% !important;
        max-width: 260px !important;
    }

    /* Input alinhado e sem efeitos */
    .nc-search-input {
        text-indent: 0 !important;
        padding: 0 !important;
        text-align: left;
        font-size: 14px;
    }

    /* Lupa fixa */
    .nc-search-btn {
        right: 12px !important;
    }
    a.nc-contact {
        margin: 0 auto;
    }
}
@media (max-width: 460px) {
    a.custom-logo-link img {
        width: 140px;
    }
    .nc-header-right {
        top: 41px;
    }
}
@media (max-width: 350px) {
    header .nc-whats-btn {
        width: 39px;
    }
}


.nc-full-slider .nc-slide {
    position: relative;
}

.nc-full-slider .nc-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.owl-nav button i {
    font-size: 20px;
    color: var(--nc-purple);
}

.owl-nav .owl-prev {
    left: 20px;
}

.owl-nav .owl-next {
    right: 20px;
}

.owl-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    background: var(--nc-purple);
    margin: 6px;
}

.owl-dots .owl-dot.active span {
    background: var(--nc-yellow);
}

.block-home-01 {
    background: var(--nc-purple-dark);
    color: #fff;
}

.block-home-01 {
    padding: 50px 0;
}

.block-home-01 .item-block {
    display: flex;
    justify-content: space-between;
}

.block-home-01 .item-block {
    text-align: center;
}

@media(min-width: 768px) and (max-width: 1200px){ 
    .block-home-01 .item-block img {
        width: 70%;
    }
}
@media(max-width: 768px){
    .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
    }
    .block-home-01 .item-block {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .block-home-01 .item-block img {
        width: 50%;
    }
    .block-home-01 .item-block div:nth-child(1),
    .block-home-01 .item-block div:nth-child(2) {
    margin-bottom: 50px;
    }
    .block-home-01 img.img1 {
        width: 46%;
    }
    .block-home-01 img.img2 {
        width: 66%;
    }
    .block-home-01 img.img4 {
        width: 62%;
    }
}
@media(min-width: 992px){
    .owl-dots {
        width: 30px;
        right: 21%;
        transform: translateY(-50%);
        top: 50%;
        height: 130px;
        display: grid;
    }
    button.owl-dot {
        display: block;
    }
}



/* === SEÇÃO PRINCIPAL === */
.nc-section {
    position: relative;
    width: 100%;
}

/* === BLOCO DO TEXTO === */
.nc-text-block {
    position: relative;
    z-index: 10;
}

.nc-small-icon {
    width: 30px;
}

.nc-title {
    font-weight: 400;
    color: #0372ff;
    margin: 30px 0;
}

.nc-desc p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 380px;
    color: var(--nc-purple);
}
.solucoes-rede {
    padding-top: 30px;
    padding-bottom: 30px;
}
/* === IMAGEM FULLWIDTH À DIREITA === */
.nc-image-wrapper {
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    transform: translateY(-50%);
    top: 50%;
}

.nc-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

span.title-rede {
    display: flex;
    line-height: 19px;
    color: var(--nc-purple);
    align-items: center;
}
span.title-rede img {
    margin-right: 10px;
}


/* ------------------------------GRID_SOLUCOES------------------------------ */
/* =========================
   BASE / LAYOUT GERAL
========================= */
.nc-wrapper {
  background: var(--nc-yellow);
  padding: 30px 0 50px;
  color: #ffffff;
}

/* container central */
.nc-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
}

/* logo / título topo */
.nc-title-solut {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.custom-logo-link {
  position: relative;
}

.custom-logo-link span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 999px;
}

.nc-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nc-purple);
}

/* =========================
   ACORDEON DE CARDS
========================= */
.nc-accordion {
  height: 420px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* card base */
.nc-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  transition: flex-grow 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* card ativo "abre" mais */
.nc-card.nc-active {
  flex-grow: 3;
}

/* fundo / imagem */
.nc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* overlays */
.nc-overlay-base,
.nc-overlay-grad,
.nc-overlay-expanded {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nc-overlay-base {
  background: #5715ff; /* indigo-900/60 */
  mix-blend-mode: multiply;
  transition: background-color 0.5s ease;
}

.nc-card.nc-active .nc-overlay-base {
  background: #5715ff;
}

.nc-overlay-grad {
  background: linear-gradient(to top, #5715ff, #5715ff, transparent);
  opacity: .9;
}

.nc-overlay-expanded {
  background: linear-gradient(to right, transparent, #5715ff, #5715ff);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.nc-card.nc-active .nc-overlay-expanded {
  opacity: 1;
}
.nc-content-expanded a {
    text-decoration: none;
}
.nc-exp-text {
    margin-bottom: 20px;
}
/* conteúdo interno */
.nc-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* =========================
   ESTADOS: FECHADO / ABERTO
========================= */

/* bloco colapsado (número grande + título + resumo + saiba mais) */
.nc-content-collapsed {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.nc-card.nc-active .nc-content-collapsed {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

/* bloco expandido (lado esquerdo + texto completo) */
.nc-content-expanded {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nc-card.nc-active .nc-content-expanded {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: .1s;
}

/* coluna com número gigante + título em duas linhas (desktop) */
.nc-exp-left {
  flex: 1;
  display: none;        /* escondido no mobile */
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 32px;
}

.nc-exp-num-big {
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  margin-bottom: -8px;
}

.nc-exp-title {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

/* coluna de texto completo */
.nc-exp-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

.nc-exp-wrap {
  max-width: 550px;
}

.nc-exp-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 24px;
}

.nc-exp-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(226,232,240,0.9);
  margin-bottom: 14px;
}

.nc-exp-btn {
  margin-top: 18px;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.nc-exp-btn:hover {
  background: #ffffff;
  color: #5715ff;
}

/* textos colapsados */
.nc-num {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.nc-title-sm {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .06em;
    line-height: 19px;
}

.nc-desc-short {
  font-size: 13px;
  color: #e5e7eb;
  margin: 12px 0 16px;
}

.nc-link-more {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
}

.nc-active .nc-overlay-grad {
    background: transparent;
    opacity: .9;
}

/* =========================
   RESPONSIVO
========================= */
@media (min-width: 1024px) {
  .nc-card-inner {
    padding: 32px;
  }
  .nc-exp-left {
    display: flex;
  }
  .nc-exp-right {
    padding-left: 32px;
  }
}

@media (max-width: 768px) {
  .nc-accordion {
    flex-direction: column;
    height: auto;
  }
  .nc-card {
    min-height: 340px;
  }
  .nc-card.nc-active {
    flex-grow: 1;
  }
  .nc-exp-text {
        margin-bottom: 40px;
    }
}
@media(max-width: 360px){
    a.nc-exp-btn {
        display: flex;
        justify-content: center;
        font-size: 10px;
    }
}
@media(min-width: 992px) and (max-width: 1280px) {
    .nc-accordion {
        height: 600px;
    }
}
/* ----------------------------ENDGRID_SOLUCOES----------------------------- */




/* === RESPONSIVO === */
@media (max-width: 991px) {
    .nc-image-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    
    .nc-main-image {
        width: 100%;
        object-fit: contain;
    }

    .nc-title {
        font-size: 26px;
    }
}

@media(max-width: 991px) {
    .nc-section,
    .content-b-rede {
        min-height: 500px;
    }
    .nc-image-wrapper {
        transform: unset;
        top: 0;
    }
    .content-b-rede {
        min-height: 290px;
        padding-top: 50px;
    }
    .nc-image-wrapper {
        margin-top: 0;
    }
    .nc-text-block {
        width: 100% !important;
    }
    .nc-desc {
        max-width: 100% !important;
    }
}
@media (min-width: 1398px) {
    .nc-section,
    .content-b-rede {
        min-height: 790px;
    }
}
@media(min-width: 1398px) and (max-width: 1590px) {
    .nc-main-image {
        width: 90%;
    }
    .nc-section, .content-b-rede {
        min-height: 690px;
    }
}
@media(min-width: 992px) and (max-width: 1398px) {
    .nc-main-image {
        width: 80%;
    }
     .nc-section, .content-b-rede {
        min-height: 590px;
    }
}
@media(min-width: 990px) and (max-width: 998px){
    .bradingc {
        width: 99%;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .content-b-rede {
        padding-top: 15px;
    }
        .nc-title {
            font-size: 26px;
            margin: 20px 0;
        }
    }
      /* 1. Globe Image Section */
      .globe-section {
        width: 100%;
        /* height: 350px;  */
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start; 
      }
      .globe-section img {
        width: 100%;
        object-fit: contain; 
        max-width: 1000px; 
      }
      .title-container {
        color: #430098; 
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 3rem;
      }
      .title-icon {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        stroke-width: 2.5;
      }
      .title-text {
        font-weight: 700;
        font-size: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .logo-col {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
      }
      .logo-img {
        max-width: 180px;
        max-height: 90px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
      }     
      .logo-img:hover {
        transform: scale(1.05);
      }
      .globes .nc-title-solut {
            margin-top: -140px !important;
            width: 70%;
            margin: 0 auto;
            margin-bottom: 20px;
        }
        .globe-section {
            z-index: -100;
            position: relative;
            margin-top: -2px;
        }
    @media(max-width: 1200px){
         .globes .nc-title-solut {
            margin-top: -100px !important;
            width: 100%;
            margin: 0 auto;
            margin-bottom: 50px;
        }
        .bradingc {
            margin: 0 auto;
        }
    }
    @media(max-width: 992px){
         .globes .nc-title-solut {
            margin-top: -85px !important;
        }
        .globes .nc-title-solut {
            justify-content: center;
        }
    }
    @media(max-width: 768px){
      .globes .nc-title-solut {
            margin-top: -30px !important;
        }
        .nc-title.nt {
            font-size: 20px;
        }
    }
    @media(min-width: 1024px){
        .vivo img {
            position: relative;
            left: 40px;
        }
        .sky img {
            position: relative;
            right: 40px;
        }
        .mga img {
            position: relative;
            left: 110px;
            top: -10px;
        }
        .net img {
            position: relative;
            right: 110px;
            top: -10px;
        }
    }
    @media(min-width: 1200px){
        .vivo img {
            position: relative;
            left: 100px;
        }
        .sky img {
            position: relative;
            right: 100px;
        }
        .mga img {
            position: relative;
            left: 150px;
            top: -30px;
        }
        .net img {
            position: relative;
            right: 150px;
            top: -30px;
        }
    }
    @media(min-width: 1400px){
        .vivo img {
            position: relative;
            left: 100px;
        }
        .sky img {
            position: relative;
            right: 100px;
        }
        .mga img {
            position: relative;
            left: 180px;
            top: -30px;
        }
        .net img {
            position: relative;
            right: 180px;
            top: -30px;
        }
    }

    /* SEÇÃO GERAL */
    .nc-projetos-sucesso {
        position: relative;
        width: 100%;
        padding: 100px 0;
        overflow: hidden;
        color: #ffffff;
    }

/* BACKGROUND */
.nc-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/img/fale-com-especialista.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
}

/* GARANTE QUE O CONTEÚDO FICA ACIMA DO BG */
.nc-projetos-sucesso .container,
.nc-projetos-sucesso * {
    position: relative;
    z-index: 5;
}

/* TAG SUPERIOR */
.nc-tag {
    display: inline-block;
    padding: 10px 35px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 25px;
    font-size: 19px;
    margin-bottom: 30px;
}

/* ASPAS INICIAL */
.nc-aspas {
    font-size: 95px;
    margin-bottom: -5px;
    line-height: 0;
    font-family: Qurova;
    margin-top: 48px;
}

/* TÍTULO */
.nc-titulo {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 10px;
}

.nc-aspas-end {
    font-size: 55px;
    line-height: 0;
}

/* AUTOR */
.nc-autor {
    font-size: 18px;
    margin-bottom: 25px;
}

/* TEXTO DESCRITIVO */
.nc-descricao {
    font-size: 18px;
    max-width: 450px;
    margin-bottom: 40px;
}

/* BOTÃO */
.nc-cta {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #f8e943;
    border-bottom: 3px solid #f8e943;
    padding-bottom: 5px;
    text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .nc-titulo {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .nc-projetos-sucesso {
        padding: 70px 0;
    }

    .nc-bg {
        background-position: center;
    }

    .nc-tag {
        margin-top: 20px;
    }

    .nc-titulo {
        font-size: 30px;
    }

    .nc-descricao {
        font-size: 16px;
    }
}
/* .projetos-sucesso {
    background-image: url('assets/img/fale-com-especialista.jpg');
} */

@media (max-width: 768px) {
    .projetos-sucesso {
        background-size: cover;
        background-position: center;
        background-image: linear-gradient(rgb(60 24 146 / 71%), rgba(0, 0, 0, 0.5)), url(assets/img/fale-com-especialista.jpg);
    }
    .nc-aspas-end {
        font-size: unset;
        line-height: 0;
    }
}
@media (max-width: 640px) {
    .nc-projetos-sucesso {
        padding: 30px 15px 50px 15px;
    }
}


/* ===== SECTION AREA ===== */
.nc-area {
    padding: 80px 0;
    background: #ffffff;
}

/* ===== MAPA ===== */
.nc-area .nc-map-wrapper {
    position: relative;
}

.nc-area .nc-map {
    max-width: 100%;
    height: auto;
}

/* ===== CONTEÚDO ===== */
.nc-area .nc-content {
    max-width: 520px;
}

/* SUBTÍTULO */
.nc-area .nc-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #5715ff;
    margin-bottom: 15px;
}

/* TAGS */
.nc-area .nc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.nc-tags span {
    border: 0;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400 !important;
    font-size: 17px !important;
}
.nc-area .nc-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.nc-area .nc-tag.purple {
    background: #5715ff;
    color: #e5f034;
}

.nc-area .nc-tag.yellow {
    background: #e5f034;
    color: #5715ff;
}

/* LOGO */
.nc-area .nc-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    margin-top: 45px;
}

.nc-area .custom-logo-link-icon {
    width: 36px;
    height: 36px;
    background: #5715ff;
    border-radius: 50%;
}

.nc-area .custom-logo-link-text {
    font-size: 34px;
    font-weight: 700;
    color: #5715ff;
}

/* ENDEREÇO */
.nc-area .nc-address {
    font-style: normal;
    font-size: 21px;
    line-height: 1.6;
    color: #230867;
    margin-bottom: 40px;
}
.nc-area .nc-address {
    white-space: pre-line;
    line-height: 17px !important;
}
/* BOTÃO */
.nc-area .nc-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #5715ff;
    border-radius: 30px;
    background-color: transparent;
    color: #5715ff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nc-area .nc-btn:hover {
    background-color: #5715ff;
    color: #ffffff;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .nc-area .nc-area {
        padding: 50px 0;
    }

    .nc-area .nc-content {
        margin-top: 40px;
        max-width: 100%;
        text-align: center;
    }

    .nc-area .nc-tags {
        justify-content: center;
    }

    .nc-area .nc-brand {
        justify-content: center;
    }
    .nc-area {
        padding: 10px 10px 50px 10px;
    }
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nc-tags span {
        margin-top: 0;
    }
    .nc-area .nc-address {
        font-size: 18px;
        line-height: 27px;
    }
}

.footer-copy a {
    color: #b6b5b5;
    text-decoration: none;
}
.footer-copy a:hover {
    color: #fff;
}
.footer-wrapper {
 background: radial-gradient(circle at bottom, #200762, #06002d);
  color: #fff;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  margin-bottom: 50px;
}

.footer-top-left img {
  max-width: 220px;
}

.footer-top-right {
  display: flex;
  justify-content: flex-end;
}

.footer-social a {
  color: #5715ff;
  margin-left: 16px;
  font-size: 21px;
}
.footer-social a.ytb i {
    font-size: 20px;
}
.footer-social a.facb i {
    font-size: 20px;
}
.footer-menus {
  margin-bottom: 50px;
}
.footer-app-icons img {
    width: 27px;
}
a.app-netcare02 img {
    width: 25px;
}
a.app-netcare01 {
    margin-right: 7px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.footer-app-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.footer-app-icons span {
    display: block;
    text-transform: uppercase;
    color: #969696;
    margin-bottom: 5px;
}
.footer-app-icons img {
  max-width: 120px;
}
.footer-info p {
  font-size: 14px;
  line-height: 1.5;
}
.footer-copy {
  font-size: 13px;
  opacity: 0.75;
  padding-bottom: 40px;
}
.footer-globe {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  pointer-events: none;
}
.footer-globe img {
  width: 100%;
}
.footer-menus {
    margin-bottom: 250px;
}
ul.footer-menu li a {
    text-transform: uppercase;
}
.footer-menus,
.footer-copy {
    position: relative;
    z-index: 9999;
}
.footer-info p {
    font-weight: 100 !important;
}
.footer-menu li a:hover {
    color: #a683ff;
}
/* MOBILE */
@media (max-width: 991.98px) {
  .footer-top-left,
  .footer-top-right,
  .footer-menu,
  .footer-info,
  .footer-copy {
    text-align: center;
  }

  .footer-top-right {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-app-icons {
    align-items: center;
  }

  .footer-globe {
    bottom: -140px;
    width: 160%;
  }
}
.footer-app-icons a:hover,
.footer-social a {
    display: inline-block; 
}
.footer-app-icons a:hover,
.footer-social a:hover {
    -webkit-animation: swing 1s ease !important;
    animation: swing 1s ease !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
}
.block-home-01 img {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}
@media(max-width: 768px){
    ul.footer-menu li {
    margin-bottom: 0;
    }
    ul.footer-menu {
        margin-bottom: 40px;
    }
    .footer-info p {
        margin-bottom: 5px;
    }
    .footer-info {
        margin-top: 30px;
    }
    .footer-wrapper {
        padding: 40px 0;
    }
    .footer-top-right {
        margin-top: 50px !important;
    }
    .footer-menus {
        margin-bottom: 60px;
    }
    .footer-globe {
        bottom: -20px;
    }
}
@-webkit-keyframes swing {
    20% {
      -webkit-transform: rotate3d(0, 0, 1, 15deg);
              transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
      -webkit-transform: rotate3d(0, 0, 1, -10deg);
              transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
      -webkit-transform: rotate3d(0, 0, 1, 5deg);
              transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
      -webkit-transform: rotate3d(0, 0, 1, -5deg);
              transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
              transform: rotate3d(0, 0, 1, 0deg);
        }
  }
@keyframes swing {
    20% {
      -webkit-transform: rotate3d(0, 0, 1, 15deg);
              transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
      -webkit-transform: rotate3d(0, 0, 1, -10deg);
              transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
      -webkit-transform: rotate3d(0, 0, 1, 5deg);
              transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
      -webkit-transform: rotate3d(0, 0, 1, -5deg);
              transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
      -webkit-transform: rotate3d(0, 0, 1, 0deg);
              transform: rotate3d(0, 0, 1, 0deg);
        }
  }
  .swing {
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
    -webkit-animation-name: swing;
            animation-name: swing;
  }


.nossa-historia .nc-right-block {
  display: flex;
  flex-direction: column;
}
/* empurra o texto para baixo da imagem */
.nossa-historia  .nc-text-bottom {
  margin-top: auto;
}
.nossa-historia .nc-text-block {
    display: grid;
    align-content: center;
}
.nossa-historia h1.nh-title {
    color: #390ea6;
    font-weight: 100;
    margin-top: 175px;
}
.nossa-historia .nc-desc p,
.nossa-historia .nc-text-bottom p {
    color: #616161;
    font-size: 18px;
}
.nossa-historia .nc-desc strong {
    color: #5715ff;
}
.nossa-historia .nc-desc {
    margin-top: 30px;
}
.nossa-historia h1.nh-title,
.nossa-historia .nc-desc {
    width: 75%;
}
.nossa-historia .nc-section, 
.nossa-historia .content-b-rede {
    min-height: 300px !important;
}
.nossa-historia section.nc-section {
    margin-top: -80px;
}
.nossa-historia {
    overflow: hidden;
}
.nossa-historia .content-b-rede {
    margin-bottom: 90px;
}
.nossa-historia .nh-block-2 p {
    color: #616161;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 16px;
}
.nossa-historia .col-textnh {
    margin-top: 50px;
    margin-bottom: 50px;
}
.nossa-historia .nc-title {
    margin: 20px 0;
}
.solucoes-rede .nc-desc p {
    margin-bottom: 0;
}
@media(min-width: 992px) and (max-width: 1350px) {
   .nossa-historia .nc-main-image {
        width: 65%;
    }
    .nossa-historia h1.nh-title,
    .nossa-historia p.nc-desc {
        width: 90%;
    }
    .nossa-historia section.nc-section {
        margin-top: -130px;
    }
    h1.nh-title {
        font-size: 32px;
    }
}
@media(min-width: 1260px) {
    .nh-imgb2 img {
        margin-left: -70px;
    }
}
@media(max-width: 1260px) {
    .nh-imgb2 img {
        margin-left: 0;
        width: 100%;
    }
}
@media(max-width: 991px) {
    .nossa-historia h1.nh-title,
    .nossa-historia section.nc-section {
        margin-top: 0;
    }
    .nossa-historia h1.nh-title,
    .nossa-historia p.nc-desc {
        width: 100%;
    }
    .nossa-historia .nc-right-block {
        width: 100%;
    }
    .nossa-historia p.nc-text-bottom {
        max-width: 100% !important;
    }
    .nossa-historia .nc-image-wrapper {
        right: -20%;
        margin-top: 25px;
        margin-bottom: 40px;
    }
    .nossa-historia .content-b-rede {
        margin-bottom: 20px;
    }
    .nossa-historia .nh-block-2 p {
        width: 100%;
    }
}
@media(max-width: 768px) {
    .nossa-historia .nc-image-wrapper {
        right: -25%;
    }
    .nossa-historia .col-textnh {
        margin-top:15px;
    }
}
@media(max-width: 540px) {
    .nossa-historia .nc-image-wrapper {
        right: -5%;
    }
}
.solucoes .solucoes-banner img {
    width: 100%;
}



/* Navegação superior */
.solucoes .nav-header { border: none; 
    justify-content: center; 
    padding: 30px 0; 
    gap: 10px; 
}
.solucoes .nav-header .nav-link {
    color: #230867;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 50px;
    text-align: center;
    transition: 0.3s;
}
.solucoes .nav-header .nav-link.active {
    color: #5715ff !important; 
    border-color: #5715ff !important;
    background: transparent !important;
}
.solucoes .hero-title { 
    color: #5715ff; 
    font-weight: 100; 
    font-size: 3.8rem; 
    line-height: 66px; 
}
.solucoes .sub-title { color: #5715ff;
    font-weight: 400; 
    font-size: 23px; 
    margin-bottom: 15px; 
}
.solucoes div#contentTabs {
    margin-top: 73px;
}
.solucoes .lorem-text { color: #888; 
    font-size: 18px; 
    line-height: 1.6; 
    max-width: 500px; 
}
.solucoes .img-circle { width: 130px; 
    height: 130px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 10px; 
    border: 1px solid #eee; 
}
.solucoes .contact-sidebar { display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
}
.solucoes .whatsapp-icon { margin-bottom: 15px; 
    margin-right: 15px; 
    cursor: pointer; 
}
.solucoes .side-card {
    border: 2px solid #e5f034;
    border-radius: 12px;
    padding: 15px 15px;
    text-align: right;
    margin-bottom: 15px;
    color: #230867;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    width: 100%;
    max-width: 180px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1.3;
    display: grid;
    justify-items: right;
}
.solucoes img.solut-icon-1 {
    width: 40px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.solucoes img.solut-icon-2 {
    width: 30px;
    margin-bottom: 7px;
    margin-right: 5px;
}
.solucoes a.nc-whats-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
}
.solucoes .side-card:hover { 
    background-color: #f9f9f9; 
    transform: translateX(-5px); 
}
.solucoes .footer-budget { 
    background-color: #5715ff; 
    padding: 50px 0; 
    color: white; 
    margin-top: 50px; 
}
.solucoes .footer-budget h3 { 
    font-weight: 300; 
    letter-spacing: 2px; 
    margin-bottom: 30px; 
}
.solucoes .footer-budget h3 {
    text-align: left;
    width: 850px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.solucoes .footer-budget input { 
    border-radius: 30px; 
    padding: 12px 25px; 
    border: none; 
    width: 100%; 
}
.solucoes .btn-enviar {
    background-color: #390ea6;
    color: #e2e61c; 
    border-radius: 30px;
    font-weight: 700; 
    padding: 12px; 
    width: 100%; 
    border: none; 
    transition: 0.3s;
}
.solucoes .btn-enviar:hover { 
    background-color: #2d0b81; 
}
.solucoes form.row.justify-content-center {
    gap: 5px;
}
.contact-sidebar .side-card a {
    text-decoration: none;
    display: grid;
    justify-items: end;
}
@media (max-width: 991px) {
    .solucoes .hero-title { font-size: 2.8rem; 
        text-align: center; 
        margin-bottom: 30px; 
    }
    .solucoes .contact-sidebar { align-items: center; 
        margin-top: 40px; 
    }
    .solucoes .side-card { text-align: center; 
    }
    .solucoes .nav-header { flex-direction: column; 
        align-items: center; 
    }
}

@media(max-width: 1400px){
    .solucoes .footer-budget h3 {
        width: 730px;
    }
}
@media(max-width: 1200px){
    .solucoes .footer-budget h3 {
        width: 615px;
    }
    .solucoes .hero-title {
        font-size: 50px;
        line-height: 60px;
    }
}
@media(max-width: 992px){
    .solucoes .footer-budget h3 {
        width: 100%;
        text-align: center;
    }
    .solucoes form.row.justify-content-center {
        gap: 7px;
    }
        .solucoes .whatsapp-icon {
        position: absolute;
        top: -50px;
        right: 0;
    }
    .solucoes .contact-sidebar {
        position: relative;
        gap: 10px;
    }
    .solucoes .side-card {
        font-size: 17px !important;
    }
    .solucoes .contact-sidebar {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .solucoes div#contentTabs {
        margin-top: 20px;
    }
    .align-items-start {
        margin-top: 0 !important;
    }
    .footer-app-icons {
        margin-bottom: 70px;
        text-align: center;
    }
}
@media(max-width: 768px){
    .solucoes form.row.justify-content-center {
        gap: 17px;
    }
}
.produtos .links-produtos ul li {
    color: #5715ff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
}
.produtos .links-produtos ul {
    padding-left: 17px;
}
.produtos div#contentTabs {
    margin-top: 0;
}
.trabalhe-conosco .title-purple {
    color: #5715ff;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
}
.trabalhe-conosco .custom-card h4 {
    width: 40%;
}
.trabalhe-conosco .subtitle-gray {
    color: #616161;
    font-size: 18px;
    margin-top: 15px;
}
.trabalhe-conosco .text-trablcons {
    margin-top: 40px;
    margin-bottom: -30px;
}
.trabalhe-conosco .form-control-custom {
    width: 100%;
    padding: 12px 20px;
    border: 1.5px solid #A5A5F2;
    border-radius: 30px;
    outline: none;
    color: #999;
}
.trabalhe-conosco .form-control-custom::placeholder {
    color: #CCC;
    text-transform: uppercase;
}
.trabalhe-conosco .btn-enviar-custom {
    background-color: #3300AB;
    color: #e5f034;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 30px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}
.trabalhe-conosco .btn-enviar-custom:hover {
    background-color: #260085;
}
.trabalhe-conosco .file-upload {
    position: relative;
    border: 1.5px solid #A5A5F2;
    border-radius: 30px;
    padding: 12px 20px;
    text-align: left;
    color: #CCC;
}
.trabalhe-conosco .file-upload input[type="file"] {
    display: none;
}
.trabalhe-conosco .file-upload label {
    margin-bottom: 0;
    cursor: pointer;
    display: block;
    width: 100%;
}

.trabalhe-conosco .custom-card {
    border: 2px solid #e5f034;
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    background-color: #fff;
    transition: transform 0.3s ease;
}
.trabalhe-conosco .card-title-purple {
    color: #5715ff;
    font-weight: 400;
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.trabalhe-conosco .card-text-gray {
    color: #616161;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
}
.trabalhe-conosco .custom-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.trabalhe-conosco .text-trablcons p {
    color: #616161;
    font-size: 18px;
}
.trabalhe-conosco .formtb {
    margin-bottom: 40px;
}
@media(min-width: 1200px){
    .produtos .tab-pane {
        padding-left: 10%;
    }
    .trabalhe-conosco .text-trablcons p {
        width: 50%;
    }
}
@media(max-width: 640px){
    .trabalhe-conosco .text-trablcons {
        margin-top: 10px;
        margin-bottom: -40px;
    }
}
.contato footer.trabform {
    margin-top: 60px;
}
.contact-info {
    color: #494949;
}
a.nc-contact.active {
    margin-right: -70px;
}

@media(max-width: 992px){
    a.nc-contact.active {
        margin-right:  unset !important;
        margin-left: 0 !important;
    }
}
@media(min-width:1230px){
    .nc-content-expanded a {
        display: flex;
        justify-content: center;
        text-decoration: none;
        min-width: 292px;
    }
}
@media(min-width: 1023px) and (max-width: 1230px) {
    .nc-content-expanded a {
       font-size: 10px;
        display: block;
        text-align: center;
    }
}
@media(min-width: 768px) and (max-width: 930px) {
    .nc-title-sm {
        font-size: 12px;
        font-weight: 700;
        line-height: 16px;
    }
}
@media(min-width: 992px) {
    /*.solucoes .nav-header li {*/
    /*    width: 22%;*/
    /*}*/
    /*.produtos .nav-header li {*/
    /*    width: 32%;*/
    /*}*/
    .trabalhe-conosco footer.trabform h3 {
        width: 50%;
    }
    .trabalhe-conosco footer.trabform p {
        width: 65%;
    }
}
@media(max-width: 992px) {
    /*.solucoes .nav-header li {*/
    /*    width: 40%;*/
    /*}*/
    .trabalhe-conosco footer.trabform h3 {
        width: 70%;
    }
}
@media(max-width: 768px) {
    /*.solucoes .nav-header li {*/
    /*    width: 50%;*/
    /*}*/
     .trabalhe-conosco footer.trabform h3 {
        width: 100%;
    }
     .trabalhe-conosco footer.trabform p {
        width: 100%;
    }
}
@media(max-width: 440px) {
    /*.solucoes .nav-header li {*/
    /*    width: 60%;*/
    /*}*/
}
@media(max-width: 375px) {
    /*.solucoes .nav-header li {*/
    /*    width: 80%;*/
    /*}*/
}
.wpcf7-not-valid-tip {
    color: #ff9e00;
}
.contato footer.trabform p {
    width: 100% !important;
}
.contato input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
    background-color: #390ea6;
    color: #e2e61c;
    border-radius: 30px;
    font-weight: 700;
    padding: 12px;
    width: 40%;
    border: none;
    transition: 0.3s;
}
.contato input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary:hover {
    background-color: #2d0b81;
}
span.wpcf7-spinner {
    display: none !important;
}