:root {
    /* MAPPING TOKENS (Bridge to new system) */
    --primary-color: var(--color-primary);
    --bg-color: var(--color-bg);
    --secondary-color: var(--color-bg-secondary);
    --card-bg: var(--color-card);
    --text-color: var(--color-text);
    --accent-color: var(--color-white);

    --header-bg: rgba(10, 10, 10, 0.9);
    --transition: var(--motion-fast);
}

[data-theme="light"] {
    /* Explicitly map tokens for light mode to ensure legacy variables update */
    --primary-color: var(--color-primary);
    --bg-color: var(--color-bg);
    --secondary-color: var(--color-bg-secondary);
    --card-bg: var(--color-card);
    --text-color: var(--color-text);
    --accent-color: var(--color-white);

    /* Only explicit overrides needed here if any */
    --header-bg: rgba(255, 255, 255, 0.9);
    --accent-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease
}

h1 {
    font-size: 2rem
}

.logo img,
.footer-logo img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
    display: none !important
}

@media(min-width:769px) {

    [data-theme="dark"] .logo-dark.desktop-only,
    [data-theme="dark"] .footer-logo .logo-dark {
        display: block !important
    }

    [data-theme="light"] .logo-light.desktop-only,
    [data-theme="light"] .footer-logo .logo-light {
        display: block !important
    }
}

@media(max-width:768px) {

    [data-theme="dark"] .logo-dark.mobile-only,
    [data-theme="dark"] .footer-logo .logo-dark {
        display: block !important
    }

    [data-theme="light"] .logo-light.mobile-only,
    [data-theme="light"] .footer-logo .logo-light {
        display: block !important
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--header-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease
}

[data-theme="light"] header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

#theme-toggle img {
    display: none !important
}

[data-theme="dark"] #theme-toggle .theme-icon-light,
[data-theme="light"] #theme-toggle .theme-icon-dark {
    display: block !important
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 2rem
}

.logo {
    margin-right: 1rem
}

.logo a {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    /* Remove default spacing below images */
}

.controls-premium {
    display: flex;
    align-items: center;
    gap: 1rem
}

.cta-button-premium {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap
}

.cta-button-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3)
}

.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatBounce 2.5s ease-in-out infinite;
    transition: var(--transition)
}

.whatsapp-float-btn img {
    width: 35px;
    height: 35px
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1001
}

#theme-toggle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: none !important
}

[data-theme="dark"] #theme-toggle .theme-icon-light {
    display: block !important
}

[data-theme="light"] #theme-toggle .theme-icon-dark {
    display: block !important
}

#theme-toggle:hover {
    transform: scale(1.1)
}

@media(max-width:480px) {
    nav {
        padding: 0.6rem 1rem
    }

    .cta-button-premium {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem
    }

    .logo img {
        height: 35px
    }

    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px
    }

    .whatsapp-float-btn img {
        width: 28px;
        height: 28px
    }
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000
}

.slides-container {
    height: 100%;
    width: 100%
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    padding: 0 2rem
}

.slide.active {
    opacity: 1
}

.hero-content {
    max-width: 900px;
    transform: translateY(20px);
    transition: transform 1.5s ease-out
}

.slide.active .hero-content {
    transform: translateY(0)
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px
}

.hero-content p {
    font-size: 1.4rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5)
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px
}

@media(max-width:768px) {
    .hero-content h1 {
        font-size: 2.2rem
    }

    .hero-content p {
        font-size: 1.1rem
    }
}

section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%
}

.about-premium {
    background-color: var(--bg-color);
    overflow: hidden
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between
}

.about-text {
    flex: 1;
    text-align: left
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%
}

.about-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.85
}

.branqs-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative
}

.branqs-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 8px rgba(230, 0, 0, 0.6)
}

.branqs-link:visited {
    color: #b30000
}

.about-image {
    flex: 1;
    position: relative
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4)
}

.about-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.5s ease
}

.image-wrapper:hover img {
    transform: scale(1.05)
}

.image-overlay-border {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3
}

/* =========================
   SCROLL REVEAL PREMIUM
   Bidirectional animation
========================= */

/* Estado inicial */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.service-card,
.benefit-item,
.review-card,
.info-item {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(10px);

  transition:
    opacity 0.7s cubic-bezier(0.22,1,0.36,1),
    transform 0.7s cubic-bezier(0.22,1,0.36,1),
    filter 0.7s cubic-bezier(0.22,1,0.36,1);
}

/* Ativo */
.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Saída para cima */
.reveal-exit-up {
  opacity: 0;
  transform: translateY(-40px) scale(0.96);
  filter: blur(10px);
}

/* Saída para baixo */
.reveal-exit-down {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(10px);
}


/* =========================
   STAGGER AUTOMÁTICO EM GRIDS
========================= */

.services-grid .service-card {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(12px);
}

.services-grid.reveal-active .service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Delay automático */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.10s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.20s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.30s; }
.service-card:nth-child(7) { transition-delay: 0.35s; }
.service-card:nth-child(8) { transition-delay: 0.40s; }
.service-card:nth-child(9) { transition-delay: 0.45s; }


/* =========================
   SCROLL TIMELINE PREMIUM
========================= */

@supports (animation-timeline: view()) {

  h2 {
    opacity: 0.3;
    transform: translateY(20px);
    animation: fadeUp linear forwards;
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}

.about-image img {
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}

.about-image.reveal-active img {
  transform: scale(1);
}


body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(230,0,0,0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(230,0,0,0.05), transparent 40%);
  z-index: -1;
  animation: ambientMove 20s linear infinite;
}

@keyframes ambientMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@supports (animation-timeline: view()) {

  h2 {
    animation: titleReveal linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
  }

  @keyframes titleReveal {
    from {
      opacity: 0.2;
      transform: translateY(30px);
      letter-spacing: 0.5px;
    }
    to {
      opacity: 1;
      transform: translateY(0);
      letter-spacing: 0;
    }
  }

}


@media(max-width:968px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center
    }

    .about-text {
        order: 1
    }

    .about-image {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto
    }

    .image-overlay-border {
        display: none
    }
}



.benefits-section {
    background-color: var(--bg-color)
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 4rem auto 0
}

.benefit-item {
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: var(--transition);
    color: var(--text-color)
}

[data-theme="light"] .benefit-item {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.1)
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8
}

@media(max-width:1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .benefits-grid {
        grid-template-columns: 1fr
    }
}

.services-premium,
.branqs-section,
.reviews-section,
.contact-premium {
    padding: 4rem 2rem
}

.services-premium,
.branqs-section,
.contact-premium {
    background-color: var(--secondary-color)
}

.branqs-section {
    border-radius: 0;
    margin-bottom: 0
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0
}

.review-card {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: var(--transition);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

[data-theme="light"] .review-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color)
}

.reviewer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2)
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9
}

.review-card h4 {
    margin-top: auto;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700
}

.review-dots {
    display: none
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem
}

.info-item {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.02)
}

[data-theme="light"] .info-item {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color)
}

.info-item .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.info-item p,
.info-item a {
    font-size: 1rem;
    opacity: 0.9;
    text-decoration: none;
    color: inherit;
    line-height: 1.6
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin-top: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    padding: 0.3rem 0;
    /* Touch target size */
}

.contact-row:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    /* Gentle feedback */
}

.contact-icon-small {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-map {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4)
}

.infinite-carousel-section,
.brands-section {
    padding: 0.8rem 0;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block
}

.carousel-container,
.brands-white-bar {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
    display: block
}

.carousel-track,
.brands-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 7rem;
    width: max-content;
    animation: scrollInfinite 70s linear infinite
}

.brands-section .brands-track {
    animation-duration: 45s;
    gap: 5rem
}

.carousel-track:hover,
.brands-track:hover {
    animation-play-state: paused
}

.item,
.brand-item {
    flex-shrink: 0
}

.item img,
.brand-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
    transition: var(--transition)
}

.brands-section .brand-item img {
    height: 60px
}

.item:hover img,
.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media(max-width:1024px) {
    .reviews-grid {
        display: block !important;
        position: relative;
        min-height: 350px;
        margin-top: 2rem
    }

    .review-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        display: none !important
    }

    .review-card.active {
        opacity: 1;
        display: flex !important
    }

    .review-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 3rem
    }

    .contact-info-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .hero-content h1 {
        font-size: 2.2rem
    }
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 0.8rem 1rem;
    justify-content: space-around;
    align-items: center
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    transition: all 0.3s ease;
    flex: 1
}

.nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    filter: grayscale(100%);
    transition: all 0.3s ease
}

.nav-label {
    font-size: 0.7rem;
    font-weight: 500
}

.nav-item.active {
    color: var(--primary-color)
}

.nav-item.active .nav-icon {
    filter: grayscale(0%);
    transform: scale(1.1)
}

@media(max-width:768px) {
    .bottom-nav {
        display: flex
    }

    body {
        padding-bottom: 70px
    }

    .whatsapp-float-btn {
        bottom: 85px
    }

    .cta-button-premium {
        display: none !important
    }

    .logo img {
        height: auto !important;
        width: auto !important
    }
}



/* --- Footer Refined --- */
.site-footer {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-color);
}

[data-theme="light"] .site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo {
    margin-bottom: 2rem;
}

.company-info {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.company-info li {
    font-size: 0.95rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.site-footer strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 1rem 7rem 1rem;
        /* Extra padding bottom for mobile nav */
    }

    .company-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* --- Bottom Navigation (Migrated from index.html) --- */
.bottom-nav {
    display: none;
    /* Default hidden */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    /* Use card-bg to match theme */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding: 0.8rem 1rem;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .bottom-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    flex: 1;
    opacity: 0.7;
}

.nav-item:hover {
    opacity: 1;
}

.nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 0.7rem;
    font-weight: 600;
}

/* Active State */
.nav-item.active {
    color: var(--primary-color);
    opacity: 1;
}

.nav-item.active .nav-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* --- MOBILE MAP OVERRIDES --- */
@media (max-width: 768px) {

    /* Show Bottom Nav */
    .bottom-nav {
        display: flex !important;
    }

    /* Hide Desktop Contact Button */
    .cta-button-premium {
        display: none !important;
    }

    /* Adjust Body Padding */
    body {
        padding-bottom: 80px !important;
    }

    /* Adjust WhatsApp Button */
    .whatsapp-float-btn {
        bottom: 90px !important;
    }

    /* Logo Sizing */
    .logo img {
        height: auto !important;
        width: 160px !important;
    }

    /* Center Logo on Mobile Header */
    nav {
        justify-content: center !important;
        position: relative;
    }

    .logo {
        margin-right: 0 !important;
    }

    .controls-premium {
        position: absolute !important;
        right: 1rem;
    }
}