: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;
}

.nc-logo img {
    height: 46px; /* ajuste conforme o seu logo */
    display: block;
}
a.nc-logo 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;
}
a.nc-contact {
    background: #ffffff;
    margin-right: -70px;
    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;
}

/* 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-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.nc-logo 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 {
    font-size: 15px;
    line-height: 1.6;
    max-width: 380px;
    color: var(--nc-purple);
}

/* === 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;
}

.nc-logo {
  position: relative;
  width: 40px;
  height: 40px;
}

.nc-logo 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;
}

/* 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: 36px;
  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: 20px;
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 22px;
}

.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;
  }
}

@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 (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;
        }
    }
    @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');
}
.projetos-sucesso h2.nc-titulo {
    font-family: Qurova;
}

@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 .nc-logo-icon {
    width: 36px;
    height: 36px;
    background: #5715ff;
    border-radius: 50%;
}

.nc-area .nc-logo-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;
}

/* 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-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 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;
  }