
/* ---- Paleta de acento: teal da marca (#108080) ---- */
:root,
.digi-dark {
   --tp-common-blue: #008D8D;      /* acento principal (botões, links, activos) */
   --tp-common-blue-2: #16bdb8;    /* variação clara (gradientes/hover) */
   --dc-teal-deep: #0d6d6b;        /* teal profundo do logótipo */
   --dc-teal-glow: rgba(18, 163, 160, 0.35);
}

/* ---- Tipografia de títulos ---- */
.al-hero-seo-title,
.al-section-title,
.al-footer-seo-widget-title,
.dc-lead-title {
   font-family: "Inter", sans-serif;
   letter-spacing: -0.03em;
}

/* Corpo garantidamente em Inter (o :root já aponta --tp-ff-inter) */
body {
   font-family: "Inter", sans-serif;
}

/* ---- Cursor mágico desligado (site institucional sóbrio) ---- */
#magic-cursor { display: none !important; }
body { cursor: auto; }

/* ---- Header: logótipo a 300px ---- */
.tp-header-logo img,
.tp-offcanvas-logo img,
.tp-footer-logo img {
   width: 300px;
   max-width: 100%;
   height: auto;
}
.tp-footer-logo img { width: 240px; }

@media (max-width: 1199px) {
   .tp-header-logo img { width: 240px; }
}
@media (max-width: 767px) {
   .tp-header-logo img { width: 200px; }
   .tp-offcanvas-logo img { width: 200px; }
}
@media (max-width: 400px) {
   .tp-header-logo img { width: 170px; }
}

/* Menu numa só linha (fonte legível, itens compactos) */
.tp-main-menu nav > ul { white-space: nowrap; }
.tp-main-menu nav > ul > li { margin: 0 13px; }
.tp-main-menu nav > ul > li > a {
   font-size: 16px;
   letter-spacing: 0.01em;
   padding: 26px 0;
}
.tp-main-menu nav > ul > li > a:hover { color: var(--tp-common-blue-2); }

/* Header SEMPRE fixo no topo (o tema punha-o em position:absolute) */
#header-sticky {
   position: fixed !important;
   top: 0;
   left: 0;
   right: 0;
   width: 100%;
   z-index: 99;
}

/* Fundo/blur ao fazer scroll */
.tp-header-area.header-sticky-on {
   /*background-color: rgba(3, 3, 3, 0.85);*/
   backdrop-filter: blur(14px);
   -webkit-backdrop-filter: blur(14px);
   box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.06);
}

/* ---- Âncoras: compensar header fixo ---- */
section[id], div[id].dc-anchor {
   scroll-margin-top: 100px;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
   html { scroll-behavior: auto; }
}

/* ---- HERO (sem imagem de dashboard; fundo escuro com glow teal) ---- */
.dc-hero {
   position: relative;
   overflow: hidden;
   padding-top: 220px;
   padding-bottom: 130px;
   background:
      radial-gradient(1100px 520px at 50% -8%, var(--dc-teal-glow) 0%, rgba(3, 3, 3, 0) 60%),
      radial-gradient(900px 500px at 88% 12%, rgba(22, 189, 184, 0.10) 0%, rgba(3, 3, 3, 0) 55%),
      #030303;
}
.dc-hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
   background-size: 64px 64px;
   -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
   mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
   pointer-events: none;
}
.dc-hero .container { position: relative; z-index: 2; }

@media (max-width: 991px) {
   .dc-hero { padding-top: 170px; padding-bottom: 90px; }
}

.dc-hero-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-family: "Inter", sans-serif;
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.82);
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.10);
   border-radius: 40px;
   padding: 8px 18px;
   margin-bottom: 30px;
}
.dc-hero-eyebrow .dot {
   width: 8px; height: 8px; border-radius: 50%;
   background: var(--tp-common-blue-2);
   box-shadow: 0 0 0 4px rgba(18, 163, 160, 0.20);
}
.dc-hero-title {
   font-family: "Inter", sans-serif;
   font-weight: 700;
   font-size: 68px;
   line-height: 1.05;
   letter-spacing: -0.03em;
   color: var(--tp-common-white);
   margin-bottom: 22px;
}
.dc-hero-title .accent { color: var(--tp-common-blue-2); }
@media (max-width: 1199px) { .dc-hero-title { font-size: 56px; } }
@media (max-width: 767px)  { .dc-hero-title { font-size: 40px; } }
@media (max-width: 400px)  { .dc-hero-title { font-size: 33px; } }

.dc-hero-sub {
   font-size: 19px;
   line-height: 1.6;
   color: rgba(255, 255, 255, 0.88);
   max-width: 640px;
   margin: 0 auto 38px;
}
@media (max-width: 767px) { .dc-hero-sub { font-size: 17px; } }

.dc-hero-tags {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px 26px;
   margin-top: 46px;
   color: rgba(255, 255, 255, 0.55);
   font-size: 14px;
   font-weight: 500;
}
.dc-hero-tags span { display: inline-flex; align-items: center; gap: 9px; }
.dc-hero-tags span::before {
   content: "";
   width: 6px; height: 6px; border-radius: 50%;
   background: var(--tp-common-blue-2);
}

/* ---- Botões ---- */
.dc-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-family: "Inter", sans-serif;
   font-weight: 600;
   font-size: 16px;
   line-height: 1;
   border-radius: 40px;
   padding: 18px 30px;
   transition: all 0.3s ease;
   border: 1px solid transparent;
}
.dc-btn svg { transition: transform 0.3s ease; }
.dc-btn:hover svg { transform: translateX(4px); }
.dc-btn-primary {
   background: var(--tp-common-blue);
   color: #fff;
}
.dc-btn-primary:hover {
   background: var(--tp-common-blue-2);
   color: #fff;
   box-shadow: 0 10px 30px -8px var(--dc-teal-glow);
}
.dc-btn-ghost {
   background: transparent;
   color: #fff;
   border-color: rgba(255, 255, 255, 0.18);
}
.dc-btn-ghost:hover {
   border-color: var(--tp-common-blue-2);
   color: #fff;
}
.dc-btn-group {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   justify-content: center;
}

/* Botão no header */
.tp-header-btn .dc-header-login {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--tp-common-blue);
   color: #fff;
   font-weight: 600;
   font-size: 17px;
   line-height: 1;
   padding: 13px 24px;
   border-radius: 40px;
   transition: all 0.3s ease;
}
.tp-header-btn img {
   max-width: 15px;
   margin-right: -8px;
}
.tp-header-btn span {
   font-size: 14px;
   margin-right: -8px;
}
.tp-header-btn .dc-header-login:hover {
   background: var(--tp-common-blue-2);
   color: #fff;
}

/* ---- Secção genérica (fundo preto uniforme) ---- */
.dc-section { position: relative; }
.dc-section-line {
   border: 0;
   border-top: 1px solid rgba(255, 255, 255, 0.07);
   margin: 0;
}

/* ---- "A plataforma" (intro em duas colunas) ---- */
.dc-about-text p {
   color: rgba(255, 255, 255, 0.74);
   font-size: 18px;
   line-height: 1.7;
   margin-bottom: 20px;
}
.dc-about-text p strong { color: #fff; font-weight: 600; }
.dc-about-list { list-style: none; padding: 0; margin: 26px 0 0; }
.dc-about-list li {
   position: relative;
   padding-left: 34px;
   margin-bottom: 16px;
   color: rgba(255, 255, 255, 0.82);
   font-size: 16px;
}
.dc-about-list li svg {
   position: absolute;
   left: 0; top: 2px;
   color: var(--tp-common-blue-2);
}

/* ---- Cartões de funcionalidades: caixa com borda no dark ---- */
.al-service-seo-item.dc-card {
   background: #0a0a0a;
   border: 1px solid rgba(255, 255, 255, 0.06);
   border-radius: 18px;
   padding: 34px 30px;
   height: 100%;
   transition: border-color 0.3s ease, transform 0.3s ease;
}
.al-service-seo-item.dc-card:hover {
   border-color: rgba(18, 163, 160, 0.5);
   transform: translateY(-4px);
}
.al-service-seo-item.dc-card .al-service-seo-icon span {
   background: rgba(18, 163, 160, 0.12);
   color: var(--tp-common-blue-2);
}
.al-service-seo-item.dc-card .al-service-seo-title { margin-top: 22px; }

/* ---- Cartão CTA (substitui o formulário SEO na FAQ) ---- */
.dc-cta-card {
   background: linear-gradient(150deg, #0c1514 0%, #0a0a0a 100%);
   border: 1px solid rgba(18, 163, 160, 0.22);
   border-radius: 22px;
   padding: 48px 44px;
}
.dc-cta-card h4 {
   font-family: "Inter", sans-serif;
   color: #fff;
   font-size: 28px;
   letter-spacing: -0.02em;
   margin-bottom: 14px;
}
.dc-cta-card p {
   color: rgba(255, 255, 255, 0.72);
   font-size: 16px;
   line-height: 1.6;
   margin-bottom: 30px;
}
.dc-cta-contacts {
   margin-top: 30px;
   padding-top: 26px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   display: grid;
   gap: 14px;
}
.dc-cta-contacts a {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   color: rgba(255, 255, 255, 0.85);
   font-size: 16px;
}
.dc-cta-contacts a:hover { color: var(--tp-common-blue-2); }
.dc-cta-contacts a svg { color: var(--tp-common-blue-2); flex: 0 0 auto; }
@media (max-width: 575px) { .dc-cta-card { padding: 34px 26px; } }

/* ---- Empresa ---- */
.dc-company-card {
   background: #0a0a0a;
   border: 1px solid rgba(255, 255, 255, 0.06);
   border-radius: 18px;
   padding: 30px 32px;
   height: 100%;
}
.dc-company-card h5 {
   color: #fff;
   font-family: "Inter", sans-serif;
   font-size: 20px;
   letter-spacing: -0.01em;
   margin-bottom: 12px;
}
.dc-company-card p {
   color: rgba(255, 255, 255, 0.72);
   font-size: 15.5px;
   line-height: 1.65;
   margin: 0;
}

/* ---- Animações de entrada (reveal robusto por IntersectionObserver) ----
   Sem a classe .dc-anim (no <html>) o conteúdo está SEMPRE visível.
   A classe só é adicionada por JS quando há suporte — logo, sem JS ou com
   reduced-motion, nada fica escondido. */
.dc-anim .tp_fade_anim,
.dc-anim .tp-text-revel-anim {
   opacity: 0;
   transform: translateY(34px);
   transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
               transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
   will-change: opacity, transform;
}
.dc-anim .tp_fade_anim.is-in,
.dc-anim .tp-text-revel-anim.is-in {
   opacity: 1;
   transform: none;
}
@media (prefers-reduced-motion: reduce) {
   .dc-anim .tp_fade_anim,
   .dc-anim .tp-text-revel-anim {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
   }
}

/* ---- Preloader: texto da marca ---- */
.loader-wrap .load-text span { color: var(--tp-common-blue-2); }

/* ---- Bloqueio de scroll com offcanvas aberto ---- */
body.dc-no-scroll { overflow: hidden; }

/* ---- Back-to-top: dark + teal (em vez do cinza/lima do tema) ----
   O tema assume um <span class="arrowUp"> e faz display:block; aqui o
   ícone é um <svg> directo, por isso centramos com flex e damos-lhe cor
   explícita (senão herda a cor preta do body e fica invisível). */
.scrollToTop {
   background-color: #0c1413 !important;
   border: 1px solid rgba(18, 163, 160, 0.45);
   color: var(--tp-common-blue-2);
}
.scrollToTop.active-progress {
   display: flex !important;
   align-items: center;
   justify-content: center;
}
.scrollToTop svg {
   width: 14px;
   height: auto;
   color: inherit;
   stroke: currentColor;
}
.scrollToTop:hover { color: #fff; }
.scrollToTop .water,
.scrollToTop .water svg use {
   background-color: var(--tp-common-blue) !important;
   border-color: var(--tp-common-blue) !important;
   fill: var(--tp-common-blue) !important;
}
.scrollToTop .arrowUp { color: var(--tp-common-blue-2); }
.scrollToTop:hover .arrowUp { color: #fff; }

/* ---- Offcanvas: nav mobile ---- */
.dc-offcanvas-nav { list-style: none; padding: 0; margin: 30px 0; }
.dc-offcanvas-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.dc-offcanvas-nav li a {
   display: block;
   padding: 15px 0;
   color: #fff;
   font-size: 18px;
   font-weight: 500;
}
.dc-offcanvas-nav li a:hover { color: var(--tp-common-blue-2); }

/* =========================================================
   Adições: botão outline, ícones dos cartões, empresa,
   secção de contactos e links do rodapé
   ========================================================= */

/* Realce teal em títulos */
.dc-accent { color: var(--tp-common-blue-2); }

/* Botão outline (usado em "Falar connosco") */
.dc-btn-outline {
   background: transparent;
   color: #fff;
   border-color: rgba(255, 255, 255, 0.20);
}
.dc-btn-outline:hover {
   border-color: var(--tp-common-blue-2);
   color: var(--tp-common-blue-2);
}

/* Ícone dos cartões da empresa */
.dc-company-icon {
   width: 46px;
   height: 46px;
   border-radius: 12px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: var(--tp-common-blue-2);
   background: rgba(18, 163, 160, 0.10);
   border: 1px solid rgba(18, 163, 160, 0.22);
   margin-bottom: 18px;
}
.mb-24 { margin-bottom: 24px; }

/* ---- Secção de contactos ---- */
.dc-contact-box {
   background:
      radial-gradient(700px 340px at 12% 0%, rgba(18, 163, 160, 0.12) 0%, rgba(3, 3, 3, 0) 60%),
      #060706;
   border: 1px solid rgba(255, 255, 255, 0.07);
   border-radius: 26px;
   padding: 60px;
}
.dc-contact-lead {
   color: rgba(255, 255, 255, 0.74);
   font-size: 18px;
   line-height: 1.7;
   max-width: 480px;
}
.dc-contact-list { list-style: none; padding: 0; margin: 34px 0 0; }
.dc-contact-list li {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 14px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.dc-contact-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.dc-contact-ico {
   flex: 0 0 auto;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: var(--tp-common-blue-2);
   background: rgba(18, 163, 160, 0.10);
   border: 1px solid rgba(18, 163, 160, 0.22);
}
.dc-contact-txt { display: flex; flex-direction: column; }
.dc-contact-txt small {
   color: rgba(255, 255, 255, 0.45);
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   margin-bottom: 2px;
}
.dc-contact-txt a {
   color: #fff;
   font-size: 17px;
   font-weight: 500;
}
.dc-contact-txt a:hover { color: var(--tp-common-blue-2); }

/* Cartão institucional (lado direito) */
.dc-contact-card {
   background: #0a0a0a;
   border: 1px solid rgba(255, 255, 255, 0.07);
   border-radius: 20px;
   padding: 38px 36px;
}
.dc-contact-card h4 {
   color: #fff;
   font-family: "Inter", sans-serif;
   font-size: 24px;
   margin-bottom: 6px;
}
.dc-contact-card-sub { color: rgba(255, 255, 255, 0.6); font-size: 15px; margin-bottom: 24px; }
.dc-contact-legal { list-style: none; padding: 0; margin: 0 0 28px; }
.dc-contact-legal li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dc-contact-legal li small {
   color: rgba(255, 255, 255, 0.45);
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: 0.06em;
}
.dc-contact-legal li span { color: rgba(255, 255, 255, 0.9); font-size: 15px; }
.dc-contact-legal li span a { color: var(--tp-common-blue-2); }
.dc-btn.w-100 { width: 100%; }

/* ---- Links do rodapé ---- */
.dc-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.dc-footer-links li a { color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.dc-footer-links li a:hover { color: var(--tp-common-blue-2); }

@media (max-width: 767px) {
   .dc-contact-box { padding: 34px 22px; }
   .dc-contact-card { padding: 28px 24px; }
}

/* =========================================================
   v3 - imagem da plataforma no hero, modal de vídeo,
   selector de idioma, contactos no rodapé
   ========================================================= */

/* ---- Quebra de linha no H1 apenas em ecrãs muito largos ---- */
.dc-br-xl { display: none; }
@media (min-width: 1400px) {
   .dc-br-xl { display: block; }
}

/* ---- Marca registada em superscript ---- */
sup {
   font-size: 0.8em;
   line-height: 0;
   /*vertical-align: super;*/
   margin: 0;
   letter-spacing: 0;
   font-weight: 500;
}
/* O <sup> não pode virar item flex (senão o gap afasta-o do "s") */
.dc-emaps-mark {
   display: inline-block;
   white-space: nowrap;
}
.dc-emaps-mark img {
   vertical-align: -5px;
   margin-right: 1px;
}
.dc-emaps-mark > span { margin-right: 1px; }

/* ---- Imagem da plataforma sob o hero ---- */
.dc-hero-media { margin-top: 70px; }
.dc-hero-media-frame {
   position: relative;
   border-radius: 18px;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: #0a0f0f;
   box-shadow: 0 40px 120px -40px rgba(0, 141, 141, 0.55),
               0 2px 0 0 rgba(255, 255, 255, 0.05) inset;
   line-height: 0;
}
.dc-hero-media-frame img {
   width: 100%;
   height: auto;
   display: block;
}
.dc-hero-media-caption {
   text-align: center;
   margin: 18px 0 0;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.45);
}

/* Botão de vídeo ao centro da imagem */
.dc-video-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 84px;
   height: 84px;
   border-radius: 50%;
   border: none;
   padding: 0 0 0 5px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   color: #fff;
   background: var(--tp-common-blue);
   box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.6);
   transition: transform 0.3s ease, background 0.3s ease;
   z-index: 2;
}
.dc-video-btn:hover {
   background: var(--tp-common-blue-2);
   transform: translate(-50%, -50%) scale(1.07);
}
.dc-video-btn .dc-video-ring {
   position: absolute;
   inset: -10px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.35);
   animation: dc-pulse 2.6s ease-out infinite;
   pointer-events: none;
}
@keyframes dc-pulse {
   0%   { transform: scale(0.92); opacity: 0.9; }
   70%  { transform: scale(1.28); opacity: 0; }
   100% { transform: scale(1.28); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
   .dc-video-btn .dc-video-ring { animation: none; }
   .dc-video-btn:hover { transform: translate(-50%, -50%); }
}
@media (max-width: 767px) {
   .dc-hero-media { margin-top: 46px; }
   .dc-video-btn { width: 62px; height: 62px; }
   .dc-video-btn svg { width: 17px; height: 20px; }
}

/* ---- Modal de vídeo ---- */
.dc-video-modal {
   position: fixed;
   inset: 0;
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 24px;
}
.dc-video-modal[hidden] { display: none; }
.dc-video-modal-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.86);
   backdrop-filter: blur(6px);
   -webkit-backdrop-filter: blur(6px);
}
.dc-video-modal-inner {
   position: relative;
   width: min(1100px, 100%);
}
.dc-video-modal-frame {
   position: relative;
   width: 100%;
   aspect-ratio: 16 / 9;
   background: #000;
   border-radius: 14px;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.12);
}
.dc-video-modal-frame iframe {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   border: 0;
}
.dc-video-modal-close {
   position: absolute;
   top: -46px;
   right: 0;
   background: none;
   border: none;
   color: rgba(255, 255, 255, 0.75);
   cursor: pointer;
   padding: 6px;
   line-height: 0;
}
.dc-video-modal-close:hover { color: #fff; }

/* ---- Selector de idioma ---- */
.dc-lang-switch {
   display: flex;
   align-items: center;
   gap: 2px;
   margin-right: 18px;
}
.dc-lang-item {
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 0.04em;
   color: rgba(255, 255, 255, 0.5);
   padding: 6px 9px;
   border-radius: 20px;
   line-height: 1;
   transition: color 0.25s ease, background 0.25s ease;
}
.dc-lang-item:hover { color: #fff; }
.dc-lang-item.is-active {
   color: #fff;
   background: rgba(255, 255, 255, 0.10);
}
.dc-offcanvas-lang {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 0 0 26px;
}
.dc-offcanvas-lang .dc-lang-label {
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: rgba(255, 255, 255, 0.45);
}
.dc-offcanvas-lang .dc-lang-switch { margin-right: 0; }

/* ---- Contactos no rodapé ---- */
.dc-footer-contact-title {
   color: #fff;
   font-size: 20px;
   margin-bottom: 20px;
}
.dc-footer-address {
   font-style: normal;
   color: rgba(255, 255, 255, 0.66);
   font-size: 15.5px;
   line-height: 1.75;
   margin-bottom: 18px;
}
.dc-footer-address .dc-footer-company {
   display: block;
   color: #fff;
   font-weight: 600;
   margin-bottom: 6px;
}
.dc-footer-mail {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: #fff;
   font-size: 16px;
   font-weight: 500;
}
.dc-footer-mail svg { color: var(--tp-common-blue-2); flex: 0 0 auto; }
.dc-footer-mail:hover { color: var(--tp-common-blue-2); }

/* =========================================================
   v4 - fundo com degradé, ordem das secções, FAQ centrada,
   alinhamento das caixas da empresa e redes sociais
   ========================================================= */

/* ---- Fundo geral: degradé verde-escuro -> preto ----
   O body passa a ter o degradé (as secções são transparentes) e o hero
   deixa de ter cor sólida, senão tapava-o. */
.digi-dark body,
body {
   background-color: #04100f;
   background-image:
      radial-gradient(1200px 760px at 50% 0%, rgba(0, 141, 141, 0.26) 0%, rgba(4, 16, 15, 0) 60%),
      radial-gradient(900px 620px at 92% 22%, rgba(22, 189, 184, 0.10) 0%, rgba(4, 16, 15, 0) 55%),
      linear-gradient(180deg, #07201d 0%, #061a18 26%, #041210 62%, #030a09 100%);
   background-attachment: fixed;
   background-repeat: no-repeat;
   background-size: cover;
}

/* Hero sem fundo sólido (deixa passar o degradé do body) */
.dc-hero {
   background:
      radial-gradient(1100px 520px at 50% -8%, var(--dc-teal-glow) 0%, rgba(3, 3, 3, 0) 62%),
      radial-gradient(900px 500px at 88% 12%, rgba(22, 189, 184, 0.12) 0%, rgba(3, 3, 3, 0) 55%);
}

/* Linhas divisórias um pouco mais visíveis sobre o novo fundo */
.dc-section-line { border-top-color: rgba(255, 255, 255, 0.08); }

/* Cartões ligeiramente translúcidos para o degradé "respirar" */
.dc-card,
.dc-company-card {
   background: rgba(8, 20, 19, 0.72);
   -webkit-backdrop-filter: blur(4px);
   backdrop-filter: blur(4px);
}

/* ---- EMPRESA: caixas alinhadas pela base do texto (só desktop) ---- */
@media (min-width: 1200px) {
   .dc-company-grid { margin-top: 120px; }
}

/* ---- FAQ centrada ---- */
.al-faq-title-box.text-center .al-section-subtitle { margin-inline: auto; }
#faq .al-faq-wrapper { text-align: left; }

/* ---- Redes sociais no rodapé ---- */
.dc-social {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}
.dc-social li a {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.72);
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(255, 255, 255, 0.10);
   transition: all 0.3s ease;
}
.dc-social li a:hover {
   color: #fff;
   background: var(--tp-common-blue);
   border-color: var(--tp-common-blue);
   transform: translateY(-3px);
}

/* Redes sociais dentro do offcanvas (menu mobile).*/
.tp-offcanvas-contact .dc-social { margin-top: 16px; }
.tp-offcanvas-contact .dc-social li:not(:last-child) { margin-bottom: 0; }
.tp-offcanvas-contact .dc-social li a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 42px;
   height: 42px;
   padding: 0;
   font-size: 0;
   line-height: 0;
   color: rgba(255, 255, 255, 0.72);
}
.tp-offcanvas-contact .dc-social li a::after { display: none; }
.tp-offcanvas-contact .dc-social li a:hover { color: #fff; }
.dc-social li a svg { display: block; }