/* ==========================================================
   GLOBAL CSS SCOPE
   Only base reset, header, footer, floating actions, and the
   h1-h6/paragraph typography controller live here.
   Page sections must be controlled from assets/css/pages/*.css.
   ========================================================== */

:root {
  --dt-font: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --dt-ink: #07152f;
  --dt-text: #1b2234;
  --dt-muted: #707789;
  --dt-violet: #6b22f2;
  --dt-pink: #ef63a8;
  --dt-orange: #ff8a18;
  --dt-blue: #0b60d0;
  --dt-footer-bg: #08031d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--dt-text);
  font-family: var(--dt-font);
}

button,
input,
select,
textarea {
  font-family: var(--dt-font);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Default typography fallback from config/site.php. Page CSS may override these variables. */
body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h1):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h1):not([data-type-exempt] h1) {
  font-size: var(--dt-h1-size);
  line-height: var(--dt-line-height-heading);
  font-weight: var(--dt-h1-weight);
  letter-spacing: -0.04em;
}

body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h2):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h2):not([data-type-exempt] h2) {
  font-size: var(--dt-h2-size);
  line-height: var(--dt-line-height-heading);
  font-weight: var(--dt-h2-weight);
  letter-spacing: -0.035em;
}

body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h3):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h3):not([data-type-exempt] h3) {
  font-size: var(--dt-h3-size);
  line-height: 1.12;
  font-weight: var(--dt-h3-weight);
  letter-spacing: -0.025em;
}

body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h4):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h4):not([data-type-exempt] h4) {
  font-size: var(--dt-h4-size);
  line-height: 1.18;
  font-weight: var(--dt-h4-weight);
}

body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h5):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h5):not([data-type-exempt] h5) {
  font-size: var(--dt-h5-size);
  line-height: 1.22;
  font-weight: var(--dt-h5-weight);
}

body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h6):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h6):not([data-type-exempt] h6) {
  font-size: var(--dt-h6-size);
  line-height: 1.24;
  font-weight: var(--dt-h6-weight);
}

body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(p):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt p):not([data-type-exempt] p) {
  font-size: var(--dt-p-size);
  line-height: var(--dt-line-height-body);
  font-weight: var(--dt-p-weight);
}

@media (max-width: 768px) {
  body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h1):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h1):not([data-type-exempt] h1) {
    font-size: var(--dt-mobile-h1-size);
  }

  body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h2):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h2):not([data-type-exempt] h2) {
    font-size: var(--dt-mobile-h2-size);
  }

  body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(h3):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt h3):not([data-type-exempt] h3) {
    font-size: var(--dt-mobile-h3-size);
  }

  body.dt-page:not(.dt-typography-exempt) :where(main, .footer) :where(p):not(.dt-type-exempt):not([data-type-exempt]):not(.dt-type-exempt p):not([data-type-exempt] p) {
    font-size: var(--dt-mobile-p-size);
  }
}

/* ==========================================================
   FINAL HEADER NAMESPACE LOCK v3
   Header is now isolated with dtx-* classes so page CSS cannot
   leak into the shared navigation/logo again.
   ========================================================== */
:root{
  --dtx-header-desktop: 88px;
  --dtx-header-mobile: 66px;
}

.dtx-site-header,
.dtx-site-header *,
.dtx-site-header *::before,
.dtx-site-header *::after{
  box-sizing:border-box !important;
}

.dtx-site-header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:100000 !important;
  pointer-events:none !important;
  transform:none !important;
  margin:0 !important;
  padding:0 !important;
  font-family:var(--dt-font, Arial, Helvetica, sans-serif) !important;
}

.dtx-header-bar{
  pointer-events:auto !important;
  width:100% !important;
  min-height:var(--dtx-header-desktop) !important;
  margin:0 auto !important;
  padding:14px max(24px, calc((100vw - 1240px) / 2 + 24px)) !important;
  position:relative !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
  border-radius:0 0 24px 24px !important;
  background:linear-gradient(90deg, #6627dc 0%, #7a3ef0 100%) !important;
  box-shadow:0 16px 42px rgba(24,10,70,.26) !important;
  transform:translate3d(0,0,0) !important;
  transition:
    width .34s cubic-bezier(.22,.8,.22,1),
    min-height .34s cubic-bezier(.22,.8,.22,1),
    padding .34s cubic-bezier(.22,.8,.22,1),
    border-radius .34s cubic-bezier(.22,.8,.22,1),
    transform .34s cubic-bezier(.22,.8,.22,1),
    box-shadow .34s cubic-bezier(.22,.8,.22,1) !important;
  will-change:width, transform, border-radius, min-height !important;
}

.dtx-site-header.is-scrolled .dtx-header-bar{
  width:min(1240px, calc(100% - 40px)) !important;
  min-height:76px !important;
  padding:12px 24px !important;
  border-radius:24px !important;
  transform:translate3d(0,14px,0) !important;
  box-shadow:0 20px 52px rgba(24,10,70,.34) !important;
}

.dtx-brand{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  flex:0 0 auto !important;
  min-width:0 !important;
  margin:0 !important;
  padding:0 !important;
  gap:0 !important;
  text-decoration:none !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.dtx-brand-img{
  display:block !important;
  width:clamp(178px, 14vw, 252px) !important;
  height:auto !important;
  max-width:100% !important;
  max-height:62px !important;
  object-fit:contain !important;
  object-position:left center !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  filter:none !important;
}

.dtx-nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:1 1 auto !important;
  gap:8px !important;
  min-width:0 !important;
  margin:0 28px !important;
  padding:0 !important;
  position:static !important;
  visibility:visible !important;
  opacity:1 !important;
  pointer-events:auto !important;
  transform:none !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.dtx-nav a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:42px !important;
  padding:0 16px !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:16px !important;
  line-height:1 !important;
  font-weight:700 !important;
  white-space:nowrap !important;
  border-radius:999px !important;
  background:transparent !important;
  border:0 !important;
  transition:background .22s ease, transform .22s ease !important;
}

.dtx-nav a:hover,
.dtx-nav a:focus-visible{
  background:rgba(255,255,255,.15) !important;
}

.dtx-cta{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 auto !important;
  min-height:56px !important;
  padding:0 28px !important;
  border-radius:999px !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:16px !important;
  line-height:1 !important;
  font-weight:700 !important;
  white-space:nowrap !important;
  background:linear-gradient(135deg,#1c8ff0,#0a5fc4) !important;
  border:0 !important;
  box-shadow:none !important;
  transition:transform .22s ease, box-shadow .22s ease !important;
}

.dtx-cta:hover,
.dtx-cta:focus-visible{
  transform:translateY(-2px) !important;
  box-shadow:0 14px 28px rgba(0,0,0,.18) !important;
}

.dtx-menu-btn{
  display:none !important;
  flex:0 0 44px !important;
  width:44px !important;
  height:44px !important;
  position:relative !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:14px !important;
  background:#fff !important;
  color:#6627dc !important;
  cursor:pointer !important;
  box-shadow:0 10px 22px rgba(7,4,27,.12) !important;
}

.dtx-menu-btn span{
  position:absolute !important;
  left:11px !important;
  width:22px !important;
  height:2.5px !important;
  border-radius:999px !important;
  background:#6627dc !important;
  transition:top .28s ease, transform .28s ease, opacity .18s ease !important;
}

.dtx-menu-btn span:nth-child(1){ top:13px !important; }
.dtx-menu-btn span:nth-child(2){ top:21px !important; }
.dtx-menu-btn span:nth-child(3){ top:29px !important; }

.dtx-menu-btn.is-open span:nth-child(1){ top:21px !important; transform:rotate(45deg) !important; }
.dtx-menu-btn.is-open span:nth-child(2){ opacity:0 !important; transform:translateX(8px) !important; }
.dtx-menu-btn.is-open span:nth-child(3){ top:21px !important; transform:rotate(-45deg) !important; }

.dtx-site-header + main > section:first-child{
  padding-top:var(--page-first-section-padding-top, clamp(146px, 10vw, 184px)) !important;
  scroll-margin-top:110px !important;
}

main section{
  scroll-margin-top:118px !important;
}

@media (max-width:1180px){
  .dtx-nav{ margin:0 14px !important; gap:4px !important; }
  .dtx-nav a{ padding:0 11px !important; font-size:14px !important; }
  .dtx-cta{ min-height:52px !important; padding:0 22px !important; font-size:15px !important; }
  .dtx-brand-img{ width:clamp(168px, 17vw, 224px) !important; }
}

@media (max-width:900px){
  .dtx-site-header{
    left:0 !important;
    right:0 !important;
    width:100% !important;
  }

  .dtx-header-bar,
  .dtx-site-header.is-scrolled .dtx-header-bar{
    width:100% !important;
    min-height:var(--dtx-header-mobile) !important;
    padding:10px 14px !important;
    border-radius:0 0 18px 18px !important;
    transform:none !important;
    box-shadow:0 14px 34px rgba(24,10,70,.26) !important;
  }

  .dtx-brand-img{
    width:clamp(134px, 43vw, 178px) !important;
    max-height:48px !important;
  }

  .dtx-cta{ display:none !important; }

  .dtx-menu-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .dtx-nav{
    position:absolute !important;
    top:calc(100% + 10px) !important;
    left:14px !important;
    right:14px !important;
    width:auto !important;
    max-height:calc(100vh - 92px) !important;
    margin:0 !important;
    padding:10px !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:8px !important;
    overflow-y:auto !important;
    border-radius:18px !important;
    background:linear-gradient(135deg, #5f20df 0%, #7a3ef0 52%, #17105e 100%) !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:0 22px 52px rgba(7,4,27,.34) !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:translate3d(0,-10px,0) scale(.985) !important;
    transition:opacity .24s ease, visibility .24s ease, transform .24s ease !important;
    z-index:100001 !important;
  }

  .dtx-nav.is-open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:translate3d(0,0,0) scale(1) !important;
  }

  .dtx-nav a{
    width:100% !important;
    min-height:44px !important;
    padding:0 14px !important;
    border-radius:12px !important;
    font-size:14px !important;
    background:rgba(255,255,255,.14) !important;
    border:1px solid rgba(255,255,255,.12) !important;
  }

  .dtx-nav a:hover,
  .dtx-nav a:focus-visible{
    background:rgba(255,255,255,.23) !important;
  }

  .dtx-site-header + main > section:first-child{
    padding-top:var(--page-mobile-first-section-padding-top, 96px) !important;
  }

  main section{
    scroll-margin-top:84px !important;
  }
}

@media (max-width:520px){
  .dtx-header-bar,
  .dtx-site-header.is-scrolled .dtx-header-bar{
    min-height:62px !important;
    padding:8px 12px !important;
    border-radius:0 0 16px 16px !important;
  }

  .dtx-brand-img{
    width:clamp(128px, 46vw, 158px) !important;
    max-height:44px !important;
  }

  .dtx-menu-btn{
    flex-basis:40px !important;
    width:40px !important;
    height:40px !important;
    border-radius:12px !important;
  }

  .dtx-menu-btn span{
    left:10px !important;
    width:20px !important;
  }

  .dtx-menu-btn span:nth-child(1){ top:12px !important; }
  .dtx-menu-btn span:nth-child(2){ top:20px !important; }
  .dtx-menu-btn span:nth-child(3){ top:28px !important; }
  .dtx-menu-btn.is-open span:nth-child(1),
  .dtx-menu-btn.is-open span:nth-child(3){ top:20px !important; }

  .dtx-nav{
    left:10px !important;
    right:10px !important;
    top:calc(100% + 8px) !important;
    border-radius:16px !important;
  }

  .dtx-site-header + main > section:first-child{
    padding-top:var(--page-small-first-section-padding-top, 86px) !important;
  }
}

/* ===========================
   FOOTER
=========================== */

.footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,.14), transparent 20%),
    linear-gradient(180deg, #070324 0%, #08031d 100%);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(520px, 1fr);
  gap: clamp(54px, 7vw, 130px);
  width: min(1760px, calc(100% - 120px));
  min-height: 560px;
  margin: 0 auto;
  padding: 86px 0 78px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 42px;
}

.footer-logo {
  margin-bottom: 44px;
}

.footer .footer-logo .dt-mark {
  width: min(385px, 100%) !important;
  max-height: none !important;
}

.footer-brand p {
  max-width: 540px;
  margin: 0 0 38px;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
  font-weight: 400;
}

.footer-content {
  min-width: 0;
  padding-top: 6px;
}

.footer-collab {
  display: block;
  width: min(690px, 100%);
  height: auto;
  margin: 0 0 44px;
}

.footer-collab-text {
  margin: 0 0 46px;
  color: #fff;
  font-size: clamp(76px, 7.2vw, 142px) !important;
  line-height: .86 !important;
  font-weight: 400 !important;
  letter-spacing: -0.055em !important;
}

.footer-collab-text em {
  font-style: italic;
  font-weight: 500 !important;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: .88fr 1fr 1.05fr;
  gap: clamp(54px, 5vw, 104px);
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(21px, 1.35vw, 28px) !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
}

.footer-col a {
  width: fit-content;
  margin: 0 0 20px;
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 1.15vw, 23px);
  line-height: 1.25;
  font-weight: 500;
  transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover {
  color: #ffcc27;
  transform: translateX(3px);
}

.footer-decor {
  position: absolute;
  left: 28px;
  bottom: 22px;
  width: min(650px, 38vw);
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -22px;
  width: min(620px, 34vw);
  height: 220px;
  opacity: .12;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 74%, transparent);
}

.footer-bottom {
  position: absolute;
  right: 56px;
  bottom: 54px;
  left: clamp(660px, 50vw, 940px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, .95vw, 19px);
  line-height: 1.35;
  font-weight: 400;
}

.footer .socials {
  display: flex;
  gap: 18px;
  margin: 0;
}

.footer .socials a {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8c55ff 0%, #7a4df4 48%, #ff7c33 100%);
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
  transition: transform .2s ease;
}

.footer .socials a:hover {
  transform: translateY(-3px);
}

.whatsapp-float,
.float-whatsapp,
.floating-whatsapp,
.whatsapp-widget,
.wa-float,
.wa-widget,
.joinchat,
.qlwapp,
#qlwapp,
.wsp-chat,
.floating-chat,
.chat-widget,
.sticky-chat,
.sticky-whatsapp,
.wa__btn_popup {
  display: none !important;
}

.dt-floating-actions {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 998;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}

.dt-float-btn {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 23px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 18px 44px rgba(7, 4, 27, .26);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, visibility .22s ease;
}

.dt-float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(7, 4, 27, .32);
}

.dt-float-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .86);
  outline-offset: 4px;
}

.dt-float-top {
  background: linear-gradient(135deg, #6b22f2, #ef63a8, #ff8a18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.92);
}

.dt-float-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dt-float-top.is-visible:hover {
  transform: translateY(-4px) scale(1);
}

.dt-float-wa {
  background: linear-gradient(135deg, #23d366, #0fb85b);
}

@media (max-width: 1180px) and (min-width: 821px) {
  .footer-inner {
    width: min(1120px, calc(100% - 64px));
    grid-template-columns: minmax(280px, 430px) minmax(430px, 1fr);
    gap: 56px;
  }

  .footer .footer-logo .dt-mark {
    width: min(300px, 100%) !important;
  }

  .footer-brand p {
    font-size: 18px;
  }

  .footer-links-grid {
    gap: 36px;
  }

  .footer-bottom {
    right: 32px;
    left: 480px;
  }

  .footer-decor {
    width: 420px;
  }
}

@media (max-width: 820px) {
  .dt-floating-actions {
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .dt-float-btn {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }
}

/* ===========================
   MOBILE FOOTER
=========================== */

@media (max-width:820px){

.footer{
    overflow:hidden;
    text-align:center;
}

.footer-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:calc(100% - 34px);
    max-width:560px;
    min-height:auto;
    margin:auto;
    padding:60px 0 110px;
    text-align:center;
}

.footer-brand{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:0;
    margin-bottom:48px;
    text-align:center;
}

.footer-logo{
    margin:0 auto 26px;
}

.footer .footer-logo .dt-mark{
    width:min(210px,70vw)!important;
}

.footer-brand p{
    max-width:420px;
    margin:0 auto;
    font-size:19px;
    line-height:1.45;
    text-align:center;
}

.footer-content{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-collab{
    width:min(320px,82%);
    margin:0 auto 22px;
}

.footer-collab-text{
    margin:0 auto 42px;
    font-size:clamp(42px,15vw,68px)!important;
    line-height:.95!important;
    text-align:center;
}

.footer-links-grid{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
}

.footer-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 0 28px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-col:last-child{
    border-bottom:none;
}

.footer-col h3{
    margin:0 0 18px;
    font-size:22px!important;
    text-align:center;
}

.footer-col a{
    display:block;
    margin:0 0 14px;
    font-size:18px;
    line-height:1.35;
    text-align:center;
}

.footer-col a:hover{
    transform:none;
}

.footer-bottom{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:38px;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.12);

    display:flex;
    flex-direction:column-reverse;
    align-items:center;
    justify-content:center;
    gap:20px;

    text-align:center;
}

.footer-bottom p{
    margin:0;
    text-align:center;
    font-size:15px;
    line-height:1.5;
}

.footer .socials{
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.footer .socials a{
    width:46px;
    height:46px;
    font-size:18px;
}

.footer-decor{
    left:50%;
    transform:translateX(-50%);
    width:220px;
    opacity:.15;
}

.footer::after{
    display:none;
}

}

@media (max-width:520px){

.footer-inner{
    width:calc(100% - 24px);
    padding:50px 0 95px;
}

.footer .footer-logo .dt-mark{
    width:min(180px,72vw)!important;
}

.footer-brand{
    margin-bottom:40px;
}

.footer-brand p{
    font-size:17px;
}

.footer-collab{
    width:min(250px,82%);
}

.footer-collab-text{
    font-size:clamp(36px,16vw,56px)!important;
    margin-bottom:34px;
}

.footer-links-grid{
    gap:24px;
}

.footer-col{
    padding-bottom:24px;
}

.footer-col h3{
    font-size:19px!important;
    margin-bottom:14px;
}

.footer-col a{
    font-size:16px;
    margin-bottom:12px;
}

.footer-bottom{
    margin-top:30px;
    padding-top:22px;
}

.footer-bottom p{
    font-size:13px;
}

.footer .socials a{
    width:42px;
    height:42px;
    font-size:16px;
}

.footer-decor{
    width:180px;
}

}

@media (max-width: 520px) {
  .dt-floating-actions {
    left: 12px;
    right: 12px;
  }

  .dt-float-btn {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
}