body{
  margin-top: 0px !important;
}

.auth .my-nav .navbar-left-block li a:hover{
  color: #2abce8 !important;
}

.auth .my-nav .navbar-left-block .active a{
  color: #2abce8 !important;
}

.ser-desc-box-icon i{
  color: #2abce8 !important;
}

.goog-te-gadget-icon{
  display: none;
}

.goog-te-gadget-simple{
  border: none !important;
}

.skiptranslate iframe.skiptranslate {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

#goog-gt-tt{
display:none;
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
  visibility: hidden !important;
}

/* Remove a borda azul de traduÃ§Ã£o */
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Container das estrelas */
        .stars-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        /* Estrela individual */
        .star {
            position: absolute;
            color: #ffd700;
            font-size: 24px;
            animation: twinkle 2s ease-in-out infinite;
            text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
        }

        /* Estrela pequena */
        .star.small {
            font-size: 16px;
        }

        /* Estrela mÃ©dia */
        .star.medium {
            font-size: 24px;
        }

        /* Estrela grande */
        .star.large {
            font-size: 32px;
        }

        /* Cores diferentes para as estrelas */
        .star.gold {
            color: #ffd700;
        }

        .star.silver {
            color: #e8e8e8;
        }

        .star.white {
            color: #ffffff;
        }

        .star.champagne {
            color: #f4e4c1;
        }

        .star.blue {
            color: #87ceeb;
        }

        /* AnimaÃ§Ã£o de piscar */
        @keyframes twinkle {
            0%, 100% {
                opacity: 0.3;
                transform: scale(0.8) rotate(0deg);
            }
            50% {
                opacity: 1;
                transform: scale(1.2) rotate(180deg);
            }
        }

        /* AnimaÃ§Ã£o de pulsar (para algumas estrelas especiais) */
        @keyframes pulse {
            0%, 100% {
                opacity: 0.4;
                transform: scale(0.9);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        /* Estrelas que pulsam em vez de piscar */
        .star.pulse {
            animation: pulse 3s ease-in-out infinite;
        }

        /* Estrelas cadentes ocasionais */
        .shooting-star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 4px 2px #ffffff;
            animation: shoot 3s linear infinite;
            opacity: 0;
        }

        @keyframes shoot {
            0% {
                opacity: 0;
                transform: translate(0, 0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                opacity: 0;
                transform: translate(-200px, 200px);
            }
        }

        /* Brilho de fundo sutil */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.1;
            animation: float 10s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(30px, -30px);
            }
        }

        /* ConteÃºdo da pÃ¡gina */
        .content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 150px 20px 50px;
            color: white;
        }

        .content h1 {
            font-size: 4em;
            margin-bottom: 20px;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            animation: title-glow 2s ease-in-out infinite;
        }

        @keyframes title-glow {
            0%, 100% {
                text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            }
            50% {
                text-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
            }
        }

        .content p {
            font-size: 1.3em;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
            color: #e8e8e8;
        }

        /* NÃºmero do ano com estrelas */
        .year-stars {
            font-size: 6em;
            font-weight: bold;
            background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease infinite;
            margin: 30px 0;
        }

        @keyframes gradient-shift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .content h1 {
                font-size: 2.5em;
            }
            .year-stars {
                font-size: 4em;
            }
            .content p {
                font-size: 1.1em;
            }
        }

 /* Container do varal */
        .champagne-garland-container {
            position: fixed;
            top: 29px;
            left: 0;
            width: 100%;
            height: 150px;
            pointer-events: none;
            z-index: 999999;
            overflow: visible;
        }

        /* Fio do varal */
        .garland-wire {
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, 
                rgba(218, 165, 32, 0.6) 0%, 
                rgba(255, 215, 0, 0.8) 50%, 
                rgba(218, 165, 32, 0.6) 100%);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Item do varal (garrafa ou taÃ§a) */
        .garland-item {
            position: absolute;
            top: 20px;
            transform-origin: top center;
            animation: swing 3s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        /* Cordinha que prende o item */
        .item-string {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 25px;
            background: linear-gradient(180deg, rgba(218, 165, 32, 0.8) 0%, transparent 100%);
        }

        /* AnimaÃ§Ã£o de balanÃ§o */
        @keyframes swing {
            0%, 100% {
                transform: rotate(-5deg);
            }
            50% {
                transform: rotate(5deg);
            }
        }

        /* === GARRAFA DE CHAMPANHE === */
        .champagne-bottle {
            position: relative;
            width: 20px;
            height: 45px;
            margin-top: 25px;
        }

        /* Corpo da garrafa */
        .bottle-body {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 32px;
            background: linear-gradient(180deg, 
                #1a4d1a 0%, 
                #0d2f0d 50%, 
                #0a1f0a 100%);
            border-radius: 0 0 2px 2px;
            box-shadow: inset -1px 0 3px rgba(0, 0, 0, 0.4),
                        inset 1px 0 3px rgba(255, 255, 255, 0.1);
        }

        /* Gargalo da garrafa */
        .bottle-neck {
            position: absolute;
            bottom: 29px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 13px;
            background: linear-gradient(180deg, 
                #2d5a2d 0%, 
                #1a4d1a 100%);
            border-radius: 1px 1px 0 0;
        }

        /* Tampa/Rolha */
        .bottle-cap {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 9px;
            height: 5px;
            background: linear-gradient(180deg, #daa520 0%, #b8860b 100%);
            border-radius: 2px 2px 0 0;
            box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
        }

        /* Papel alumÃ­nio no gargalo */
        .bottle-foil {
            position: absolute;
            bottom: 39px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 4px;
            background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 100%);
            border-radius: 1px;
        }

        /* RÃ³tulo da garrafa */
        .bottle-label {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 13px;
            height: 12px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #daa520 100%);
            border-radius: 1px;
            border: 1px solid #b8860b;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
        }

        /* Brilho na garrafa */
        .bottle-shine {
            position: absolute;
            top: 3px;
            left: 2px;
            width: 3px;
            height: 16px;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.4) 0%, 
                transparent 100%);
            border-radius: 1px;
        }

        /* === TAÃ‡A DE CHAMPANHE === */
        .champagne-glass {
            position: relative;
            width: 23px;
            height: 50px;
            margin-top: 25px;
        }

        /* Copa da taÃ§a */
        .glass-bowl {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 30px;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.25) 50%,
                rgba(255, 255, 255, 0.2) 100%);
            border-radius: 0 0 50% 50% / 0 0 40% 40%;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            border-top: none;
            box-shadow: inset -1px 0 5px rgba(255, 255, 255, 0.3),
                        inset 1px 0 5px rgba(255, 255, 255, 0.2),
                        0 3px 6px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        /* Champanhe dentro da taÃ§a */
        .glass-liquid {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65%;
            background: linear-gradient(180deg, 
                rgba(255, 223, 127, 0.6) 0%,
                rgba(255, 215, 0, 0.5) 50%,
                rgba(218, 165, 32, 0.6) 100%);
            border-radius: 0 0 50% 50% / 0 0 40% 40%;
        }

        /* Bolhas no champanhe */
        .bubble {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: bubble-rise linear infinite;
        }

        @keyframes bubble-rise {
            0% {
                bottom: 0;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                bottom: 100%;
                opacity: 0;
            }
        }

        /* Haste da taÃ§a */
        .glass-stem {
            position: absolute;
            top: 29px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 13px;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.4) 0%,
                rgba(255, 255, 255, 0.3) 100%);
            border-radius: 1px;
        }

        /* Base da taÃ§a */
        .glass-base {
            position: absolute;
            top: 41px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 3px;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.35) 0%,
                rgba(255, 255, 255, 0.25) 100%);
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        /* Brilho na taÃ§a */
        .glass-shine {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 4px;
            height: 13px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.6) 0%,
                transparent 100%);
            border-radius: 2px 0 5px 0;
        }

        /* Delays diferentes para cada item */
        .garland-item:nth-child(2) { animation-delay: -0.5s; }
        .garland-item:nth-child(3) { animation-delay: -1s; }
        .garland-item:nth-child(4) { animation-delay: -1.5s; }
        .garland-item:nth-child(5) { animation-delay: -2s; }
        .garland-item:nth-child(6) { animation-delay: -2.5s; }
        .garland-item:nth-child(7) { animation-delay: -0.8s; }
        .garland-item:nth-child(8) { animation-delay: -1.3s; }
        .garland-item:nth-child(9) { animation-delay: -1.8s; }
        .garland-item:nth-child(10) { animation-delay: -2.3s; }

        /* DuraÃ§Ã£o diferente para variar */
        .garland-item:nth-child(even) { animation-duration: 3.5s; }
        .garland-item:nth-child(3n) { animation-duration: 4s; }

        /* === CONTEÃšDO DA PÃGINA === */
        .content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 200px 20px 50px;
            color: white;
        }

        .content h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .content p {
            font-size: 1.3em;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            color: #e8e8e8;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .content h1 {
                font-size: 2.5em;
            }
            
            .content p {
                font-size: 1.1em;
            }
        }

 @keyframes gradient-move {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Container de confetes */
        .confetti-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        /* Confete individual */
        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            animation: fall 5s linear infinite;
            opacity: 0.8;
        }

        /* Formas de confete */
        .confetti.circle {
            border-radius: 50%;
        }

        .confetti.square {
            border-radius: 2px;
        }

        .confetti.rectangle {
            width: 8px;
            height: 14px;
            border-radius: 2px;
        }

        .confetti.triangle {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 12px solid;
        }

        /* Cores vibrantes do carnaval */
        .confetti.color1 { background-color: #FF1493; }
        .confetti.color2 { background-color: #FFD700; }
        .confetti.color3 { background-color: #00CED1; }
        .confetti.color4 { background-color: #FF4500; }
        .confetti.color5 { background-color: #9370DB; }
        .confetti.color6 { background-color: #32CD32; }
        .confetti.color7 { background-color: #FF69B4; }
        .confetti.color8 { background-color: #FFA500; }

        /* AnimaÃ§Ã£o de queda dos confetes */
        @keyframes fall {
            0% {
                top: -10%;
                transform: translateX(0) rotate(0deg);
            }
            100% {
                top: 110%;
                transform: translateX(100px) rotate(720deg);
            }
        }

        /* Tamanhos diferentes */
        .confetti.small {
            width: 6px;
            height: 6px;
        }

        .confetti.medium {
            width: 10px;
            height: 10px;
        }

        .confetti.large {
            width: 14px;
            height: 14px;
        }

        /* Serpentinas */
        .serpentine {
            position: absolute;
            width: 8px;
            height: 60px;
            background: linear-gradient(180deg, 
                transparent 0%, 
                currentColor 10%, 
                currentColor 90%, 
                transparent 100%);
            border-radius: 4px;
            animation: serpentine-fall 6s ease-in-out infinite;
            opacity: 0.7;
            transform-origin: top center;
        }

        @keyframes serpentine-fall {
            0% {
                top: -10%;
                transform: translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                top: 110%;
                transform: translateX(-50px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Varal de mÃ¡scaras e instrumentos */
        .carnival-garland-container {
            position: fixed;
            top: 29px;
            left: 0;
            width: 100%;
            height: 150px;
            pointer-events: none;
            z-index: 999999;
            overflow: visible;
        }

        .garland-wire {
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, 
                rgba(255, 20, 147, 0.6) 0%, 
                rgba(255, 215, 0, 0.8) 25%,
                rgba(0, 206, 209, 0.8) 50%,
                rgba(255, 105, 180, 0.8) 75%,
                rgba(255, 20, 147, 0.6) 100%);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .garland-item {
            position: absolute;
            top: 20px;
            transform-origin: top center;
            animation: swing-carnival 3s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .item-string {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 25px;
            background: linear-gradient(180deg, rgba(255, 215, 0, 0.8) 0%, transparent 100%);
        }

        @keyframes swing-carnival {
            0%, 100% {
                transform: rotate(-8deg);
            }
            50% {
                transform: rotate(8deg);
            }
        }

        /* MÃSCARA */
        .carnival-mask {
            position: relative;
            width: 40px;
            height: 28px;
            margin-top: 25px;
        }

        .mask-base {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 38px;
            height: 22px;
            background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #FF1493 100%);
            border-radius: 20px 20px 10px 10px;
            border: 2px solid #FFD700;
            box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .mask-eye {
            position: absolute;
            top: 7px;
            width: 10px;
            height: 8px;
            background: #000;
            border-radius: 50%;
        }

        .mask-eye.left { left: 6px; }
        .mask-eye.right { right: 6px; }

        .mask-feather {
            position: absolute;
            top: -8px;
            width: 8px;
            height: 14px;
            background: linear-gradient(45deg, rgba(0, 206, 209, 0.8) 0%, rgba(147, 112, 219, 0.8) 100%);
            border-radius: 50% 50% 0 0;
            transform-origin: bottom center;
        }

        .mask-feather:nth-child(1) { left: 8px; transform: rotate(-15deg); }
        .mask-feather:nth-child(2) { left: 15px; transform: rotate(-5deg); height: 16px; }
        .mask-feather:nth-child(3) { right: 15px; transform: rotate(5deg); height: 16px; }
        .mask-feather:nth-child(4) { right: 8px; transform: rotate(15deg); }

        .mask-decoration {
            position: absolute;
            top: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: #FFD700;
            border-radius: 50%;
        }

        .mask-shine {
            position: absolute;
            top: 4px;
            left: 8px;
            width: 6px;
            height: 8px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
            border-radius: 50%;
        }

        /* PANDEIRO */
        .tambourine {
            position: relative;
            width: 35px;
            height: 35px;
            margin-top: 25px;
        }

        .tambourine-rim {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #8B4513 100%);
            border-radius: 50%;
            border: 2px solid #654321;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .tambourine-skin {
            position: absolute;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 26px;
            height: 26px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 220, 0.8) 50%, rgba(222, 184, 135, 0.7) 100%);
            border-radius: 50%;
        }

        .tambourine-jingle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #FFD700 0%, #DAA520 100%);
            border-radius: 50%;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .tambourine-jingle:nth-child(3) { top: 2px; left: 14px; }
        .tambourine-jingle:nth-child(4) { bottom: 2px; left: 14px; }
        .tambourine-jingle:nth-child(5) { left: 2px; top: 14px; }
        .tambourine-jingle:nth-child(6) { right: 2px; top: 14px; }

        .tambourine-pattern {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            border: 2px solid rgba(255, 20, 147, 0.4);
            border-radius: 50%;
        }

        /* NOTA MUSICAL */
        .music-note {
            position: relative;
            width: 25px;
            height: 40px;
            margin-top: 25px;
        }

        .note-head {
            position: absolute;
            bottom: 8px;
            left: 2px;
            width: 14px;
            height: 11px;
            background: linear-gradient(135deg, #9370DB 0%, #6A0DAD 100%);
            border-radius: 50%;
            transform: rotate(-20deg);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .note-stem {
            position: absolute;
            bottom: 13px;
            right: 5px;
            width: 3px;
            height: 25px;
            background: linear-gradient(180deg, #9370DB 0%, #6A0DAD 100%);
            border-radius: 2px;
        }

        .note-flag {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 10px;
            height: 12px;
            background: linear-gradient(135deg, #9370DB 0%, transparent 100%);
            border-radius: 0 8px 8px 0;
        }

        .note-shine {
            position: absolute;
            bottom: 12px;
            left: 5px;
            width: 5px;
            height: 4px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transform: rotate(-20deg);
        }

        /* MARACÃ */
        .maraca {
            position: relative;
            width: 28px;
            height: 45px;
            margin-top: 25px;
        }

        .maraca-head {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #FF4500 0%, #FF6347 50%, #FF4500 100%);
            border-radius: 50%;
            border: 2px solid #FFD700;
            box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .maraca-pattern {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FFD700;
            border-radius: 50%;
        }

        .maraca-pattern:nth-child(1) { top: 6px; left: 10px; }
        .maraca-pattern:nth-child(2) { top: 12px; left: 6px; }
        .maraca-pattern:nth-child(3) { top: 12px; right: 6px; }
        .maraca-pattern:nth-child(4) { bottom: 6px; left: 10px; }

        .maraca-handle {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 22px;
            background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
            border-radius: 0 0 4px 4px;
        }

        .maraca-neck {
            position: absolute;
            top: 22px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 4px;
            background: #654321;
            border-radius: 50%;
        }

        .garland-item:nth-child(2) { animation-delay: -0.5s; }
        .garland-item:nth-child(3) { animation-delay: -1s; }
        .garland-item:nth-child(4) { animation-delay: -1.5s; }
        .garland-item:nth-child(5) { animation-delay: -2s; }
        .garland-item:nth-child(6) { animation-delay: -2.5s; }
        .garland-item:nth-child(7) { animation-delay: -0.8s; }
        .garland-item:nth-child(8) { animation-delay: -1.3s; }
        .garland-item:nth-child(9) { animation-delay: -1.8s; }
        .garland-item:nth-child(10) { animation-delay: -2.3s; }
        .garland-item:nth-child(11) { animation-delay: -0.3s; }
        .garland-item:nth-child(12) { animation-delay: -1.8s; }

        .garland-item:nth-child(even) { animation-duration: 3.5s; }
        .garland-item:nth-child(3n) { animation-duration: 4s; }
        .garland-item:nth-child(5n) { animation-duration: 2.8s; }



/* ======================================================================/*
Ano NOVO
======================================================================== */
/* ========================
   CONTAINER DE FOGOS
======================== */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* PartÃ­cula de fogos */
.spark {
    position: absolute;
    border-radius: 50%;
    animation: spark-fly ease-out infinite;
    opacity: 0;
}

.spark.sz-tiny  { width: 3px;  height: 3px; }
.spark.sz-small { width: 5px;  height: 5px; }
.spark.sz-mid   { width: 7px;  height: 7px; }
.spark.sz-big   { width: 10px; height: 10px; }

.spark.clr-gold   { background: #ffd700; box-shadow: 0 0 6px 2px rgba(255, 215, 0, 0.8); }
.spark.clr-silver { background: #e8e8e8; box-shadow: 0 0 6px 2px rgba(232, 232, 232, 0.8); }
.spark.clr-red    { background: #ff4757; box-shadow: 0 0 6px 2px rgba(255, 71, 87, 0.8); }
.spark.clr-cyan   { background: #00d2d3; box-shadow: 0 0 6px 2px rgba(0, 210, 211, 0.8); }
.spark.clr-pink   { background: #ff6b81; box-shadow: 0 0 6px 2px rgba(255, 107, 129, 0.8); }
.spark.clr-white  { background: #ffffff; box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.9); }
.spark.clr-purple { background: #a29bfe; box-shadow: 0 0 6px 2px rgba(162, 155, 254, 0.8); }

@keyframes spark-fly {
    0%   { opacity: 0; transform: translate(0, 0) scale(1); }
    15%  { opacity: 1; }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.2); }
}

/* Trilha de foguete */
.rocket-trail {
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.9) 0%, transparent 100%);
    border-radius: 2px;
    animation: rocket-rise linear forwards;
    opacity: 0;
    transform-origin: bottom center;
}

@keyframes rocket-rise {
    0%   { opacity: 0; transform: scaleY(0); }
    10%  { opacity: 1; transform: scaleY(1); }
    90%  { opacity: 0.7; }
    100% { opacity: 0; }
}

/* Brilho de fundo */
.ny-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.07;
    animation: ny-orb-drift ease-in-out infinite;
}

@keyframes ny-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(35px, -25px) scale(1.12); }
}

/* ========================
   VARAL DE CHAMPANHE
======================== */
.nye-champagne-container {
    position: fixed;
    top: 29px;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 999999;
    overflow: visible;
}

/* Fio do varal */
.champagne-wire {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(218, 165, 32, 0.5) 0%,
        rgba(255, 215, 0, 0.85) 50%,
        rgba(218, 165, 32, 0.5) 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

/* Item do varal */
.nye-item {
    position: absolute;
    top: 20px;
    transform-origin: top center;
    animation: nye-swing 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nye-cord {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.8) 0%, transparent 100%);
}

@keyframes nye-swing {
    0%, 100% { transform: rotate(-5deg); }
    50%       { transform: rotate(5deg); }
}

/* === GARRAFA DE CHAMPANHE === */
.nye-bottle {
    position: relative;
    width: 20px;
    height: 48px;
    margin-top: 25px;
}

.nye-bottle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 32px;
    background: linear-gradient(180deg, #1a4d1a 0%, #0d2f0d 50%, #0a1f0a 100%);
    border-radius: 0 0 2px 2px;
    box-shadow: inset -1px 0 3px rgba(0,0,0,0.4), inset 1px 0 3px rgba(255,255,255,0.1);
}

.nye-bottle-neck {
    position: absolute;
    bottom: 29px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 14px;
    background: linear-gradient(180deg, #2d5a2d 0%, #1a4d1a 100%);
    border-radius: 1px 1px 0 0;
}

.nye-bottle-foil {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 5px;
    background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 100%);
    border-radius: 1px;
}

.nye-bottle-cap {
    position: absolute;
    bottom: 43px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 6px;
    background: linear-gradient(180deg, #ffd700 0%, #daa520 100%);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.3);
}

.nye-bottle-label {
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #daa520 100%);
    border-radius: 1px;
    border: 1px solid #b8860b;
}

.nye-bottle-shine {
    position: absolute;
    top: 3px;
    left: 2px;
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    border-radius: 1px;
}

/* === TAÃ‡A DE CHAMPANHE === */
.nye-glass {
    position: relative;
    width: 24px;
    height: 52px;
    margin-top: 25px;
}

.nye-glass-bowl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 30px;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.2) 100%);
    border-radius: 0 0 50% 50% / 0 0 40% 40%;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-top: none;
    overflow: hidden;
    box-shadow: inset -1px 0 5px rgba(255,255,255,0.3), inset 1px 0 5px rgba(255,255,255,0.2);
}

.nye-glass-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(180deg,
        rgba(255, 223, 127, 0.6) 0%,
        rgba(255, 215, 0, 0.5) 50%,
        rgba(218, 165, 32, 0.6) 100%);
    border-radius: 0 0 50% 50% / 0 0 40% 40%;
}

.nye-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: nye-bubble-rise linear infinite;
}

@keyframes nye-bubble-rise {
    0%   { bottom: 0;    opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { bottom: 100%; opacity: 0; }
}

.nye-glass-shine {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 13px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    border-radius: 2px 0 5px 0;
}

.nye-glass-stem {
    position: absolute;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 1px;
}

.nye-glass-base {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* === RELÃ“GIO === */
.nye-clock {
    position: relative;
    width: 32px;
    height: 32px;
    margin-top: 25px;
}

.nye-clock-face {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #2c3e50 0%, #1a252f 100%);
    border-radius: 50%;
    border: 2px solid #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4), inset 0 1px 3px rgba(0,0,0,0.5);
}

.nye-clock-hour {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(330deg);
    transform-origin: bottom center;
    width: 2px;
    height: 9px;
    background: #ffd700;
    border-radius: 2px;
}

.nye-clock-minute {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: bottom center;
    width: 1.5px;
    height: 11px;
    background: #ffffff;
    border-radius: 2px;
}

.nye-clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
}

/* === ESTRELA DE ANO NOVO === */
.nye-star {
    position: relative;
    width: 28px;
    height: 28px;
    margin-top: 25px;
    font-size: 26px;
    text-align: center;
    line-height: 28px;
    animation: nye-star-spin ease-in-out infinite;
}

@keyframes nye-star-spin {
    0%, 100% { transform: rotate(-10deg) scale(0.9); opacity: 0.8; }
    50%       { transform: rotate(10deg)  scale(1.1); opacity: 1; }
}

/* Delays diferentes para cada item */
.nye-item:nth-child(2)  { animation-delay: -0.5s; }
.nye-item:nth-child(3)  { animation-delay: -1.0s; }
.nye-item:nth-child(4)  { animation-delay: -1.5s; }
.nye-item:nth-child(5)  { animation-delay: -2.0s; }
.nye-item:nth-child(6)  { animation-delay: -2.5s; }
.nye-item:nth-child(7)  { animation-delay: -0.8s; }
.nye-item:nth-child(8)  { animation-delay: -1.3s; }
.nye-item:nth-child(9)  { animation-delay: -1.8s; }
.nye-item:nth-child(10) { animation-delay: -2.3s; }
.nye-item:nth-child(11) { animation-delay: -0.4s; }
.nye-item:nth-child(12) { animation-delay: -1.6s; }

.nye-item:nth-child(even) { animation-duration: 3.5s; }
.nye-item:nth-child(3n)   { animation-duration: 4.0s; }
.nye-item:nth-child(5n)   { animation-duration: 2.8s; }

/* ========================
   CONFETE DE ANO NOVO
======================== */
.nye-confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.nye-confetti {
    position: absolute;
    animation: nye-confetti-fall linear infinite;
    opacity: 0.85;
}

.nye-confetti.shape-circle    { border-radius: 50%; }
.nye-confetti.shape-square    { border-radius: 2px; }
.nye-confetti.shape-rectangle { border-radius: 2px; }
.nye-confetti.shape-strip     { border-radius: 3px; }

.nye-confetti.c-gold    { background: #ffd700; }
.nye-confetti.c-silver  { background: #c0c0c0; }
.nye-confetti.c-white   { background: #ffffff; }
.nye-confetti.c-red     { background: #ff4757; }
.nye-confetti.c-cyan    { background: #00d2d3; }
.nye-confetti.c-pink    { background: #ff6b81; }
.nye-confetti.c-purple  { background: #a29bfe; }
.nye-confetti.c-orange  { background: #ffa502; }

.nye-confetti.csz-small  { width: 6px;  height: 6px; }
.nye-confetti.csz-medium { width: 9px;  height: 9px; }
.nye-confetti.csz-large  { width: 13px; height: 13px; }

@keyframes nye-confetti-fall {
    0% {
        top: -8%;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    8%   { opacity: 0.85; }
    92%  { opacity: 0.5; }
    100% {
        top: 108%;
        transform: translateX(120px) rotate(800deg);
        opacity: 0;
    }
}

/* Serpentinas de ano novo */
.nye-streamer {
    position: absolute;
    width: 6px;
    height: 55px;
    background: linear-gradient(180deg,
        transparent 0%,
        currentColor 12%,
        currentColor 88%,
        transparent 100%);
    border-radius: 3px;
    animation: nye-streamer-fall ease-in-out infinite;
    opacity: 0.65;
    transform-origin: top center;
}

@keyframes nye-streamer-fall {
    0% {
        top: -8%;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10%  { opacity: 0.65; }
    90%  { opacity: 0.4; }
    100% {
        top: 108%;
        transform: translateX(-60px) rotate(400deg);
        opacity: 0;
    }
}

/* ========================
   RESPONSIVIDADE
======================== */
@media (max-width: 768px) {
    .nye-bottle { width: 14px; height: 36px; }
    .nye-glass  { width: 18px; height: 40px; }
    .nye-clock  { width: 24px; height: 24px; }
}

/* ==========================================================================
   Premium SaaS refresh
   Mantem a cor principal da marca e padroniza componentes do painel.
========================================================================== */
:root {
  --rd-primary: #2abce8;
  --rd-primary-600: #12a7d6;
  --rd-primary-700: #078db9;
  --rd-primary-soft: rgba(42, 188, 232, 0.12);
  --rd-ink: #111827;
  --rd-muted: #667085;
  --rd-border: #e5eaf0;
  --rd-border-strong: #d6dee8;
  --rd-surface: #ffffff;
  --rd-surface-soft: #f6f9fc;
  --rd-success: #10b981;
  --rd-warning: #f59e0b;
  --rd-danger: #ef4444;
  --rd-radius: 8px;
  --rd-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  --rd-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --rd-focus: 0 0 0 4px rgba(42, 188, 232, 0.18);
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(42, 188, 232, 0.1), transparent 28rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
  color: var(--rd-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.auth {
  padding-bottom: env(safe-area-inset-bottom);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rd-primary-700);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
  color: var(--rd-primary-600);
  text-decoration: none;
}

a:focus,
button:focus,
.btn:focus,
.form-control:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  outline: none !important;
  box-shadow: var(--rd-focus) !important;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 1240px;
}

.container-fluid {
  padding-left: 22px;
  padding-right: 22px;
}

.auth > .container,
.auth > .container-fluid,
.guest > .container,
.guest > .container-fluid,
.order-page > .container-fluid {
  padding-top: 22px;
  padding-bottom: 34px;
}

/* Navigation */
.navbar.navbar-default,
.navbar.navbar-inverse {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: 72px;
  margin: 0 !important;
  border: 0;
  border-bottom: 1px solid rgba(214, 222, 232, 0.85);
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.navbar .container,
.navbar .container-fluid {
  max-width: 1320px;
}

.navbar-brand {
  height: 72px;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--rd-ink) !important;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar-brand img {
  width: auto;
  max-width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.navbar-toggle {
  width: 44px;
  height: 44px;
  margin: 14px 0 14px 10px;
  border: 1px solid var(--rd-border) !important;
  border-radius: var(--rd-radius);
  background: var(--rd-surface) !important;
  color: var(--rd-ink);
}

.navbar-toggle .icon-bar {
  background: var(--rd-ink) !important;
}

.navbar .nav > li > a,
.navbar-header-left a {
  min-height: 42px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 15px 3px;
  padding: 10px 12px !important;
  border-radius: var(--rd-radius);
  color: #334155 !important;
  font-weight: 700;
}

.navbar .nav > li.active > a,
.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus,
.auth .my-nav .navbar-left-block .active a,
.auth .my-nav .navbar-left-block li a:hover {
  background: var(--rd-primary-soft) !important;
  color: var(--rd-primary-700) !important;
}

.navbar-icon {
  width: 18px;
  text-align: center;
}

.navbar-header-left-wrap,
.navbar-header-left {
  display: flex;
  align-items: center;
}

.navbar-header-left {
  gap: 6px;
  margin: 0;
}

.navbar-header-left > li {
  list-style: none;
}

.badge,
.dropdown-currencies .badge {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-700));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(42, 188, 232, 0.24);
}

.dropdown-menu {
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  box-shadow: var(--rd-shadow);
}

/* Surfaces */
.well,
.panel,
.card,
.modal-content,
.serviceDetailsCard,
.order-bnr,
.order-bnr2,
.auth-bnr,
.order-history-box,
.ser-desc-box,
.child-panel .accordion .card {
  border: 1px solid rgba(214, 222, 232, 0.9) !important;
  border-radius: var(--rd-radius) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--rd-shadow-sm);
}

.well {
  margin-bottom: 18px;
  padding: 22px;
}

.well h1,
.well h2,
.well h3,
.panel-title,
.modal-title,
.ser-cat-title,
.order-bnr-title,
.auth-bnr-title {
  color: var(--rd-ink);
  font-weight: 850;
  letter-spacing: 0;
}

.text-muted,
.help-block,
.order-bnr-txt,
.auth-bnr-txt {
  color: var(--rd-muted) !important;
}

/* Buttons and forms */
.btn {
  min-height: 42px;
  border-radius: var(--rd-radius) !important;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-gerar-api,
.my-tabs .active .nav-link,
.my-tabs .active .nav-link:hover,
.my-tabs .nav-link:hover,
.my-tabs .nav-link:focus {
  border-color: var(--rd-primary) !important;
  background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-700)) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(42, 188, 232, 0.24);
}

.btn-default,
.btn-secondary {
  border-color: var(--rd-border) !important;
  background: #fff !important;
  color: #27364a !important;
}

.btn-danger {
  border-color: var(--rd-danger) !important;
  background: var(--rd-danger) !important;
}

.form-group {
  margin-bottom: 16px;
}

.control-label,
label {
  margin-bottom: 7px;
  color: #263548;
  font-size: 13px;
  font-weight: 800;
}

.form-control,
select.form-control,
textarea.form-control,
.select2-container--default .select2-selection--single {
  min-height: 44px;
  border: 1px solid var(--rd-border-strong) !important;
  border-radius: var(--rd-radius) !important;
  background-color: #fff !important;
  color: var(--rd-ink);
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 118px;
  resize: vertical;
}

.form-control[readonly],
.form-control[disabled],
fieldset[disabled] .form-control {
  background: var(--rd-surface-soft) !important;
  color: #526173;
}

.input-group .form-control:first-child,
.input-group-btn:last-child > .btn {
  border-radius: var(--rd-radius) !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  padding-left: 14px !important;
  color: var(--rd-ink) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px !important;
}

.select2-dropdown {
  border-color: var(--rd-border-strong) !important;
  border-radius: var(--rd-radius) !important;
  box-shadow: var(--rd-shadow);
  overflow: hidden;
}

.select2-results__option {
  padding: 10px 12px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--rd-primary) !important;
}

/* Tabs, pills and pagination */
.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.nav-pills > li {
  float: none;
}

.nav-pills > li > a,
.pagination > li > a,
.pagination > li > span {
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius) !important;
  background: #fff;
  color: #334155;
  font-weight: 800;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.pagination > .active > a,
.pagination > .active > span {
  border-color: var(--rd-primary) !important;
  background: var(--rd-primary) !important;
  color: #fff !important;
}

/* Tables */
.table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.table > thead > tr > th {
  border-bottom: 1px solid var(--rd-border) !important;
  background: #f3f8fb;
  color: #526173;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td {
  border-top: 1px solid var(--rd-border) !important;
  color: #253244;
  vertical-align: middle !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background: #fbfdfe;
}

.well > .table,
.well .table {
  overflow: hidden;
  border-radius: var(--rd-radius);
}

.link,
.service-name,
.width-40 {
  overflow-wrap: anywhere;
}

/* Alerts and status */
.alert {
  border: 0;
  border-radius: var(--rd-radius);
  box-shadow: none;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #b42318;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.13);
  color: #92400e;
}

.label,
.status,
[class*="status"] {
  border-radius: 999px;
  font-weight: 800;
}

/* New order experience */
.auth-bnr {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(42, 188, 232, 0.95), rgba(7, 141, 185, 0.92)) !important;
  color: #fff;
}

.auth-bnr-title,
.auth-bnr-txt {
  color: #fff !important;
}

.auth-bnr-content {
  position: relative;
  z-index: 1;
}

.auth-bnr-img {
  max-height: 190px;
  object-fit: contain;
}

.ser-cat-ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.ser-cat-btn {
  min-height: 96px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
  background: #fff;
  color: #27364a;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.ser-cat-btn:hover,
.ser-cat-btn:focus,
.ser-cat-btn.active {
  border-color: rgba(42, 188, 232, 0.6);
  background: var(--rd-primary-soft);
  color: var(--rd-primary-700);
  transform: translateY(-1px);
}

.ser-cat-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.ser-cat-icon img {
  max-width: 36px;
  max-height: 36px;
}

.service-name-icon,
.fs-ig {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--rd-primary-soft);
  color: var(--rd-primary-700);
}

.order-bnr,
.order-bnr2 {
  min-height: 150px;
  padding: 22px;
}

.order-bnr2-orders,
.order-bnr2-title {
  color: var(--rd-ink);
}

.order-actions {
  flex-wrap: wrap;
}

/* Modal and footer */
.modal-content {
  overflow: hidden;
}

.modal-header,
.modal-footer {
  border-color: var(--rd-border);
}

.modal-header .close {
  opacity: 1;
  color: var(--rd-primary-700);
}

.footer {
  border-top: 1px solid var(--rd-border);
  background: #fff;
}

/* Mobile-first refinements */
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar.navbar-default,
  .navbar.navbar-inverse {
    min-height: 64px;
  }

  .navbar-brand {
    height: 64px;
    padding-left: 0;
  }

  .navbar-brand img {
    max-width: 132px;
    max-height: 42px;
  }

  .navbar-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-header-left-wrap {
    margin-left: auto;
  }

  #navbar.navbar-collapsed,
  #navbar.navbar-collapse,
  #navbar.collapse.in {
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    border: 0;
    box-shadow: none;
  }

  .navbar .nav {
    width: 100%;
    margin: 0;
    padding: 8px 0 14px;
  }

  .navbar .nav > li > a,
  .navbar-header-left a {
    margin: 4px 0;
    justify-content: flex-start;
  }

  .well {
    padding: 18px;
  }

  .auth-bnr {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  body {
    background: #f6f9fc;
  }

  .auth > .container,
  .auth > .container-fluid,
  .guest > .container,
  .guest > .container-fluid,
  .order-page > .container-fluid {
    padding-top: 14px;
    padding-bottom: 24px;
  }

  .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .well,
  .panel,
  .card,
  .order-bnr,
  .order-bnr2,
  .auth-bnr {
    margin-bottom: 12px;
    padding: 16px;
  }

  .btn,
  .form-control,
  select.form-control,
  .select2-container--default .select2-selection--single {
    min-height: 46px;
    font-size: 16px;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .input-group {
    display: flex;
    gap: 8px;
  }

  .input-group .form-control {
    flex: 1 1 auto;
  }

  .input-group-btn {
    width: auto;
  }

  .input-group-btn > .btn {
    width: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-pills > li > a {
    text-align: center;
  }

  .table-responsive-stack,
  .table-responsive-stack thead,
  .table-responsive-stack tbody,
  .table-responsive-stack tr,
  .table-responsive-stack th,
  .table-responsive-stack td {
    display: block;
    width: 100%;
  }

  .table-responsive-stack thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .table-responsive-stack tbody tr {
    margin-bottom: 12px;
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    overflow: hidden;
  }

  .table-responsive-stack > tbody > tr > td {
    display: grid;
    grid-template-columns: minmax(104px, 38%) 1fr;
    gap: 12px;
    min-height: 44px;
    padding: 12px 14px !important;
    border-top: 1px solid var(--rd-border) !important;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .table-responsive-stack > tbody > tr > td:first-child {
    border-top: 0 !important;
  }

  .table-responsive-stack td::before {
    content: attr(data-label);
    color: #667085;
    font-size: 12px;
    font-weight: 850;
    text-align: left;
    text-transform: uppercase;
  }

  .ser-cat-ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ser-cat-btn {
    min-height: 86px;
  }

  .auth-bnr-img {
    display: none;
  }

  .modal-dialog {
    width: auto;
    margin: 12px;
  }

  .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pagination > li {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Dashboard sidebar experience
   Visual inspirado em SaaS moderno com menu lateral e foco mobile.
========================================================================== */
:root {
  --rd-sidebar: #07111f;
  --rd-sidebar-2: #0d2234;
  --rd-sidebar-text: #d8f4fb;
  --rd-sidebar-muted: #88a7b8;
  --rd-page: #f5f9fc;
}

body.auth {
  min-height: 100vh;
  padding-left: 272px;
  background:
    radial-gradient(circle at 75% -10%, rgba(42, 188, 232, 0.18), transparent 30rem),
    linear-gradient(180deg, #f8fcff 0%, var(--rd-page) 100%);
}

body.auth::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 78%);
}

body.auth > .navbar.my-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: 272px;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden auto;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(42, 188, 232, 0.18), transparent 30%),
    linear-gradient(180deg, var(--rd-sidebar) 0%, var(--rd-sidebar-2) 100%) !important;
  box-shadow: 24px 0 55px rgba(6, 18, 31, 0.14);
  backdrop-filter: none;
}

body.auth > .navbar.my-nav .container-fluid {
  width: 100%;
  max-width: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
}

body.auth > .navbar.my-nav .navbar-header {
  width: 100%;
  display: block;
}

body.auth > .navbar.my-nav .navbar-brand {
  width: 100%;
  height: auto;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 8px 10px 20px;
  color: #fff !important;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

body.auth > .navbar.my-nav .navbar-brand::after {
  content: "SMM Provider";
  display: block;
  margin-top: 4px;
  color: var(--rd-sidebar-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

body.auth > .navbar.my-nav .navbar-brand img {
  max-width: 176px;
  max-height: 58px;
  filter: drop-shadow(0 12px 22px rgba(42, 188, 232, 0.18));
}

body.auth > .navbar.my-nav .navbar-header-left-wrap {
  width: 100%;
  display: block;
  margin: 0 0 14px;
}

body.auth > .navbar.my-nav .navbar-header-left {
  display: grid;
  grid-template-columns: 1fr 42px 42px;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

body.auth > .navbar.my-nav .navbar-header-left > li:first-child {
  min-width: 0;
}

body.auth > .navbar.my-nav .navbar-header-left a {
  min-height: 42px;
  justify-content: center;
  margin: 0;
  padding: 8px !important;
  color: #fff !important;
  border-radius: 10px;
}

body.auth > .navbar.my-nav .navbar-header-left .badge {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.auth > .navbar.my-nav .navbar-toggle {
  display: none;
}

body.auth > .navbar.my-nav #navbar {
  width: 100%;
  display: block !important;
  height: auto !important;
  padding: 6px 0 0;
  border: 0;
}

body.auth > .navbar.my-nav .navbar-left-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  float: none;
  margin: 0;
  padding: 0 0 18px;
}

body.auth > .navbar.my-nav .navbar-left-block > li {
  width: 100%;
  float: none;
}

body.auth > .navbar.my-nav .navbar-left-block > li > a {
  position: relative;
  width: 100%;
  min-height: 46px;
  justify-content: flex-start;
  margin: 0;
  padding: 11px 13px !important;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--rd-sidebar-text) !important;
  font-size: 14px;
  font-weight: 800;
}

body.auth > .navbar.my-nav .navbar-left-block > li > a *,
body.auth > .navbar.my-nav .navbar-header-left a *,
body.auth > .navbar.my-nav .navbar-brand * {
  color: inherit !important;
}

body.auth > .navbar.my-nav .navbar-left-block > li > a:hover,
body.auth > .navbar.my-nav .navbar-left-block > li > a:focus,
body.auth > .navbar.my-nav .navbar-left-block > li.active > a {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.13) !important;
  color: #fff !important;
  box-shadow: inset 4px 0 0 var(--rd-primary);
}

body.auth > .navbar.my-nav .navbar-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-right: 2px;
  border-radius: 8px;
  background: rgba(42, 188, 232, 0.13);
  color: var(--rd-primary);
}

body.auth > .container,
body.auth > .container-fluid,
body.auth .order-page > .container-fluid,
body.auth main.container-fluid {
  max-width: 1560px;
  padding: 26px 28px 38px;
}

body.auth .well,
body.auth .panel,
body.auth .card,
body.auth .order-bnr,
body.auth .order-bnr2,
body.auth .auth-bnr,
body.auth .order-history-box,
body.auth .ser-desc-box {
  border: 1px solid rgba(226, 233, 240, 0.86) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

body.auth .well {
  padding: 24px;
}

body.auth .auth-bnr,
body.auth .order-bnr {
  min-height: 142px;
  display: flex;
  align-items: center;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.32), transparent 14rem),
    linear-gradient(135deg, #2abce8 0%, #078db9 100%) !important;
  color: #fff;
}

body.auth .auth-bnr::after,
body.auth .order-bnr::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -105px;
  border: 36px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

body.auth .auth-bnr-title,
body.auth .order-bnr-title {
  margin-top: 0;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 38px);
}

body.auth .order-bnr2 {
  position: relative;
  min-height: 148px;
  padding: 26px;
}

body.auth .order-bnr2::before,
body.auth .well.preview-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, var(--rd-primary), var(--rd-primary-700));
}

.dashboard-notice {
  margin-bottom: 18px;
  padding: 18px 22px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #2abce8, #078db9);
  box-shadow: 0 16px 32px rgba(42, 188, 232, 0.2);
}

.dashboard-notice.warning {
  color: #241900;
  background: linear-gradient(135deg, #ffd15c, #ffb703);
  box-shadow: 0 16px 32px rgba(255, 183, 3, 0.18);
}

.preview-stat {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.preview-stat-icon {
  width: 76px;
  height: 76px;
  display: grid;
  flex: 0 0 76px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-700));
  color: #fff;
  font-size: 30px;
  box-shadow: 0 16px 28px rgba(42, 188, 232, 0.22);
}

.preview-stat-value {
  margin: 0 0 6px;
  color: var(--rd-primary-700);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
}

.preview-stat-label {
  margin: 0;
  color: #334155;
  font-weight: 800;
}

body.auth .ser-cat-ul {
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
}

body.auth .ser-cat-btn {
  min-height: 112px;
  border-radius: 16px;
}

body.auth .form-control,
body.auth select.form-control,
body.auth textarea.form-control,
body.auth .select2-container--default .select2-selection--single {
  min-height: 50px;
  border-color: #e0e8f0 !important;
  border-radius: 12px !important;
  background: #f7fbfe !important;
}

body.auth .input-group {
  width: 100%;
  display: table;
}

body.auth .input-group-addon {
  border-color: #e0e8f0;
  border-radius: 12px 0 0 12px;
  background: #f7fbfe;
  color: #8aa0b4;
}

body.auth .input-group .form-control {
  border-radius: 0 12px 12px 0 !important;
}

body.auth .btn {
  min-height: 50px;
  border-radius: 12px !important;
}

.preview-help-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.preview-help-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #213247;
  font-weight: 700;
}

.preview-help-list i {
  width: 26px;
  height: 26px;
  display: inline-grid;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--rd-primary-soft);
  color: var(--rd-primary-700);
}

.floating-support-preview,
.whatsapp-button {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  right: 24px;
  bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-700)) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(42, 188, 232, 0.34);
}

.floating-support-preview {
  position: fixed;
  z-index: 1040;
  font-size: 25px;
}

@media (min-width: 1200px) {
  body.auth .row.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-left: 0;
    margin-right: 0;
  }

  body.auth .row.dashboard-stats > [class*="col-"] {
    width: auto;
    float: none;
    padding: 0;
  }
}

@media (max-width: 991px) {
  body.auth {
    padding-left: 0;
    padding-top: 72px;
  }

  body.auth > .navbar.my-nav {
    inset: 0 0 auto 0;
    width: 100%;
    height: 72px;
    min-height: 72px;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(6, 18, 31, 0.16);
  }

  body.auth > .navbar.my-nav .container-fluid {
    min-height: 72px;
    display: block;
    padding: 0 14px;
  }

  body.auth > .navbar.my-nav .navbar-header {
    height: 72px;
    display: flex;
    align-items: center;
  }

  body.auth > .navbar.my-nav .navbar-brand {
    width: auto;
    min-height: 72px;
    padding: 8px 0;
    font-size: 18px;
  }

  body.auth > .navbar.my-nav .navbar-brand::after {
    display: none;
  }

  body.auth > .navbar.my-nav .navbar-header-left-wrap {
    width: auto;
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    width: auto;
    grid-template-columns: minmax(96px, auto) 42px 42px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.auth > .navbar.my-nav .navbar-toggle {
    display: inline-grid;
    place-items: center;
    margin: 0 0 0 8px;
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff;
  }

  body.auth > .navbar.my-nav #navbar {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    display: none !important;
    overflow-y: auto;
    padding: 12px 14px 22px;
    background: linear-gradient(180deg, var(--rd-sidebar) 0%, var(--rd-sidebar-2) 100%);
    box-shadow: 0 18px 40px rgba(6, 18, 31, 0.2);
  }

  body.auth > .navbar.my-nav #navbar.in,
  body.auth > .navbar.my-nav #navbar.navbar-collapse.in {
    display: block !important;
  }

  body.auth > .navbar.my-nav .navbar-left-block > li > a {
    min-height: 50px;
  }

  body.auth > .container,
  body.auth > .container-fluid,
  body.auth .order-page > .container-fluid,
  body.auth main.container-fluid {
    padding: 18px 16px 28px;
  }
}

@media (max-width: 767px) {
  body.auth .well,
  body.auth .panel,
  body.auth .card,
  body.auth .order-bnr,
  body.auth .order-bnr2,
  body.auth .auth-bnr {
    border-radius: 16px !important;
    padding: 18px;
  }

  body.auth .navbar-header-left li.account,
  body.auth .navbar-header-left li:last-child {
    display: none;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    grid-template-columns: minmax(94px, auto);
  }

  .dashboard-notice {
    padding: 14px 16px;
    font-size: 13px;
  }

  .preview-stat {
    min-height: 124px;
  }

  .preview-stat-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    font-size: 24px;
  }

  .floating-support-preview,
  .whatsapp-button {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

/* ==========================================================================
   New order dashboard components
========================================================================== */
body.auth[data-page=""] .stats-row,
body.auth[data-page="neworder"] .stats-row,
body.auth .stats-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0 0 16px;
}

body.auth .stats-row::before,
body.auth .stats-row::after {
  display: none;
}

body.auth .stats-row > [class*="col-"] {
  width: auto;
  float: none;
  padding: 0;
}

body.auth .stats-row > [class*="col-"]:last-child {
  display: grid;
  gap: 16px;
}

body.auth .stats-box {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 233, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

body.auth .stats-box::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -56px;
  top: -56px;
  border-radius: 50%;
  background: rgba(42, 188, 232, 0.1);
}

body.auth .stats-box-left,
body.auth .stats-box-right {
  position: relative;
  z-index: 1;
}

body.auth .stats-box-left {
  min-width: 0;
}

body.auth .stats-box-title {
  margin: 0 0 8px;
  color: #77889b;
  font-size: 13px;
  font-weight: 800;
}

body.auth .stats-box-txt {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  word-break: break-word;
}

body.auth .stats-box button {
  min-height: 42px;
  margin-top: 12px;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-700)) !important;
  box-shadow: 0 12px 26px rgba(42, 188, 232, 0.2);
  font-weight: 800;
}

body.auth .stats-box-img {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--rd-primary-soft);
}

body.auth .stats-box-img img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

body.auth .whatsapp-bnr {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 26px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 50%, rgba(42, 188, 232, 0.22), transparent 13rem),
    linear-gradient(135deg, #121922, #27313d);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

body.auth .whatsapp-content {
  position: relative;
  z-index: 2;
  max-width: 46%;
}

body.auth .whatsapp-bnr-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.15;
}

body.auth .whatsapp-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none !important;
}

body.auth .whatsapp-txt,
body.auth .whatsapp-icon,
body.auth .whatsapp-icon i {
  color: #fff !important;
}

body.auth .whatsapp-bnr-img {
  position: absolute;
  right: 26px;
  bottom: 0;
  max-width: 52%;
  max-height: 190px;
  object-fit: contain;
  object-position: right bottom;
}

body.auth .well2 {
  margin-top: 18px !important;
  padding: 24px;
  border: 1px solid rgba(226, 233, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

body.auth .dash-title {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
}

body.auth .neworder-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  border: 0;
}

body.auth .neworder-tabs::before,
body.auth .neworder-tabs::after {
  display: none;
}

body.auth .neworder-tabs > li {
  float: none;
  margin: 0;
}

body.auth .neworder-tabs > li > a,
body.auth .neworder-tabs .nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid #e0e8f0 !important;
  border-radius: 12px !important;
  background: #f7fbfe;
  color: #526173 !important;
  font-weight: 800;
}

body.auth .neworder-tabs > li.active > a,
body.auth .neworder-tabs > li > a:hover,
body.auth .neworder-tabs > li > a:focus {
  border-color: var(--rd-primary) !important;
  background: linear-gradient(135deg, var(--rd-primary), var(--rd-primary-700)) !important;
  color: #fff !important;
}

body.auth .nav-item-search {
  flex: 1 1 260px;
}

body.auth .nav-item-search > a {
  width: 100%;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.auth .nav-item-search .form-group {
  width: 100%;
  margin: 0;
}

body.auth .nav-item-search .form-control {
  min-height: 50px;
  padding-left: 42px;
}

body.auth .ser-desc-name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f7fbfe;
  color: #1f2937;
  font-weight: 800;
  overflow-wrap: anywhere;
}

body.auth .ser-desc-box-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

body.auth .ser-desc-box-row::before,
body.auth .ser-desc-box-row::after {
  display: none;
}

body.auth .ser-desc-box-row > [class*="col-"] {
  width: auto;
  float: none;
  padding: 0;
}

body.auth .ser-desc-box {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px !important;
  box-shadow: none;
}

body.auth .ser-desc-box-title {
  margin: 0 0 8px;
  color: #77889b;
  font-size: 12px;
  font-weight: 900;
}

body.auth .ser-desc-box-txt {
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

body.auth .ser-desc-box-right {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--rd-primary-soft);
}

body.auth .ser-desc-box-icon i {
  color: var(--rd-primary-700) !important;
  font-size: 20px;
}

body.auth .child-panel {
  margin-top: 16px;
}

body.auth .child-panel > h4 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

body.auth .child-panel .accordion .card {
  margin-bottom: 10px;
  overflow: hidden;
}

body.auth .child-panel .card-header .btn,
body.auth .child-panel .btn-link {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
  padding: 14px 16px;
  border: 0 !important;
  background: #fff !important;
  color: #1f2937 !important;
  box-shadow: none;
  text-align: left;
  white-space: normal;
}

body.auth .child-panel .card-body {
  padding: 0 16px 16px;
  color: #526173;
  line-height: 1.6;
}

body.auth .auth-bnr {
  position: relative;
  min-height: 232px;
}

body.auth .auth-bnr-content {
  max-width: 68%;
}

body.auth .auth-bnr-img {
  position: absolute;
  right: 22px;
  bottom: 0;
  z-index: 1;
  max-width: 38%;
  max-height: 230px;
}

body.auth .auth-bnr-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  body.auth .stats-row {
    grid-template-columns: 1fr;
  }

  body.auth .stats-row > [class*="col-"]:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.auth .auth-bnr-content,
  body.auth .whatsapp-content {
    max-width: 100%;
  }

  body.auth .auth-bnr-img,
  body.auth .whatsapp-bnr-img {
    display: none;
  }
}

@media (max-width: 767px) {
  body.auth .stats-row,
  body.auth .stats-row > [class*="col-"]:last-child,
  body.auth .ser-desc-box-row {
    grid-template-columns: 1fr;
  }

  body.auth .neworder-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.auth .neworder-tabs > li > a,
  body.auth .neworder-tabs .nav-link {
    width: 100%;
  }

  body.auth .stats-box {
    min-height: 124px;
    padding: 18px;
  }
}

/* ==========================================================================
   Polished Revenda Direta app shell
   Camada final: visual mais moderno e menos dependente do Bootstrap antigo.
========================================================================== */
:root {
  --rd-brand: #15b9e6;
  --rd-brand-2: #0798cb;
  --rd-brand-3: #e7f8fd;
  --rd-sidebar-modern: #02b6ef;
  --rd-sidebar-modern-2: #02b6ef;
  --rd-card-radius: 20px;
  --rd-card-shadow: 0 20px 60px rgba(4, 31, 45, 0.08);
  --rd-card-border: rgba(180, 207, 220, 0.46);
}

body.auth {
  background:
    linear-gradient(rgba(255,255,255,0.74), rgba(255,255,255,0.74)),
    linear-gradient(90deg, rgba(21,185,230,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21,185,230,0.08) 1px, transparent 1px),
    #f5fbfe;
  background-size: auto, 42px 42px, 42px 42px, auto;
  color: #0f172a;
  font-family: "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
}

body.auth > .navbar.my-nav {
  background: #02b6ef !important;
  box-shadow: 16px 0 42px rgba(2, 118, 154, 0.18);
}

body.auth > .navbar.my-nav .navbar-brand {
  min-height: 86px;
  padding: 12px 12px 22px;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

body.auth > .navbar.my-nav .navbar-brand img {
  max-width: 178px;
  max-height: 62px;
  filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

body.auth > .navbar.my-nav .navbar-brand::after {
  color: rgba(255,255,255,0.74);
}

body.auth > .navbar.my-nav .navbar-header-left {
  grid-template-columns: 1fr 44px 44px;
  gap: 10px;
  padding: 12px;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

body.auth > .navbar.my-nav .navbar-header-left > li:first-child {
  display: none;
}

body.auth > .navbar.my-nav .navbar-header-left > li.dropdown-currencies {
  display: block;
}

body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies a.dropdown-toggle {
  width: 100%;
  min-width: 0;
  padding: 0 !important;
  background: transparent !important;
}

body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .badge {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff !important;
  color: #027da5 !important;
  box-shadow: none;
  font-size: 14px;
}

body.auth > .navbar.my-nav .navbar-header-left > li.account > a,
body.auth > .navbar.my-nav .navbar-header-left > li:not(.dropdown-currencies):not(:first-child) > a {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0 !important;
  border-radius: 12px;
  background: rgba(255,255,255,0.18) !important;
  color: #fff !important;
}

body.auth > .navbar.my-nav .navbar-left-block {
  gap: 8px;
}

body.auth > .navbar.my-nav .navbar-left-block > li > a {
  min-height: 48px;
  padding: 12px 14px !important;
  border-radius: 14px;
  color: rgba(239, 250, 253, 0.9) !important;
  font-size: 14px;
  letter-spacing: -0.01em;
}

body.auth > .navbar.my-nav .navbar-left-block > li > a:hover,
body.auth > .navbar.my-nav .navbar-left-block > li > a:focus,
body.auth > .navbar.my-nav .navbar-left-block > li.active > a {
  border-color: rgba(255,255,255,0.48) !important;
  background: rgba(255,255,255,0.2) !important;
  box-shadow: inset 4px 0 0 #fff;
}

body.auth > .navbar.my-nav .navbar-icon {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

body.auth .neworder-dashboard {
  max-width: 1640px;
  padding: 28px 34px 46px;
}

body.auth .neworder-main-grid {
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(460px, 1.05fr);
  gap: 28px;
  align-items: start;
  margin: 0;
}

body.auth .neworder-main-grid::before,
body.auth .neworder-main-grid::after {
  display: none;
}

body.auth .neworder-main-grid > [class*="col-"] {
  width: auto;
  float: none;
  padding: 0;
}

body.auth .neworder-primary > .well,
body.auth .neworder-aside > .well,
body.auth .well2,
body.auth .stats-box,
body.auth .whatsapp-bnr,
body.auth .child-panel .accordion .card {
  border: 1px solid var(--rd-card-border) !important;
  border-radius: var(--rd-card-radius) !important;
  background: rgba(255,255,255,0.88) !important;
  box-shadow: var(--rd-card-shadow);
  backdrop-filter: blur(12px);
}

body.auth .neworder-primary > .well {
  display: grid;
  gap: 18px;
  padding: 22px;
}

body.auth .neworder-primary > .well > * {
  margin-bottom: 0;
}

body.auth .auth-bnr {
  min-height: 250px;
  padding: 34px;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 83% 18%, rgba(255,255,255,0.4), transparent 10rem),
    linear-gradient(135deg, var(--rd-brand) 0%, var(--rd-brand-2) 100%) !important;
  box-shadow: 0 20px 44px rgba(21, 185, 230, 0.22);
}

body.auth .auth-bnr-title {
  max-width: 620px;
  margin-bottom: 16px;
  color: #fff !important;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

body.auth .auth-bnr-txt {
  max-width: 560px;
  color: rgba(255,255,255,0.94) !important;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

body.auth .auth-bnr-img {
  right: 18px;
  max-width: 41%;
  max-height: 248px;
}

body.auth .ser-cat-wrap {
  padding: 0;
  border: 0;
  background: transparent;
}

body.auth .ser-cat-title,
body.auth .dash-title {
  color: #0f172a;
  font-weight: 950;
  letter-spacing: -0.035em;
}

body.auth .ser-cat-title {
  margin: 0 0 14px;
  font-size: 24px;
}

body.auth .ser-cat-ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

body.auth .ser-cat-btn {
  min-height: 116px;
  padding: 16px 10px;
  border-color: rgba(193, 214, 224, 0.72);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

body.auth .ser-cat-btn:hover,
body.auth .ser-cat-btn:focus {
  border-color: rgba(21, 185, 230, 0.7);
  background: linear-gradient(180deg, #fff, var(--rd-brand-3));
  box-shadow: 0 18px 38px rgba(21, 185, 230, 0.13);
}

body.auth .ser-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--rd-brand-3);
}

body.auth .ser-cat-txt {
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
}

body.auth .neworder-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, auto)) minmax(220px, 1fr);
  gap: 10px;
  margin: 4px 0 0;
}

body.auth .neworder-tabs > li > a,
body.auth .neworder-tabs .nav-link {
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 999px !important;
  background: #edf5f9;
}

body.auth .nav-item-search .form-control {
  border-radius: 999px !important;
}

body.auth .well2 {
  margin-top: 0 !important;
  padding: 28px;
}

body.auth .well2 .form-group {
  margin-bottom: 18px;
}

body.auth label,
body.auth .control-label {
  color: #425466;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.auth .form-control,
body.auth select.form-control,
body.auth textarea.form-control,
body.auth .select2-container--default .select2-selection--single {
  min-height: 52px;
  border: 1px solid rgba(193, 214, 224, 0.9) !important;
  border-radius: 14px !important;
  background: #f8fcfe !important;
  color: #0f172a;
  font-weight: 750;
}

body.auth .form-control:focus,
body.auth .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--rd-brand) !important;
  background: #fff !important;
}

body.auth #order-form .btn[type="submit"] {
  width: 100%;
  min-height: 54px;
  border-radius: 15px !important;
  font-size: 15px;
  font-weight: 950;
}

body.auth .stats-row {
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
}

body.auth .stats-row > [class*="col-"]:last-child {
  gap: 18px;
}

body.auth .stats-box {
  min-height: 164px;
  padding: 24px;
}

body.auth .stats-box-txt {
  color: #0f172a;
  font-size: clamp(26px, 2.8vw, 38px);
}

body.auth .stats-box-img {
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, var(--rd-brand-3), #fff);
}

body.auth .whatsapp-bnr {
  min-height: 205px;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 40%, rgba(37, 211, 102, 0.25), transparent 11rem),
    linear-gradient(135deg, #111827, #253243) !important;
}

body.auth .whatsapp-content {
  max-width: 54%;
}

body.auth .whatsapp-bnr-img {
  max-height: 215px;
  max-width: 50%;
}

body.auth .neworder-aside > .well {
  padding: 28px;
}

body.auth .ser-desc-name {
  border-radius: 16px;
  background: #f8fcfe;
  font-size: 14px;
}

body.auth .service-name-icon,
body.auth .fs-ig {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 12px;
}

body.auth .ser-desc-box {
  min-height: 120px;
  border-radius: 18px !important;
}

body.auth .ser-desc-box-title {
  font-size: 12px;
  color: #667085;
}

body.auth .ser-desc-box-txt {
  font-size: 15px;
}

body.auth .child-panel {
  padding: 0;
}

body.auth .child-panel > h4 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

body.auth .child-panel .accordion .card {
  border-radius: 16px !important;
}

body.auth .child-panel .btn-link {
  font-weight: 950;
}

body.auth .table-responsive-stack tbody tr,
body.auth .order-history-box {
  border-radius: 16px;
}

body.auth .swal2-popup,
body.auth .modal-content {
  border-radius: 20px !important;
}

@media (max-width: 1399px) {
  body.auth .neworder-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.auth .neworder-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.auth .neworder-dashboard {
    padding: 18px 14px 34px;
  }

  body.auth .neworder-primary > .well,
  body.auth .neworder-aside > .well,
  body.auth .well2 {
    padding: 18px;
  }

  body.auth .ser-cat-ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.auth .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.auth .auth-bnr {
    min-height: auto;
    padding: 24px;
  }

  body.auth .auth-bnr-title {
    font-size: 30px;
  }

  body.auth .ser-cat-ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.auth .neworder-tabs {
    grid-template-columns: 1fr;
  }

  body.auth .stats-box {
    min-height: 136px;
  }

  body.auth .whatsapp-content {
    max-width: 100%;
  }
}

/* Sidebar color lock */
body.auth > nav.navbar.my-nav,
body.auth > nav.navbar.navbar-default.navbar-inverse.my-nav {
  background: #02b6ef !important;
  background-color: #02b6ef !important;
  background-image: none !important;
}

body.auth > nav.navbar.my-nav::before,
body.auth > nav.navbar.my-nav::after {
  display: none !important;
}

body.auth > nav.navbar.my-nav .navbar-left-block > li > a {
  color: #ffffff !important;
}

body.auth > nav.navbar.my-nav .navbar-left-block > li.active > a,
body.auth > nav.navbar.my-nav .navbar-left-block > li > a:hover,
body.auth > nav.navbar.my-nav .navbar-left-block > li > a:focus {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Premium balance widget */
body.auth .dropdown-currencies {
  position: relative;
}

body.auth .balance-widget {
  position: relative;
  min-height: 58px !important;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 10px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 14px 34px rgba(0, 88, 118, 0.18);
  color: #054b63 !important;
}

body.auth .balance-widget::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 48%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: rd-balance-shine 4.2s ease-in-out infinite;
}

body.auth .balance-widget::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.14);
}

body.auth .balance-widget-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #02b6ef, #078db9);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(2, 182, 239, 0.28);
}

body.auth .balance-widget-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

body.auth .balance-widget-label {
  display: block;
  margin-bottom: 2px;
  color: #6b8795 !important;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

body.auth .balance-widget .badge,
body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
  width: auto;
  min-height: auto;
  display: block;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent !important;
  color: #053f55 !important;
  box-shadow: none;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.05;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.auth .balance-widget.is-boosting .balance-widget-icon {
  animation: rd-balance-pop 0.7s ease;
}

body.auth .balance-widget.is-boosting {
  animation: rd-balance-card-pop 0.7s ease;
}

body.auth .balance-spark {
  position: absolute;
  z-index: 3;
  width: 6px;
  height: 6px;
  pointer-events: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(2, 182, 239, 0.2), 0 0 18px rgba(255,255,255,0.9);
  animation: rd-balance-spark 850ms ease-out forwards;
}

@keyframes rd-balance-shine {
  0%, 55% { transform: translateX(0) rotate(18deg); opacity: 0; }
  64% { opacity: 0.9; }
  100% { transform: translateX(340%) rotate(18deg); opacity: 0; }
}

@keyframes rd-balance-pop {
  0%, 100% { transform: scale(1) rotate(0deg); }
  38% { transform: scale(1.12) rotate(-8deg); }
  70% { transform: scale(0.96) rotate(4deg); }
}

@keyframes rd-balance-card-pop {
  0%, 100% { transform: translateY(0); }
  42% { transform: translateY(-2px); }
}

@keyframes rd-balance-spark {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.2);
  }
}

/* Fixed top announcement bar offset */
:root {
  --rd-top-banner-height: 52px;
}

body.has-top-banner {
  padding-top: var(--rd-top-banner-height) !important;
}

body.auth.has-top-banner {
  padding-top: var(--rd-top-banner-height) !important;
}

body.auth.has-top-banner > .navbar.my-nav {
  top: var(--rd-top-banner-height) !important;
  height: calc(100vh - var(--rd-top-banner-height)) !important;
  min-height: calc(100vh - var(--rd-top-banner-height)) !important;
}

.rd-top-banner {
  isolation: isolate;
}

@media (max-width: 991px) {
  body.auth.has-top-banner {
    padding-top: calc(var(--rd-top-banner-height) + 72px) !important;
  }

  body.auth.has-top-banner > .navbar.my-nav {
    top: var(--rd-top-banner-height) !important;
    height: 72px !important;
    min-height: 72px !important;
  }

  body.auth.has-top-banner > .navbar.my-nav #navbar {
    top: calc(var(--rd-top-banner-height) + 72px) !important;
    max-height: calc(100vh - var(--rd-top-banner-height) - 72px) !important;
  }
}

@media (max-width: 767px) {
  .rd-top-banner {
    font-size: 13px !important;
    letter-spacing: 0.02em !important;
  }
}

/* Sidebar header/account tools cleanup */
@media (min-width: 992px) {
  body.auth {
    padding-left: 300px !important;
  }

  body.auth > .navbar.my-nav {
    width: 300px !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px 42px 42px;
    gap: 8px;
    align-items: center;
    padding: 10px;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li {
    min-width: 0;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li:first-child {
    display: none !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li.dropdown-currencies {
    grid-column: 1;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li.account,
  body.auth > .navbar.my-nav .navbar-header-left > li:not(:first-child):not(.dropdown-currencies) {
    width: 42px;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li.account > a,
  body.auth > .navbar.my-nav .navbar-header-left > li:not(:first-child):not(.dropdown-currencies) > a,
  body.auth > .navbar.my-nav .navbar-header-left > li:last-child > a {
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    display: grid !important;
    place-items: center;
    padding: 0 !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
  }
}

body.auth > .navbar.my-nav .navbar-header-left {
  overflow: visible;
}

body.auth .balance-widget {
  width: 100%;
  min-width: 0;
  min-height: 54px !important;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 10px !important;
}

body.auth .balance-widget-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

body.auth .balance-widget .badge,
body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.15;
}

body.auth .dropdown-currencies .dropdown-menu {
  min-width: 210px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(180, 207, 220, 0.65);
  border-radius: 14px;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(4, 31, 45, 0.18);
}

body.auth .dropdown-currencies .dropdown-menu > li > a,
body.auth .dropdown-currencies .dropdown-menu > li > a[style] {
  min-height: 38px;
  margin: 0;
  padding: 9px 10px !important;
  border-radius: 10px;
  color: #16465a !important;
  font-weight: 850;
}

body.auth .dropdown-currencies .dropdown-menu > li > a:hover,
body.auth .dropdown-currencies .dropdown-menu > li > a:focus {
  background: #e7f8fd !important;
  color: #027da5 !important;
}

@media (max-width: 991px) {
  body.auth > .navbar.my-nav .navbar-header-left {
    grid-template-columns: minmax(130px, 1fr) 42px;
    gap: 8px;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li:first-child,
  body.auth > .navbar.my-nav .navbar-header-left > li.account,
  body.auth > .navbar.my-nav .navbar-header-left > li:nth-last-child(2) {
    display: none !important;
  }
}

/* Final account actions split: sidebar wallet only, top-right account tools */
body.auth > .navbar.my-nav .navbar-header-left {
  display: block !important;
  padding: 12px !important;
}

body.auth > .navbar.my-nav .navbar-header-left > li:first-child {
  display: none !important;
}

body.auth > .navbar.my-nav .navbar-header-left > li.dropdown-currencies {
  width: 100% !important;
  display: block !important;
}

body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies a.dropdown-toggle.balance-widget,
body.auth .balance-widget {
  width: 100% !important;
  min-height: 66px !important;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 13px !important;
}

body.auth .balance-widget-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

body.auth .balance-widget-label {
  font-size: 10px;
}

body.auth .balance-widget .badge,
body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
  font-size: 20px;
  line-height: 1.1;
}

/* Final wallet highlight */
body.auth .balance-widget .badge,
body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #fb8500 !important;
  text-shadow: 0 8px 22px rgba(251, 133, 0, 0.22);
}

body.auth .balance-widget-icon {
  background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%) !important;
  box-shadow: 0 12px 24px rgba(251, 133, 0, 0.28);
}

body.auth .balance-widget::after {
  background: #ffb703;
  box-shadow: 0 0 0 5px rgba(255, 183, 3, 0.18);
}

.rd-user-actions {
  position: fixed;
  top: calc(var(--rd-top-banner-height, 0px) + 14px);
  right: 22px;
  z-index: 10020;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(180, 207, 220, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(4, 31, 45, 0.13);
  backdrop-filter: blur(14px);
}

.rd-user-action,
.rd-user-action[style] {
  width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid rgba(180, 207, 220, 0.55);
  border-radius: 14px !important;
  background: #fff !important;
  color: #057da6 !important;
  box-shadow: 0 10px 22px rgba(4, 31, 45, 0.08);
  text-decoration: none !important;
}

.rd-user-action:hover,
.rd-user-action:focus {
  transform: translateY(-1px);
  border-color: rgba(2, 182, 239, 0.55);
  background: #e7f8fd !important;
  color: #027da5 !important;
}

.rd-user-action.is-dark,
.rd-user-action.is-dark[style] {
  background: #101828 !important;
  border-color: rgba(16, 24, 40, 0.2);
  color: #fff !important;
}

html[data-theme="dark"] .rd-user-actions {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(17, 24, 39, 0.86);
}

@media (min-width: 992px) {
  body.auth > .container,
  body.auth > .container-fluid,
  body.auth .order-page > .container-fluid,
  body.auth main.container-fluid {
    padding-top: 34px;
  }
}

@media (max-width: 991px) {
  .rd-user-actions {
    top: calc(var(--rd-top-banner-height, 0px) + 82px);
    right: 14px;
    padding: 6px;
    border-radius: 16px;
  }

  .rd-user-action,
  .rd-user-action[style] {
    width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 12px !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .rd-user-actions {
    position: fixed;
    right: 10px;
    gap: 6px;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    max-width: 170px;
  }

  body.auth .balance-widget .badge,
  body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
    font-size: 16px;
  }
}

/* Final top account bar: same color as sidebar */
body.auth.has-top-banner {
  padding-top: calc(var(--rd-top-banner-height) + 64px) !important;
}

.rd-user-actions {
  top: var(--rd-top-banner-height, 0px) !important;
  right: 0 !important;
  left: 300px !important;
  height: 64px;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 24px !important;
  border: 0;
  border-radius: 0;
  background: #02b6ef !important;
  box-shadow: 0 12px 30px rgba(2, 118, 154, 0.16);
  backdrop-filter: none;
}

.rd-user-actions::before {
  content: none;
  margin-right: auto;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rd-user-action,
.rd-user-action[style] {
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  box-shadow: none;
}

.rd-user-action:hover,
.rd-user-action:focus {
  border-color: rgba(255, 255, 255, 0.65) !important;
  background: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.rd-user-action.is-dark,
.rd-user-action.is-dark[style],
html[data-theme="dark"] .rd-user-actions {
  background: #02b6ef !important;
  color: #fff !important;
}

@media (min-width: 992px) {
  body.auth.has-top-banner > .navbar.my-nav {
    top: var(--rd-top-banner-height) !important;
  }
}

@media (max-width: 991px) {
  body.auth.has-top-banner {
    padding-top: calc(var(--rd-top-banner-height) + 136px) !important;
  }

  .rd-user-actions {
    top: calc(var(--rd-top-banner-height) + 72px) !important;
    left: 0 !important;
    right: 0 !important;
    height: 56px;
    padding: 0 14px !important;
  }

  .rd-user-actions::before {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .rd-user-actions {
    gap: 8px;
  }

  .rd-user-actions::before {
    content: none;
  }
}

body.auth > .navbar.my-nav .navbar-left-block > li > a {
  gap: 10px;
}

body.auth > .navbar.my-nav .navbar-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-right: 0;
  font-size: 14px;
}

body.auth .neworder-tabs .rd-menu-icon {
  width: auto;
  height: auto;
  margin-right: 7px;
  font-size: 13px;
}

/* Modern new order workspace */
body.auth .neworder-dashboard {
  padding-top: 34px;
}

body.auth .neworder-primary > .well {
  position: relative;
  gap: 22px;
  padding: 24px !important;
  overflow: hidden;
  border: 1px solid rgba(178, 207, 220, 0.56) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 253, 255, 0.9)) !important;
  box-shadow: 0 28px 80px rgba(4, 31, 45, 0.11);
}

body.auth .neworder-primary > .well::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #02b6ef, #20c7f3, #027da5);
}

body.auth .auth-bnr {
  min-height: 228px;
  padding: 32px !important;
  border: 0 !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.48), transparent 10rem),
    radial-gradient(circle at 12% 100%, rgba(32, 199, 243, 0.18), transparent 13rem),
    linear-gradient(135deg, #02b6ef 0%, #067fa9 100%) !important;
  box-shadow: 0 22px 50px rgba(2, 118, 154, 0.2);
}

body.auth .auth-bnr::after {
  width: 250px;
  height: 250px;
  right: -86px;
  bottom: -130px;
  border-width: 34px;
  opacity: 0.9;
}

body.auth .auth-bnr-title {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.06;
}

body.auth .auth-bnr-txt {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 15px;
}

body.auth .auth-bnr-img {
  right: 26px;
  max-width: 36%;
  max-height: 224px;
  filter: drop-shadow(0 22px 34px rgba(0, 49, 70, 0.22));
}

body.auth .ser-cat-wrap {
  padding: 2px 2px 0;
}

body.auth .ser-cat-title,
body.auth .dash-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.auth .ser-cat-title::before,
body.auth .dash-title::before {
  content: "";
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #02b6ef, #027da5);
}

body.auth .ser-cat-ul {
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 14px;
}

body.auth .ser-cat-btn {
  min-height: 118px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(186, 211, 223, 0.78);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbfe 100%) !important;
  box-shadow: 0 16px 34px rgba(4, 31, 45, 0.055);
}

body.auth .ser-cat-btn::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 3px;
  transform: translateY(3px);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #02b6ef, #027da5);
  transition: transform 0.2s ease;
}

body.auth .ser-cat-btn:hover::after,
body.auth .ser-cat-btn:focus::after,
body.auth .ser-cat-btn.active::after {
  transform: translateY(0);
}

body.auth .ser-cat-btn:hover,
body.auth .ser-cat-btn:focus,
body.auth .ser-cat-btn.active {
  border-color: rgba(2, 182, 239, 0.6) !important;
  background: #ffffff !important;
  box-shadow: 0 20px 42px rgba(2, 118, 154, 0.13);
}

body.auth .ser-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #eefaff;
  box-shadow: inset 0 0 0 1px rgba(2, 182, 239, 0.12);
}

body.auth .ser-cat-icon img {
  max-width: 40px;
  max-height: 40px;
}

body.auth .ser-cat-txt {
  font-size: 13px;
  letter-spacing: 0;
}

body.auth .neworder-tabs {
  grid-template-columns: repeat(5, minmax(0, auto)) minmax(260px, 1fr);
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(186, 211, 223, 0.62);
  border-radius: 22px;
  background: #eef8fc;
}

body.auth .neworder-tabs > li > a,
body.auth .neworder-tabs .nav-link {
  min-height: 48px;
  border: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  color: #406174 !important;
  box-shadow: none;
}

body.auth .neworder-tabs > li.active > a,
body.auth .neworder-tabs > li > a:hover,
body.auth .neworder-tabs > li > a:focus {
  background: #ffffff !important;
  color: #027da5 !important;
  box-shadow: 0 12px 26px rgba(4, 31, 45, 0.08);
}

body.auth .neworder-tabs .rd-menu-icon {
  color: inherit;
}

body.auth .nav-item-search .form-group,
body.auth .nav-item-search .nav-link {
  margin: 0;
}

body.auth .nav-item-search .form-control,
body.auth #template-input {
  min-height: 48px;
  border: 1px solid rgba(186, 211, 223, 0.78) !important;
  border-radius: 16px !important;
  background: #fff !important;
}

body.auth .well2 {
  position: relative;
  padding: 30px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 20px 50px rgba(4, 31, 45, 0.08);
}

body.auth #order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.auth #order-form .alert,
body.auth #order-form #fields,
body.auth #order-form .form-group.hidden,
body.auth #order-form .form-group:has(textarea),
body.auth #order-form .form-group:has(#orderform-category),
body.auth #order-form .form-group:has(#orderform-service),
body.auth #order-form .form-group:has(#charge),
body.auth #order-form button[type="submit"],
body.auth #order-form input[type="hidden"] {
  grid-column: 1 / -1;
}

body.auth #fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.auth #fields > .form-group {
  margin-bottom: 0;
}

body.auth #fields > .form-group.hidden {
  display: none !important;
}

body.auth .form-control,
body.auth select.form-control,
body.auth textarea.form-control,
body.auth .select2-container--default .select2-selection--single {
  border-radius: 16px !important;
}

body.auth #order-form .form-control,
body.auth #order-form .select2-container--default .select2-selection--single {
  min-height: 56px;
  padding-left: 16px;
  border-color: rgba(186, 211, 223, 0.9) !important;
  background: #f8fcfe !important;
}

body.auth #order-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 54px !important;
}

body.auth #order-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px !important;
}

body.auth #order-form .form-control:focus,
body.auth #order-form .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #02b6ef !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(2, 182, 239, 0.13) !important;
}

body.auth #order-form .help-block,
body.auth #order-form small {
  margin-top: 7px;
  color: #6b8795 !important;
  font-size: 12px;
  font-weight: 750;
}

body.auth #order-form #btn-colar,
body.auth #order-form #qty-buttons button {
  background: #02b6ef !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(2, 182, 239, 0.18);
}

body.auth #order-form .btn[type="submit"] {
  min-height: 58px;
  margin-top: 4px;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #02b6ef, #027da5) !important;
  box-shadow: 0 18px 32px rgba(2, 118, 154, 0.22);
}

@media (max-width: 991px) {
  body.auth .neworder-primary > .well,
  body.auth .well2 {
    border-radius: 20px !important;
    padding: 18px !important;
  }

  body.auth .auth-bnr {
    padding: 24px !important;
  }

  body.auth .neworder-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.auth .nav-item-search {
    grid-column: 1 / -1;
  }

  body.auth #order-form,
  body.auth #fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.auth .auth-bnr-title {
    font-size: 26px;
  }

  body.auth .ser-cat-ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.auth .ser-cat-btn {
    min-height: 108px;
  }

  body.auth .neworder-tabs {
    grid-template-columns: 1fr;
    padding: 6px;
  }
}

/* Logo cleanup */
body.auth > .navbar.my-nav .navbar-brand {
  align-items: center !important;
  justify-content: center !important;
  min-height: 92px;
  padding: 14px 10px 18px !important;
  text-align: center;
}

body.auth > .navbar.my-nav .navbar-brand::after {
  display: none !important;
  content: none !important;
}

body.auth > .navbar.my-nav .navbar-brand img {
  display: block;
  margin: 0 auto;
  max-width: 188px;
  max-height: 68px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.14)) !important;
}

/* New order cleanup: keep the form stable and simple */
body.auth .neworder-primary > .well {
  display: block !important;
  gap: normal !important;
  overflow: visible !important;
  padding: 22px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07) !important;
}

body.auth .neworder-primary > .well::before {
  display: none !important;
  content: none !important;
}

body.auth .auth-bnr {
  min-height: 220px !important;
  margin-bottom: 20px;
  padding: 30px !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.34), transparent 12rem),
    linear-gradient(135deg, #02b6ef 0%, #078db9 100%) !important;
  box-shadow: 0 18px 38px rgba(2, 118, 154, 0.18) !important;
}

body.auth .auth-bnr-title {
  font-size: clamp(26px, 2.8vw, 40px) !important;
}

body.auth .auth-bnr-img {
  right: 22px !important;
  max-width: 38% !important;
  max-height: 220px !important;
}

body.auth .ser-cat-wrap {
  margin-top: 24px !important;
  margin-bottom: 18px;
  padding: 0 !important;
}

body.auth .ser-cat-title,
body.auth .dash-title {
  display: block !important;
  gap: 0 !important;
}

body.auth .ser-cat-title::before,
body.auth .dash-title::before {
  display: none !important;
  content: none !important;
}

body.auth .ser-cat-ul {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  gap: 12px !important;
}

body.auth .ser-cat-btn {
  min-height: 108px !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055) !important;
}

body.auth .ser-cat-btn::after {
  display: none !important;
  content: none !important;
}

body.auth .ser-cat-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
}

body.auth .ser-cat-icon img {
  max-width: 36px !important;
  max-height: 36px !important;
}

body.auth .neworder-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  gap: 8px !important;
  margin: 16px 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.auth .neworder-tabs > li {
  float: none !important;
  order: 1;
}

body.auth .neworder-tabs > li > a,
body.auth .neworder-tabs .nav-link {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  border: 1px solid #e0e8f0 !important;
  border-radius: 999px !important;
  background: #f7fbfe !important;
  color: #526173 !important;
  box-shadow: none !important;
}

body.auth .neworder-tabs > li.active > a,
body.auth .neworder-tabs > li > a:hover,
body.auth .neworder-tabs > li > a:focus {
  border-color: #02b6ef !important;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff !important;
}

body.auth .neworder-tabs .navbar-icon,
body.auth .neworder-tabs .rd-menu-icon {
  display: none !important;
}

body.auth .nav-item-search {
  order: 20 !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  margin-top: 4px !important;
}

body.auth .nav-item-search .nav-link,
body.auth .nav-item-search .form-group {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.auth .nav-item-search .form-control,
body.auth #template-input {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 999px !important;
}

body.auth .well2 {
  display: block !important;
  padding: 26px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07) !important;
}

body.auth #order-form,
body.auth #fields {
  display: block !important;
}

body.auth #order-form .form-group,
body.auth #fields > .form-group {
  width: 100% !important;
  margin-bottom: 18px !important;
}

body.auth #fields > .form-group.hidden {
  display: none !important;
}

body.auth #order-form .form-control,
body.auth #order-form .select2-container--default .select2-selection--single {
  min-height: 52px !important;
  border-radius: 14px !important;
}

body.auth #order-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px !important;
}

body.auth #order-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
}

body.auth #order-form .btn[type="submit"] {
  width: 100% !important;
  min-height: 54px !important;
  border-radius: 14px !important;
}

@media (max-width: 991px) {
  body.auth .neworder-primary > .well,
  body.auth .well2 {
    padding: 18px !important;
  }

  body.auth .auth-bnr-img {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.auth .neworder-tabs {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.auth .neworder-tabs > li > a,
  body.auth .neworder-tabs .nav-link {
    width: 100% !important;
  }
}

body.auth .faq-launcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(180, 207, 220, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 10%, rgba(2, 182, 239, 0.18), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 254, 0.96));
  box-shadow: 0 18px 42px rgba(4, 31, 45, 0.08);
}

body.auth .faq-launcher-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

body.auth .faq-launcher-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #02b6ef, #078db9);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 14px 24px rgba(2, 118, 154, 0.2);
}

body.auth .faq-launcher h4 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 950;
}

body.auth .faq-launcher p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

body.auth .faq-launcher-btn {
  min-width: 138px;
  flex: 0 0 auto;
}

body.auth .faq-modal .modal-dialog {
  width: min(920px, calc(100% - 24px));
  margin: 24px auto;
}

body.auth .faq-modal {
  z-index: 9999999999999;
}

body.auth.modal-open .modal-backdrop {
  z-index: 10030;
}

body.auth .faq-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(180, 207, 220, 0.7) !important;
  border-radius: 24px !important;
  background: #fff !important;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

body.auth .faq-modal .modal-header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(180, 207, 220, 0.55);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.34), transparent 10rem),
    linear-gradient(135deg, #02b6ef, #078db9);
}

body.auth .faq-modal .modal-header .close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: -4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-shadow: none;
}

body.auth .faq-modal-kicker {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.auth .faq-modal .modal-title {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 950;
}

body.auth .faq-modal .modal-body {
  max-height: min(72vh, 720px);
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(2, 182, 239, 0.5) rgba(2, 182, 239, 0.08);
}

body.auth .faq-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}

body.auth .faq-modal .modal-body::-webkit-scrollbar-track {
  background: rgba(2, 182, 239, 0.08);
}

body.auth .faq-modal .modal-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(2, 182, 239, 0.5);
}

body.auth .faq-modal .child-panel {
  margin-top: 0;
}

body.auth .faq-modal .child-panel .accordion .card {
  border-radius: 16px !important;
}

body.auth .faq-modal .child-panel .btn-link {
  min-height: 58px;
  font-size: 15px;
}

body.auth .faq-modal .child-panel .card-body {
  padding-top: 4px;
}

@media (max-width: 767px) {
  body.auth .faq-launcher {
    display: grid;
    gap: 14px;
  }

  body.auth .faq-launcher-btn {
    width: 100%;
  }

  body.auth .faq-modal .modal-dialog {
    width: calc(100% - 16px);
    margin: 8px auto;
  }

  body.auth .faq-modal .modal-header {
    padding: 18px;
  }

  body.auth .faq-modal .modal-body {
    max-height: calc(100vh - 118px);
    padding: 14px;
  }
}

/* ==========================================================================
   Final new-order polish
========================================================================== */
body.auth > .navbar.my-nav {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.55) rgba(255, 255, 255, 0.12);
}

body.auth > .navbar.my-nav::-webkit-scrollbar {
  width: 8px;
}

body.auth > .navbar.my-nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

body.auth > .navbar.my-nav::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  background-clip: padding-box;
}

body.auth .ser-cat-ul {
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)) !important;
}

body.auth .ser-cat-btn {
  min-height: 82px !important;
  padding: 11px !important;
  border-color: rgba(180, 207, 220, 0.7) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.98)) !important;
  box-shadow:
    0 12px 24px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

body.auth .ser-cat-icon {
  width: 54px !important;
  height: 54px !important;
  border: 1px solid rgba(180, 207, 220, 0.65);
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 52%),
    linear-gradient(145deg, #ffffff, #eef4f7) !important;
  box-shadow:
    0 10px 18px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.auth .ser-cat-txt {
  display: none !important;
}

body.auth .ser-cat-btn:hover,
body.auth .ser-cat-btn:focus,
body.auth .ser-cat-btn.active {
  border-color: rgba(2, 182, 239, 0.42) !important;
  background:
    linear-gradient(180deg, #ffffff, #f5fbfd) !important;
  box-shadow:
    0 16px 28px rgba(2, 118, 154, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

body.auth .ser-cat-btn:hover .ser-cat-icon,
body.auth .ser-cat-btn:focus .ser-cat-icon,
body.auth .ser-cat-btn.active .ser-cat-icon {
  border-color: rgba(2, 182, 239, 0.28);
  box-shadow:
    0 12px 22px rgba(2, 118, 154, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

body.auth .neworder-tabs {
  display: grid !important;
  grid-template-columns: repeat(5, max-content) !important;
  gap: 7px !important;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

body.auth .neworder-tabs-carousel {
  position: relative;
}

body.auth .neworder-search {
  width: 100%;
  margin-top: 10px;
}

body.auth .neworder-tabs-arrow {
  display: none;
}

body.auth .neworder-tabs::-webkit-scrollbar {
  display: none;
}

body.auth .neworder-tabs > li {
  min-width: 0;
}

body.auth .neworder-tabs > li > a,
body.auth .neworder-tabs .nav-link {
  min-height: 42px !important;
  padding: 9px 13px !important;
  font-size: 13px;
  white-space: nowrap;
}

body.auth .nav-item-search {
  order: 20 !important;
  grid-column: 1 / -1;
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 4px !important;
}

body.auth .well2 {
  padding: 22px !important;
}

body.auth .dash-title {
  margin-bottom: 14px !important;
  font-size: clamp(20px, 2vw, 26px) !important;
}

body.auth .inline-service-details {
  display: grid;
  gap: 10px;
  margin: -2px 0 18px;
}

body.auth .inline-service-name {
  display: none !important;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(2, 182, 239, 0.14);
  border-radius: 14px;
  background: #f5fbfe;
  color: #173042;
  font-size: 13px;
  font-weight: 800;
}

body.auth .inline-service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.auth .inline-service-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(180, 207, 220, 0.7);
  border-radius: 14px;
  background: #fff;
}

body.auth .inline-service-metric-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  background: #e7f8fd;
  color: #027da5;
}

body.auth .inline-service-metric strong,
body.auth .inline-service-metric small {
  display: block;
}

body.auth .inline-service-metric strong {
  margin-bottom: 2px;
  color: #667085;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.auth .inline-service-metric small {
  color: #0f172a !important;
  font-size: 13px;
  font-weight: 900;
}

body.auth #service_description {
  position: relative;
  margin-top: 2px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(180, 207, 220, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 8%, rgba(2, 182, 239, 0.12), transparent 9rem),
    linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.055);
}

body.auth #service_description .control-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #173042;
  font-size: 12px;
  font-weight: 950;
}

body.auth #service_description .control-label::before {
  content: "\f15c";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e7f8fd;
  color: #027da5;
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  font-weight: 900;
}

body.auth #service_description .panel-body {
  padding: 15px 16px !important;
  border: 1px solid rgba(180, 207, 220, 0.62) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

body.auth #service_description .panel-body p:last-child,
body.auth #service_description .panel-body ul:last-child,
body.auth #service_description .panel-body ol:last-child {
  margin-bottom: 0;
}

body.auth #service_description .panel-body strong,
body.auth #service_description .panel-body b {
  color: #0f172a;
  font-weight: 950;
}

body.auth #service_description .panel-body ul,
body.auth #service_description .panel-body ol {
  margin-top: 10px;
  padding-left: 20px;
}

body.auth #service_description .panel-body li + li {
  margin-top: 6px;
}

body.auth #service_description .panel-body a {
  color: #027da5;
  font-weight: 900;
}

body.auth #service_description .image-label,
body.auth #service_description .image-loading {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 900;
}

body.auth #service_description .image-label {
  color: #173042;
}

body.auth #service_description .image-label-muted {
  color: #6b8795;
}

body.auth #service_description .image-loading {
  color: #027da5;
}

body.auth #service_description .added-image {
  display: block;
  width: min(240px, 100%);
  margin-top: 10px;
  border: 1px solid rgba(180, 207, 220, 0.72);
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.auth #service_description .added-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.16);
}

body.auth #order-form .help-block:not(:empty),
body.auth #order-form small:not(:empty) {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef8fc;
}

body.auth .neworder-aside > .well {
  display: none !important;
}

body.auth .stats-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
}

body.auth .stats-box {
  min-height: 132px !important;
  min-width: 0;
  display: block !important;
  padding: 18px 20px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 254, 0.95)) !important;
}

body.auth .stats-box-left {
  min-width: 0;
  padding-right: 72px;
  padding-left: 2px;
}

body.auth .stats-box-right {
  position: absolute;
  top: 18px;
  right: 18px;
}

body.auth .stats-box-title {
  margin-bottom: 6px !important;
  font-size: 11px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.auth .stats-box-txt {
  font-size: clamp(20px, 2vw, 28px) !important;
}

body.auth .stats-box button {
  min-height: 36px !important;
  margin-top: 10px !important;
  padding: 8px 14px !important;
  font-size: 12px !important;
}

body.auth .stats-box-action {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #02b6ef, #027da5);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(2, 118, 154, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
}

body.auth .stats-box-action:hover,
body.auth .stats-box-action:focus {
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 16px 28px rgba(2, 118, 154, 0.24);
}

body.auth .stats-box-img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
}

body.auth .neworder-aside {
  min-width: 0;
}

body.auth .whatsapp-bnr {
  min-height: 132px !important;
  padding: 18px !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 45%, rgba(255, 255, 255, 0.18), transparent 10rem),
    linear-gradient(135deg, #25d366, #128c7e) !important;
}

body.auth .whatsapp-bnr .rd-dismiss-option {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(8, 63, 50, 0.34);
  color: #fff;
  box-shadow: 0 10px 18px rgba(9, 62, 49, 0.16);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

body.auth .whatsapp-bnr .rd-dismiss-option:hover,
body.auth .whatsapp-bnr .rd-dismiss-option:focus {
  background: rgba(8, 63, 50, 0.52);
  color: #fff;
  transform: translateY(-1px);
}

body.auth .whatsapp-bnr::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.22), transparent 8rem),
    radial-gradient(circle at 16% 120%, rgba(255, 255, 255, 0.14), transparent 11rem);
  pointer-events: none;
}

body.auth .whatsapp-bnr-title {
  position: relative;
  z-index: 2;
  margin-bottom: 12px !important;
  font-size: clamp(18px, 1.8vw, 24px) !important;
}

body.auth .whatsapp-btn {
  position: relative;
  z-index: 2;
  min-height: 42px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

body.auth .whatsapp-bnr-img {
  right: 10px !important;
  max-width: 58% !important;
  max-height: 235px !important;
  transform-origin: right bottom;
  filter: drop-shadow(0 18px 26px rgba(9, 62, 49, 0.24));
}

body.auth .whatsapp-bnr.is-floating .whatsapp-bnr-img {
  animation: rd-whatsapp-float 3.8s ease-in-out infinite;
}

body.auth .whatsapp-bnr.is-glowing {
  box-shadow:
    0 20px 44px rgba(18, 140, 126, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset !important;
}

@keyframes rd-whatsapp-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.018);
  }
}

.whatsapp-button {
  width: 60px !important;
  height: 60px !important;
  background: #25d366 !important;
}

body.auth .balance-widget {
  background: #00e676 !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
}

body.auth .balance-widget-label,
body.auth .balance-widget .badge,
body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
}

body.auth .balance-widget-icon {
  background: rgba(255, 255, 255, 0.22) !important;
  box-shadow: none !important;
}

body.auth .balance-widget::after {
  background: #fff !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18) !important;
}

@media (max-width: 1199px) {
  body.auth .stats-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  body.auth .neworder-tabs {
    grid-template-columns: repeat(5, max-content) !important;
  }

  body.auth .nav-item-search {
    min-width: 0;
  }

  body.auth .inline-service-metrics {
    grid-template-columns: 1fr;
  }

  body.auth .neworder-tabs-carousel {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 8px;
    margin: 16px 0 18px;
  }

  body.auth .neworder-tabs-carousel .neworder-tabs {
    margin: 0 !important;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
  }

  body.auth .neworder-tabs-carousel .neworder-tabs > li {
    scroll-snap-align: start;
  }

  body.auth .neworder-tabs-arrow {
    width: 38px;
    height: 38px;
    min-height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(180, 207, 220, 0.72);
    border-radius: 12px;
    background: #fff;
    color: #027da5;
    box-shadow: 0 10px 22px rgba(4, 31, 45, 0.08);
  }

  body.auth .neworder-tabs-arrow:disabled {
    opacity: 0.42;
    cursor: default;
  }
}

/* Welcome hero refinement */
body.auth .auth-bnr.auth-bnr-welcome {
  min-height: auto !important;
  margin-bottom: 18px;
  padding: 22px 24px !important;
  border-radius: 22px !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.32), transparent 9rem),
    radial-gradient(circle at 8% 110%, rgba(255, 255, 255, 0.2), transparent 11rem),
    linear-gradient(135deg, #02b6ef 0%, #078db9 100%) !important;
}

body.auth .auth-bnr.auth-bnr-welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 28%, transparent 52%);
  transform: translateX(-110%);
  animation: rd-welcome-shine 5.8s ease-in-out infinite;
}

body.auth .auth-bnr.auth-bnr-welcome::after {
  width: 190px;
  height: 190px;
  right: -74px;
  bottom: -104px;
  border-width: 28px;
  opacity: 0.7;
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-content {
  max-width: 100%;
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-title {
  margin-bottom: 8px !important;
  font-size: clamp(24px, 2.5vw, 34px) !important;
  letter-spacing: -0.03em;
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-txt {
  max-width: 760px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 14px;
  line-height: 1.65;
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-highlight {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-highlight strong {
  color: #fff;
  font-weight: 950;
}

body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-img {
  display: none !important;
}

@keyframes rd-welcome-shine {
  0%, 58% {
    transform: translateX(-110%);
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  body.auth .auth-bnr.auth-bnr-welcome {
    padding: 18px !important;
  }

  body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-title {
    font-size: 24px !important;
  }

  body.auth .auth-bnr.auth-bnr-welcome .auth-bnr-highlight {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Final mobile navbar cleanup
   Compacta o topo autenticado e remove conflitos acumulados das camadas antigas.
========================================================================== */
@media (max-width: 991px) {
  body.auth {
    padding-top: 124px !important;
  }

  body.auth.has-top-banner {
    padding-top: calc(var(--rd-top-banner-height) + 124px) !important;
  }

  body.auth > .navbar.my-nav {
    top: var(--rd-top-banner-height, 0px) !important;
    height: 72px !important;
    min-height: 72px !important;
    overflow: visible !important;
  }

  body.auth > .navbar.my-nav .container-fluid {
    height: 72px !important;
    min-height: 72px !important;
    display: block !important;
    padding: 0 12px !important;
  }

  body.auth > .navbar.my-nav .navbar-header {
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    position: relative;
  }

  body.auth > .navbar.my-nav .navbar-brand {
    position: absolute !important;
    top: 50% !important;
    left: 12px !important;
    width: auto !important;
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin-right: auto;
    align-self: center !important;
    line-height: 0 !important;
    transform: translateY(-50%) !important;
  }

  body.auth > .navbar.my-nav .navbar-brand img {
    width: auto !important;
    max-width: 112px !important;
    max-height: 38px !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left-wrap {
    width: auto !important;
    min-width: 0;
    display: flex !important;
    align-items: center !important;
    margin: 0 0 0 auto !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    width: auto !important;
    max-width: 158px !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li:first-child,
  body.auth > .navbar.my-nav .navbar-header-left > li:not(.dropdown-currencies) {
    display: none !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left > li.dropdown-currencies {
    width: 100% !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies > a.dropdown-toggle,
  body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies > a.balance-widget,
  body.auth .balance-widget {
    width: 100% !important;
    min-height: 36px !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 6px !important;
    padding: 4px 8px !important;
    border-width: 1px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
  }

  body.auth .balance-widget-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 8px !important;
  }

  body.auth .balance-widget-label {
    font-size: 8px !important;
  }

  body.auth .balance-widget .badge,
  body.auth > .navbar.my-nav .navbar-header-left .dropdown-currencies .balance-widget .badge {
    font-size: 13px !important;
  }

  body.auth > .navbar.my-nav .navbar-toggle {
    flex: 0 0 42px;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    display: grid !important;
    place-items: center;
    margin: 0 0 0 8px !important;
    padding: 0 !important;
    border-radius: 13px !important;
  }

  body.auth > .navbar.my-nav #navbar {
    top: calc(var(--rd-top-banner-height, 0px) + 72px) !important;
    max-height: calc(100vh - var(--rd-top-banner-height, 0px) - 72px) !important;
    padding: 12px !important;
    background:
      linear-gradient(180deg, #02b6ef 0%, #0197d0 100%) !important;
  }

  body.auth > .navbar.my-nav .navbar-left-block {
    gap: 8px !important;
    padding-bottom: 0 !important;
  }

  body.auth > .navbar.my-nav .navbar-left-block > li > a {
    min-height: 48px !important;
    border-radius: 14px !important;
  }

  .rd-user-actions {
    display: flex !important;
    top: calc(var(--rd-top-banner-height, 0px) + 82px) !important;
    right: 12px !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    gap: 6px !important;
    padding: 6px !important;
    border: 1px solid rgba(180, 207, 220, 0.58) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 14px 30px rgba(4, 31, 45, 0.12) !important;
    backdrop-filter: blur(12px);
  }

  .rd-user-action,
  .rd-user-action[style] {
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    border-color: rgba(180, 207, 220, 0.55) !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: #057da6 !important;
  }
}

@media (max-width: 520px) {
  body.auth > .navbar.my-nav .navbar-brand img {
    max-width: 104px !important;
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    max-width: 142px !important;
  }
}

@media (max-width: 991px) {
  body.auth > .navbar.my-nav .navbar-header-left-wrap {
    position: absolute !important;
    top: 52% !important;
    right: -14px !important;
    z-index: 4;
    gap: 8px;
    transform: translateY(-50%);
  }

  body.auth > .navbar.my-nav .navbar-header-left {
    flex: 0 1 142px;
    max-width: min(142px, calc(100vw - 188px)) !important;
  }

  body.auth > .navbar.my-nav .navbar-toggle {
    position: relative;
    z-index: 5;
    flex: 0 0 42px;
  }

  body.auth > .navbar.my-nav .navbar-brand {
    max-width: calc(100vw - 210px) !important;
  }
}

@media (max-width: 380px) {
  body.auth > .navbar.my-nav .navbar-header-left {
    max-width: 108px !important;
  }

  body.auth > .navbar.my-nav .navbar-brand {
    max-width: calc(100vw - 176px) !important;
  }
}

/* ==========================================================================
   Add funds page polish
========================================================================== */
body.auth .addfunds-page {
  max-width: 1560px;
  padding-top: 34px;
}

body.auth .addfunds-page > .container.mt-5 {
  display: none;
}

body.auth .addfunds-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 22px;
  align-items: start;
  margin: 0 0 22px;
}

body.auth .addfunds-grid::before,
body.auth .addfunds-grid::after,
body.auth .addfunds-history-row::before,
body.auth .addfunds-history-row::after {
  display: none;
}

body.auth .addfunds-grid > [class*="col-"],
body.auth .addfunds-history-row > [class*="col-"] {
  width: auto;
  float: none;
  padding: 0;
}

body.auth .addfunds-payment > .well,
body.auth .addfunds-help .addfunds-faq-panel,
body.auth .addfunds-history-row .well {
  border: 1px solid rgba(180, 207, 220, 0.62) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 252, 254, 0.94)) !important;
  box-shadow: 0 22px 58px rgba(4, 31, 45, 0.09) !important;
}

body.auth .addfunds-payment > .well {
  padding: 22px !important;
}

body.auth .addfunds-page .auth-bnr {
  min-height: 190px !important;
  margin-bottom: 18px;
  padding: 28px !important;
  border-radius: 20px !important;
}

body.auth .addfunds-page .well2 {
  padding: 24px !important;
  border-radius: 18px !important;
}

body.auth .addfunds-page #sendPayment {
  width: 100%;
  min-height: 56px;
  border-radius: 16px !important;
  font-size: 15px;
}

body.auth .addfunds-faq-panel {
  position: sticky;
  top: calc(var(--rd-top-banner-height, 0px) + 82px);
  padding: 20px;
  overflow: hidden;
}

body.auth .addfunds-faq-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #00e676, #02b6ef, #078db9);
}

body.auth .addfunds-faq-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

body.auth .addfunds-faq-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #00e676, #02b6ef);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 14px 26px rgba(2, 182, 239, 0.2);
}

body.auth .addfunds-faq-head h4 {
  margin: 0 0 3px;
  color: #0f172a;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 950;
  letter-spacing: -0.03em;
}

body.auth .addfunds-faq-head p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  font-weight: 750;
}

body.auth .addfunds-faq {
  display: grid;
  gap: 10px;
}

body.auth .addfunds-faq .card {
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(180, 207, 220, 0.7) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.045) !important;
}

body.auth .addfunds-faq .card-header {
  padding: 0;
  border: 0;
  background: transparent;
}

body.auth .addfunds-faq .btn-link {
  position: relative;
  width: 100%;
  min-height: 58px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
  gap: 14px;
  padding: 15px 52px 15px 16px !important;
  border: 0 !important;
  background: #fff !important;
  color: #173042 !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
  text-align: left;
  text-decoration: none !important;
  white-space: normal;
}

body.auth .addfunds-faq .btn-link:hover,
body.auth .addfunds-faq .btn-link:focus {
  background: #f5fbfe !important;
  color: #027da5 !important;
  transform: none;
}

body.auth .addfunds-faq .btn-link span {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e7f8fd;
  transform: translateY(-50%);
}

body.auth .addfunds-faq .btn-link span::before,
body.auth .addfunds-faq .btn-link span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #027da5;
  transition: transform 0.2s ease;
}

body.auth .addfunds-faq .btn-link span::after {
  transform: rotate(90deg);
}

body.auth .addfunds-faq .btn-link[aria-expanded="true"] {
  color: #027da5 !important;
}

body.auth .addfunds-faq .btn-link[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

body.auth .addfunds-faq .card-body {
  padding: 0 16px 16px !important;
  color: #4b5f70;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

body.auth .addfunds-history-row {
  margin: 0;
}

body.auth .addfunds-history-row .well {
  padding: 22px !important;
}

body.auth .addfunds-history-row .table-responsive {
  border: 1px solid rgba(180, 207, 220, 0.62);
  border-radius: 16px;
  background: #fff;
}

body.auth .addfunds-history-row .table > thead > tr > th {
  background: #eef8fc;
}

body.auth .addfunds-history-row .table > tbody > tr > td:last-child {
  color: #027da5;
  font-weight: 950;
}

@media (max-width: 1199px) {
  body.auth .addfunds-grid {
    grid-template-columns: 1fr;
  }

  body.auth .addfunds-faq-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  body.auth .addfunds-page {
    padding-top: 8px;
  }

  body.auth .addfunds-grid {
    gap: 14px;
    margin-bottom: 14px;
  }

  body.auth .addfunds-payment > .well,
  body.auth .addfunds-help .addfunds-faq-panel,
  body.auth .addfunds-history-row .well {
    border-radius: 18px !important;
  }

  body.auth .addfunds-payment > .well,
  body.auth .addfunds-faq-panel,
  body.auth .addfunds-history-row .well {
    padding: 16px !important;
  }

  body.auth .addfunds-page .auth-bnr {
    display: none !important;
  }

  body.auth .addfunds-page .well2 {
    padding: 14px !important;
  }

  body.auth .addfunds-page .dash-title {
    margin-bottom: 10px !important;
    font-size: 20px !important;
  }

  body.auth .addfunds-page .form-group {
    margin-bottom: 10px !important;
  }

  body.auth .addfunds-page label,
  body.auth .addfunds-page .control-label {
    margin-bottom: 5px;
    font-size: 11px;
  }

  body.auth .addfunds-page .form-control,
  body.auth .addfunds-page select.form-control {
    min-height: 44px !important;
    height: 44px !important;
    font-size: 15px !important;
  }

  body.auth .addfunds-page #sendPayment {
    min-height: 46px;
    margin-top: 2px;
  }

  body.auth .addfunds-faq-head {
    align-items: flex-start;
  }

  body.auth .addfunds-faq-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  body.auth .addfunds-faq .btn-link {
    min-height: 56px !important;
    padding: 14px 48px 14px 14px !important;
    font-size: 13px;
  }

  body.auth .addfunds-history-row .table,
  body.auth .addfunds-history-row .table thead,
  body.auth .addfunds-history-row .table tbody,
  body.auth .addfunds-history-row .table tr,
  body.auth .addfunds-history-row .table th,
  body.auth .addfunds-history-row .table td {
    display: block;
    width: 100%;
  }

  body.auth .addfunds-history-row .table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.auth .addfunds-history-row .table tbody tr {
    margin: 10px;
    overflow: hidden;
    border: 1px solid rgba(180, 207, 220, 0.7);
    border-radius: 14px;
    background: #fff;
  }

  body.auth .addfunds-history-row .table > tbody > tr > td {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 10px;
    min-height: 42px;
    padding: 11px 12px !important;
    text-align: right;
    overflow-wrap: anywhere;
  }

  body.auth .addfunds-history-row .table > tbody > tr > td::before {
    color: #667085;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
  }

  body.auth .addfunds-history-row .table > tbody > tr > td:nth-child(1)::before {
    content: "ID";
  }

  body.auth .addfunds-history-row .table > tbody > tr > td:nth-child(2)::before {
    content: "Data";
  }

  body.auth .addfunds-history-row .table > tbody > tr > td:nth-child(3)::before {
    content: "Metodo";
  }

  body.auth .addfunds-history-row .table > tbody > tr > td:nth-child(4)::before {
    content: "Valor";
  }
}

/* ==========================================================================
   Orders page polish
========================================================================== */
body.auth .order-page > .container-fluid {
  max-width: 1560px;
  padding-top: 34px;
}

body.auth .order-page .order-bnr-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  margin: 0 0 18px;
}

body.auth .order-page .order-bnr-row::before,
body.auth .order-page .order-bnr-row::after {
  display: none;
}

body.auth .order-page .order-bnr-row > [class*="col-"] {
  width: auto;
  float: none;
  padding: 0;
}

body.auth .order-page .order-bnr,
body.auth .order-page .order-bnr2,
body.auth .order-page .search-frm,
body.auth .order-page .order-history-box,
body.auth .order-page .tabela-container {
  border: 1px solid rgba(180, 207, 220, 0.62) !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 58px rgba(4, 31, 45, 0.09) !important;
}

body.auth .order-page .order-bnr {
  min-height: 172px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.35), transparent 11rem),
    radial-gradient(circle at 8% 110%, rgba(255, 255, 255, 0.18), transparent 12rem),
    linear-gradient(135deg, #02b6ef, #078db9) !important;
}

body.auth .order-page .order-bnr-title {
  max-width: 720px;
  margin: 0 0 10px;
  color: #fff !important;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

body.auth .order-page .order-bnr-txt {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 15px;
  font-weight: 700;
}

body.auth .order-page .order-bnr2 {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(2, 182, 239, 0.14), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 254, 0.95)) !important;
}

body.auth .order-page .order-bnr2-titlewrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.auth .order-page .order-bnr2-title {
  margin: 0 0 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.auth .order-page .order-bnr2-orders {
  margin: 0;
  color: #027da5;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 1;
}

body.auth .order-page .order-bnr2-titlewrap-right {
  width: 78px;
  height: 78px;
  display: grid;
  flex: 0 0 78px;
  place-items: center;
  border-radius: 20px;
  background: #e7f8fd;
}

body.auth .order-page .order-bnr2-titlewrap-right img {
  max-width: 66px;
  max-height: 66px;
  object-fit: contain;
}

body.auth .order-page .order-bnr-btn {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 14px !important;
}

body.auth .order-page .search-frm {
  margin-bottom: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
}

body.auth .order-page #history-search .input-group {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

body.auth .order-page #history-search .input-group-btn {
  display: flex;
  gap: 8px;
  width: auto;
}

body.auth .order-page #history-search .form-control {
  height: 50px;
  border-radius: 16px !important;
}

body.auth .order-page #history-search .search-btn,
body.auth .order-page #history-search .dropdown-toggle {
  width: auto;
  min-width: 50px;
  border-radius: 16px !important;
}

body.auth .order-page #history-search .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 210px;
  padding: 8px;
  border-radius: 16px;
}

body.auth .order-page #history-search .dropdown-menu > a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #173042 !important;
  font-weight: 850;
}

body.auth .order-page #history-search .dropdown-menu > a:hover,
body.auth .order-page #history-search .dropdown-menu > a:focus {
  background: #e7f8fd;
  color: #027da5 !important;
}

body.auth .order-page .order-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

body.auth .order-page .order-nav::-webkit-scrollbar {
  display: none;
}

body.auth .order-page .order-nav > li {
  flex: 0 0 auto;
}

body.auth .order-page .order-nav > li > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(180, 207, 220, 0.7);
  border-radius: 999px !important;
  background: #fff;
  color: #406174;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.045);
  white-space: nowrap;
}

body.auth .order-page .order-nav > li.active > a,
body.auth .order-page .order-nav > li > a:hover,
body.auth .order-page .order-nav > li > a:focus {
  border-color: rgba(2, 182, 239, 0.55) !important;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff !important;
}

body.auth .order-page .order-nav-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

body.auth .order-page #toggleView {
  min-height: 44px;
  margin-bottom: 12px;
  border-radius: 14px !important;
}

body.auth .order-page .order-history {
  display: grid;
  gap: 14px;
}

body.auth .order-page [hidden] {
  display: none !important;
}

body.auth .order-page .order-history-box {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(2, 182, 239, 0.1), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 254, 0.94)) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.auth .order-page .order-history-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #02b6ef, #00e676);
  opacity: 0.9;
}

body.auth .order-page .order-history-box.is-visible {
  animation: none !important;
}

body.auth .order-page .order-history-box:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 182, 239, 0.38) !important;
  box-shadow: 0 26px 62px rgba(4, 31, 45, 0.13) !important;
}

@keyframes rd-order-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.auth .order-page .order-history-ul1,
body.auth .order-page .order-history-ul2,
body.auth .order-page .order-desc {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.auth .order-page .order-history-ul1 {
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr) minmax(0, 0.9fr) auto;
  align-items: center;
}

body.auth .order-page .order-history-ul2 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.auth .order-page .order-history-ul2 > li {
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(180, 207, 220, 0.62);
  border-radius: 14px;
  background: #fff;
}

body.auth .order-page .order-txt {
  margin: 0;
  color: #173042;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

body.auth .order-page .order-txt-label {
  display: block;
  margin-bottom: 2px;
  color: #667085;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.auth .order-page .order-id-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}

body.auth .order-page .order-id-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 13px;
  background: #e7f8fd;
  color: #027da5;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

body.auth .order-page .order-id-icon:hover {
  transform: scale(1.05);
  background: #d7f3fb;
}

body.auth .order-page .order-id-icon.is-copied {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

body.auth .order-page .order-ser-name,
body.auth .order-page .order-link {
  min-width: 0;
}

body.auth .order-page .order-ser-name b,
body.auth .order-page .order-link a {
  overflow-wrap: anywhere;
}

body.auth .order-page .order-status > span,
body.auth .order-page .order-status span[class] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef8fc;
  color: #027da5;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

body.auth .order-page .order-status .Concluido,
body.auth .order-page .order-status .Concluído,
body.auth .order-page .order-status .Completed,
body.auth .order-page .order-status .completed {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

body.auth .order-page .order-status .Pendente,
body.auth .order-page .order-status .Pending,
body.auth .order-page .order-status .pending {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
}

body.auth .order-page .order-status .Processando,
body.auth .order-page .order-status .Processing,
body.auth .order-page .order-status .processing,
body.auth .order-page .order-status .progresso,
body.auth .order-page .order-status .progress {
  background: rgba(2, 182, 239, 0.13);
  color: #027da5;
}

body.auth .order-page .order-status .Cancelado,
body.auth .order-page .order-status .Canceled,
body.auth .order-page .order-status .canceled {
  background: rgba(239, 68, 68, 0.12);
  color: #b42318;
}

body.auth .order-page .order-history-box > ul[style] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 2px !important;
}

body.auth .order-page .order-track-actions {
  display: inline-flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

body.auth .order-page .refil-interno {
  display: none !important;
  margin-left: 8px !important;
}

body.auth .order-page .order-history-box > ul[style] a,
body.auth .order-page .order-history-box > ul[style] button,
body.auth .order-page .order-actions a,
body.auth .order-page .order-actions button {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 9px 13px !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 20px rgba(4, 31, 45, 0.08);
  font-size: 12px !important;
  font-weight: 900;
}

body.auth .order-page .rd-order-progress {
  margin-top: 2px;
  padding: 12px;
  border: 1px solid rgba(180, 207, 220, 0.62);
  border-radius: 15px;
  background: #fff;
}

body.auth .order-page .rd-order-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #173042;
  font-size: 12px;
  font-weight: 950;
}

body.auth .order-page .rd-order-progress-pct {
  color: #027da5;
}

body.auth .order-page .rd-order-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eef3;
}

body.auth .order-page .rd-order-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #02b6ef, #00e676);
  transition: width 0.7s ease;
}

body.auth .order-page .rd-order-progress-meta {
  margin-top: 7px;
  color: #667085;
  font-size: 11px;
  font-weight: 750;
}

body.auth .order-page .tabela-container {
  padding: 18px;
  background: #fff;
  overflow-x: auto;
}

body.auth .order-page .tabela-container h4 {
  margin: 0 0 14px !important;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

body.auth .order-page #ordersTable {
  border: 0 !important;
  border-radius: 16px !important;
  overflow: hidden;
}

body.auth .order-page #ordersTable th {
  background: #eef8fc !important;
  color: #526173 !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

body.auth .order-page #ordersTable td {
  vertical-align: middle;
}

body.auth .order-page .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}

body.auth .order-page .pagination > li > a,
body.auth .order-page .pagination > li > span {
  border-radius: 12px !important;
}

@media (max-width: 1199px) {
  body.auth .order-page .order-bnr-row {
    grid-template-columns: 1fr;
  }

  body.auth .order-page .order-history-ul1 {
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
  }

  body.auth .order-page .order-status {
    justify-self: start;
  }

  body.auth .order-page .order-history-ul2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.auth .order-page > .container-fluid {
    padding-top: 18px;
  }

  body.auth .order-page .order-bnr-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  body.auth .order-page .order-bnr,
  body.auth .order-page .order-bnr2,
  body.auth .order-page .search-frm,
  body.auth .order-page .order-history-box,
  body.auth .order-page .tabela-container {
    border-radius: 18px !important;
  }

  body.auth .order-page .order-bnr,
  body.auth .order-page .order-bnr2 {
    min-height: auto;
    padding: 20px !important;
  }

  body.auth .order-page .order-bnr-title {
    font-size: 25px;
  }

  body.auth .order-page .order-bnr2-titlewrap-right {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 16px;
  }

  body.auth .order-page .order-bnr2-titlewrap-right img {
    max-width: 48px;
    max-height: 48px;
  }

  body.auth .order-page .order-bnr-btn {
    width: 100%;
  }

  body.auth .order-page #history-search .input-group {
    grid-template-columns: 1fr;
  }

  body.auth .order-page #history-search .input-group-btn {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  body.auth .order-page #history-search .dropdown,
  body.auth .order-page #history-search .dropdown-toggle {
    width: 100%;
  }

  body.auth .order-page .order-nav {
    margin-right: -14px;
    padding-right: 14px;
  }

  body.auth .order-page #toggleView {
    width: 100%;
  }

  body.auth .order-page .order-history {
    gap: 12px;
  }

  body.auth .order-page .order-history-box {
    padding: 16px !important;
  }

  body.auth .order-page .order-history-ul1,
  body.auth .order-page .order-history-ul2 {
    grid-template-columns: 1fr;
  }

  body.auth .order-page .order-history-ul1 > li,
  body.auth .order-page .order-history-ul2 > li {
    min-width: 0;
  }

  body.auth .order-page .order-history-ul1 > .order-id,
  body.auth .order-page .order-history-ul1 > .order-status {
    align-self: start;
  }

  body.auth .order-page .order-history-ul1 > .order-id {
    order: 1;
  }

  body.auth .order-page .order-history-ul1 > .order-status {
    order: 2;
  }

  body.auth .order-page .order-history-ul1 > .order-ser-name {
    order: 3;
  }

  body.auth .order-page .order-history-ul1 > .order-link {
    order: 4;
  }

  body.auth .order-page .order-history-ul2 > li {
    min-height: auto;
  }

  body.auth .order-page .order-history-box > ul[style] {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  body.auth .order-page .order-history-box > ul[style] li,
  body.auth .order-page .order-history-box > ul[style] a,
  body.auth .order-page .order-history-box > ul[style] button {
    width: 100% !important;
  }

  body.auth .order-page .order-track-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100% !important;
  }

  body.auth .order-page .refil-interno {
    margin-left: 0 !important;
    margin-top: 8px !important;
  }

  body.auth .order-page .order-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
  }

  body.auth .order-page .rd-order-progress {
    padding: 10px;
  }

  body.auth .order-page .tabela-container {
    padding: 12px;
  }

  body.auth .order-page #ordersTable,
  body.auth .order-page #ordersTable thead,
  body.auth .order-page #ordersTable tbody,
  body.auth .order-page #ordersTable tr,
  body.auth .order-page #ordersTable th,
  body.auth .order-page #ordersTable td {
    display: block;
    width: 100%;
  }

  body.auth .order-page #ordersTable thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.auth .order-page #ordersTable tbody tr {
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(180, 207, 220, 0.7);
    border-radius: 14px;
    background: #fff;
  }

  body.auth .order-page #ordersTable td {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
    min-height: 42px;
    padding: 11px 12px !important;
    text-align: right;
    overflow-wrap: anywhere;
  }

  body.auth .order-page #ordersTable td::before {
    color: #667085;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
  }

  body.auth .order-page #ordersTable td:nth-child(1)::before {
    content: "ID";
  }

  body.auth .order-page #ordersTable td:nth-child(2)::before {
    content: "Data";
  }

  body.auth .order-page #ordersTable td:nth-child(3)::before {
    content: "Valor";
  }

  body.auth .order-page #ordersTable td:nth-child(4)::before {
    content: "Pedido";
  }
}

@media (max-width: 430px) {
  body.auth .order-page .order-history-box > ul[style] {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PIX QR modal layer fix
========================================================================== */
body.auth.modal-open {
  overflow: hidden !important;
}

body.auth #qr-modal.modal,
body.auth #qr-modal.modal.fade.in,
body.auth #qr-modal[style*="display: block"] {
  z-index: 10000050 !important;
  padding: 12px !important;
  background: rgba(15, 23, 42, 0.62);
}

body.auth #qr-modal + .modal-backdrop,
body.auth.modal-open .modal-backdrop {
  z-index: 10000040 !important;
}

body.auth #qr-modal .modal-dialog {
  width: min(520px, calc(100vw - 24px));
  margin: 18px auto !important;
  transform: none !important;
}

body.auth #qr-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(180, 207, 220, 0.7) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28) !important;
}

body.auth #qr-modal .modal-body {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 18px !important;
}

body.auth #qr-modal .close {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: -6px -6px 8px auto;
  border-radius: 12px;
  background: #eef8fc;
  color: #027da5;
  opacity: 1;
  text-shadow: none;
}

body.auth #qr-code-image {
  width: min(300px, 82vw);
  max-height: 42vh;
  object-fit: contain;
}

body.auth #qr-code-value {
  min-height: 86px !important;
  max-height: 120px;
  font-size: 12px !important;
  line-height: 1.45;
}

body.auth #qr-code-copy-button {
  width: 100%;
  min-height: 48px;
}

@media (max-width: 767px) {
  body.auth #qr-modal.modal,
  body.auth #qr-modal.modal.fade.in,
  body.auth #qr-modal[style*="display: block"] {
    padding: 8px !important;
  }

  body.auth #qr-modal .modal-dialog {
    width: calc(100vw - 16px);
    margin: 8px auto !important;
  }

  body.auth #qr-modal .modal-body {
    max-height: calc(100vh - 16px);
    padding: 14px !important;
  }

body.auth #qr-code-image {
    width: min(260px, 78vw);
    max-height: 36vh;
  }
}

/* ==========================================================================
   Guest auth pages refresh
   Login and signup pages with a premium, responsive first impression.
========================================================================== */
body.guest {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(2, 182, 239, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #f7fcff 0%, #eef8fc 52%, #ffffff 100%);
  color: #0f172a;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

body.guest::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(2, 182, 239, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(0, 230, 118, 0.1), transparent 30%);
}

body.guest > .navbar.navbar-default,
body.guest > .navbar.navbar-inverse {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 76px;
  margin-top: 0 !important;
  border: 0;
  border-bottom: 1px solid rgba(180, 207, 220, 0.58);
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 36px rgba(4, 31, 45, 0.08);
  backdrop-filter: blur(16px);
}

body.guest > .navbar .container {
  max-width: 1180px;
}

body.guest > .navbar .d-flex {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.guest > .navbar .navbar-brand {
  height: 76px;
  padding: 10px 0;
}

body.guest > .navbar .navbar-brand img {
  max-width: 154px;
  max-height: 52px;
  object-fit: contain;
}

body.guest > .navbar .navbar-nav > li > a {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  margin: 0 2px;
  padding: 10px 13px !important;
  border-radius: 999px;
  color: #334155 !important;
  font-size: 14px;
  font-weight: 850;
}

body.guest > .navbar .navbar-nav > li.active > a,
body.guest > .navbar .navbar-nav > li > a:hover,
body.guest > .navbar .navbar-nav > li > a:focus {
  background: #e7f8fd !important;
  color: #027da5 !important;
}

body.guest .action-links ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.guest .action-links .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(2, 118, 154, 0.18);
}

body.guest .main-banner {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 6vw, 82px) 0 clamp(42px, 7vw, 96px);
  overflow: hidden;
}

body.guest .main-banner .container {
  width: min(1180px, calc(100% - 28px));
}

body.guest .main-banner .row {
  display: flex;
  align-items: center;
  gap: 42px;
}

body.guest .main-banner .row::before,
body.guest .main-banner .row::after,
body.guest .signup .flex-wrapper::before,
body.guest .signup .flex-wrapper::after {
  display: none;
}

body.guest .main-banner .col-md-6 {
  flex: 1 1 0;
  width: auto;
  float: none;
}

body.guest .main-banner .sub-title {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(2, 182, 239, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #027da5;
  box-shadow: 0 12px 24px rgba(4, 31, 45, 0.06);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.guest .main-banner .sub-title img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

body.guest .main-banner h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #0f172a;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

body.guest .main-banner p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #4b5f70;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.7;
}

body.guest #loginForm,
body.guest .signup__left > div {
  position: relative;
  max-width: 520px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(180, 207, 220, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 254, 0.94));
  box-shadow: 0 28px 80px rgba(4, 31, 45, 0.12);
}

body.guest #loginForm::before,
body.guest .signup__left > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, #02b6ef, #00e676, #078db9);
}

body.guest #loginForm .form-group,
body.guest .signup .form-group {
  position: relative;
  margin-bottom: 15px;
}

body.guest #loginForm .input-icon,
body.guest .signup .input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff;
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(2, 118, 154, 0.18);
}

body.guest #loginForm .input-icon i,
body.guest .signup .input-icon i {
  color: inherit;
}

body.guest #loginForm .form-control,
body.guest .signup .form-control {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px 12px 62px;
  border: 1px solid rgba(180, 207, 220, 0.86) !important;
  border-radius: 17px !important;
  background: #f8fcfe !important;
  color: #0f172a;
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 800;
}

body.guest #loginForm .form-control:focus,
body.guest .signup .form-control:focus {
  border-color: #02b6ef !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(2, 182, 239, 0.13) !important;
}

body.guest #loginForm .show-pw {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 3;
  transform: translateY(-50%);
}

body.guest .reset-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin: 6px 0 18px;
  list-style: none;
}

body.guest .reset-wrap label,
body.guest .reset-wrap a,
body.guest .signup .checkbox label,
body.guest .signup .pull-right-middle {
  color: #526173;
  font-size: 13px;
  font-weight: 800;
}

body.guest .reset-wrap a,
body.guest .signup a {
  color: #027da5;
}

body.guest .inline-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

body.guest .inline-buttons .btn,
body.guest .signup .btn-primary {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0 !important;
  border-radius: 17px !important;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff !important;
  box-shadow: 0 18px 32px rgba(2, 118, 154, 0.22);
  font-size: 15px;
  font-weight: 950;
}

body.guest .inline-buttons .btn:last-child {
  background: linear-gradient(135deg, #00e676, #02b6ef) !important;
}

body.guest .inline-buttons .btn a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff !important;
  text-decoration: none !important;
}

body.guest .main-banner__image {
  position: relative;
  text-align: center;
}

body.guest .main-banner__image::before {
  content: "";
  position: absolute;
  inset: 9% 7% 5% 16%;
  z-index: -1;
  border: 1px solid rgba(2, 182, 239, 0.18);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(2, 182, 239, 0.12), rgba(0, 230, 118, 0.08));
  transform: rotate(-3deg);
}

body.guest .main-banner__image img {
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(4, 31, 45, 0.18));
}

body.guest .social-sec,
body.guest .order-sec,
body.guest .smm-panels-container-custom {
  position: relative;
  padding: 54px 0;
}

body.guest .social-sec h3,
body.guest .smm-panels-main-title {
  color: #0f172a;
  font-weight: 950;
  letter-spacing: 0;
}

body.guest .social-sec ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

body.guest .social-sec li {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 207, 220, 0.66);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(4, 31, 45, 0.07);
}

body.guest .social-sec img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

body.guest .signup {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0;
}

body.guest .signup .container {
  width: min(1120px, calc(100% - 28px));
}

body.guest .signup .flex-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

body.guest .signup__left,
body.guest .signup__right {
  min-width: 0;
}

body.guest .signup__left > div {
  max-width: none;
  height: 100%;
}

body.guest .signup__left h2 {
  margin: 0 0 22px;
  color: #0f172a;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
}

body.guest .signup .icon-group {
  position: relative;
}

body.guest .signup .input-icon {
  left: 12px;
  right: auto;
}

body.guest .signup__right--content {
  position: relative;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff;
  box-shadow: 0 28px 80px rgba(2, 118, 154, 0.22);
}

body.guest .signup__right--content::after {
  content: "";
  position: absolute;
  right: -84px;
  bottom: -112px;
  width: 250px;
  height: 250px;
  border: 34px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

body.guest .signup__right .icons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.guest .signup__right .icons img {
  width: 48px;
  height: 48px;
  padding: 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  object-fit: contain;
}

body.guest .signup__right h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 22px 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

body.guest .signup__right--content > img {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  align-self: center;
  filter: drop-shadow(0 24px 34px rgba(0, 49, 70, 0.24));
}

body.guest .footer {
  margin-top: 0;
  border-top: 1px solid rgba(180, 207, 220, 0.56);
  background: #fff;
}

@media (max-width: 991px) {
  body.guest > .navbar .d-flex {
    gap: 10px;
  }

  body.guest > .navbar #navbar {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 12px 14px 18px;
    border-top: 1px solid rgba(180, 207, 220, 0.58);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(4, 31, 45, 0.1);
  }

  body.guest > .navbar .navbar-nav {
    margin: 0;
  }

  body.guest > .navbar .navbar-nav > li > a {
    width: 100%;
    margin: 4px 0;
  }

  body.guest .action-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  body.guest .action-links .btn span {
    display: none;
  }

  body.guest .main-banner .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body.guest .main-banner .col-md-6 {
    width: 100%;
  }

  body.guest #loginForm,
  body.guest .signup__left > div {
    max-width: none;
  }

  body.guest .main-banner__image {
    order: -1;
  }

  body.guest .main-banner__image img {
    width: min(360px, 78vw);
  }

  body.guest .signup .flex-wrapper {
    grid-template-columns: 1fr;
  }

  body.guest .signup__right--content {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  body.guest > .navbar .navbar-brand img {
    max-width: 118px;
  }

  body.guest .main-banner {
    min-height: auto;
    padding-top: 26px;
  }

  body.guest .main-banner__image {
    display: none;
  }

  body.guest .main-banner h1 {
    font-size: 34px;
  }

  body.guest #loginForm,
  body.guest .signup__left > div {
    padding: 20px;
    border-radius: 22px;
  }

  body.guest .inline-buttons {
    grid-template-columns: 1fr;
  }

  body.guest .reset-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  body.guest .signup {
    padding-top: 24px;
  }

  body.guest .signup__left h2 {
    font-size: 28px;
  }

  body.guest .signup .row.align-items-center {
    display: grid;
    gap: 12px;
  }

  body.guest .signup .row.align-items-center > [class*="col-"] {
    width: 100%;
  }

  body.guest .signup .pull-right {
    float: none !important;
    display: block;
    text-align: center;
  }

  body.guest .signup__right--content {
    padding: 22px;
    border-radius: 22px;
  }

  body.guest .signup__right h3 {
    font-size: 25px;
  }

  body.guest .social-sec,
  body.guest .order-sec,
  body.guest .smm-panels-container-custom {
    padding: 34px 0;
  }
}

/* ==========================================================================
   Login page rebuild
   Complete visual reset for the visitor login experience.
========================================================================== */
body.guest:has(.rd-login-page) {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 230, 118, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 8%, rgba(2, 182, 239, 0.22), transparent 28rem),
    linear-gradient(135deg, #f7fcff 0%, #eaf8fd 46%, #ffffff 100%);
}

body.guest:has(.rd-login-page) > .navbar.navbar-default,
body.guest:has(.rd-login-page) > .navbar.navbar-inverse {
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 18px 50px rgba(4, 31, 45, 0.08);
}

body.guest .rd-login-page {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(26px, 5vw, 72px) 18px;
  overflow: hidden;
}

body.guest .rd-login-page > .container {
  width: min(1180px, 100%);
  max-width: 1180px;
  padding: 0;
}

body.guest .rd-login-page .row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin: 0;
}

body.guest .rd-login-page .row::before,
body.guest .rd-login-page .row::after {
  display: none;
}

body.guest .rd-login-page .col-md-6 {
  width: auto;
  min-width: 0;
  float: none;
  padding: 0;
}

body.guest .rd-login-page .col-md-6:first-child {
  display: flex;
  flex-direction: column;
}

body.guest .rd-login-page .sub-title {
  order: 1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid rgba(2, 182, 239, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #027da5;
  box-shadow: 0 14px 30px rgba(4, 31, 45, 0.07);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.guest .rd-login-page .sub-title img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

body.guest .rd-login-page h1 {
  order: 2;
  max-width: 700px;
  margin: 0;
  color: #07111f;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

body.guest .rd-login-page h1::after {
  content: "Controle pedidos, saldo e crescimento em um ambiente feito para vender mais.";
  display: block;
  max-width: 580px;
  margin-top: 20px;
  color: #4b5f70;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 750;
  line-height: 1.7;
}

body.guest .rd-login-page h1 + p {
  display: none;
}

body.guest .rd-login-page .col-md-6:first-child::after {
  content: "Entrega rapida | Pix simples | API pronta";
  order: 3;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 10px 15px;
  border: 1px solid rgba(180, 207, 220, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #173042;
  box-shadow: 0 16px 36px rgba(4, 31, 45, 0.08);
  font-size: 13px;
  font-weight: 900;
}

body.guest .rd-login-page #loginForm {
  order: 4;
  width: min(460px, 100%);
  margin-top: 30px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(180, 207, 220, 0.74);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 254, 0.94));
  box-shadow:
    0 34px 90px rgba(4, 31, 45, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

body.guest .rd-login-page #loginForm::before {
  content: "Acessar conta";
  display: block;
  margin-bottom: 4px;
  color: #07111f;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

body.guest .rd-login-page #loginForm::after {
  content: "Use seus dados para continuar.";
  display: block;
  position: absolute;
  top: 61px;
  left: clamp(22px, 3vw, 32px);
  color: #6b8795;
  font-size: 13px;
  font-weight: 750;
}

body.guest .rd-login-page #loginForm .alert {
  margin-top: 34px;
  margin-bottom: 14px;
}

body.guest .rd-login-page #loginForm .form-group:first-of-type {
  margin-top: 46px;
}

body.guest .rd-login-page #loginForm .form-group {
  position: relative;
  margin-bottom: 15px;
}

body.guest .rd-login-page #loginForm .input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff;
  transform: translateY(-50%);
  box-shadow: 0 12px 22px rgba(2, 118, 154, 0.2);
}

body.guest .rd-login-page #loginForm .form-control {
  width: 100%;
  min-height: 58px;
  padding: 13px 48px 13px 62px;
  border: 1px solid rgba(180, 207, 220, 0.86) !important;
  border-radius: 18px !important;
  background: #f8fcfe !important;
  color: #0f172a;
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 850;
}

body.guest .rd-login-page #loginForm .form-control:focus {
  border-color: #02b6ef !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(2, 182, 239, 0.14) !important;
}

body.guest .rd-login-page #loginForm .show-pw {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 4;
  transform: translateY(-50%);
}

body.guest .rd-login-page .reset-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin: 4px 0 18px;
  list-style: none;
}

body.guest .rd-login-page .reset-wrap li,
body.guest .rd-login-page .reset-wrap .checkbox {
  margin: 0;
}

body.guest .rd-login-page .reset-wrap label,
body.guest .rd-login-page .reset-wrap a {
  color: #526173;
  font-size: 13px;
  font-weight: 850;
}

body.guest .rd-login-page .reset-wrap a {
  color: #027da5;
}

body.guest .rd-login-page .inline-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.guest .rd-login-page .inline-buttons .btn {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(2, 118, 154, 0.24);
  font-size: 15px;
  font-weight: 950;
}

body.guest .rd-login-page .inline-buttons .btn:last-child {
  min-height: 48px;
  background: #eef8fc !important;
  color: #027da5 !important;
  box-shadow: none;
}

body.guest .rd-login-page .inline-buttons .btn:last-child a {
  width: 100%;
  color: #027da5 !important;
  text-decoration: none !important;
}

body.guest .rd-login-page .main-banner__image {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 207, 220, 0.56);
  border-radius: 36px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 12rem),
    linear-gradient(145deg, #02b6ef, #057da6);
  box-shadow: 0 34px 90px rgba(2, 118, 154, 0.22);
  overflow: hidden;
}

body.guest .rd-login-page .main-banner__image::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
}

body.guest .rd-login-page .main-banner__image::after {
  content: "Novo pedido\a Instagram - Seguidores\a Status: Processando";
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(330px, calc(100% - 68px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 24px 46px rgba(0, 49, 70, 0.18);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.75;
  white-space: pre-line;
}

body.guest .rd-login-page .main-banner__image img {
  position: relative;
  z-index: 1;
  width: min(470px, 86%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 46px rgba(0, 49, 70, 0.3));
}

body.guest .rd-login-page ~ .social-sec,
body.guest .rd-login-page ~ .podcast-sec,
body.guest .rd-login-page ~ .order-sec,
body.guest .rd-login-page ~ .smm-panels-container-custom,
body.guest .rd-login-page ~ .footer-wrapper {
  display: block !important;
}

body.guest:has(.rd-login-page) .footer {
  display: block !important;
}

@media (max-width: 1100px) {
  body.guest .rd-login-page .row {
    grid-template-columns: 1fr;
  }

  body.guest .rd-login-page #loginForm {
    width: 100%;
    max-width: 560px;
  }

  body.guest .rd-login-page .main-banner__image {
    min-height: 420px;
    order: -1;
  }

  body.guest .rd-login-page .main-banner__image img {
    width: min(340px, 72vw);
  }
}

@media (max-width: 767px) {
  body.guest .rd-login-page {
    min-height: auto;
    padding: 22px 14px 34px;
  }

  body.guest .rd-login-page .main-banner__image {
    display: none;
  }

  body.guest .rd-login-page h1 {
    font-size: 36px;
  }

  body.guest .rd-login-page h1::after {
    font-size: 14px;
  }

  body.guest .rd-login-page .col-md-6:first-child::after {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    text-align: center;
  }

  body.guest .rd-login-page #loginForm {
    margin-top: 22px;
    padding: 22px;
    border-radius: 24px;
  }

  body.guest .rd-login-page #loginForm::after {
    top: 54px;
    left: 22px;
  }

  body.guest .rd-login-page .reset-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================================================
   Login from zero
   New standalone visitor experience.
========================================================================== */
body.guest {
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 230, 118, 0.14), transparent 23rem),
    radial-gradient(circle at 84% 4%, rgba(2, 182, 239, 0.2), transparent 29rem),
    linear-gradient(180deg, #f8fdff 0%, #edf8fc 42%, #ffffff 100%) !important;
}

body.guest .rd-auth-legacy,
body.guest .rd-auth-legacy ~ .social-sec,
body.guest .rd-auth-legacy ~ .podcast-sec,
body.guest .rd-auth-legacy ~ .order-sec,
body.guest .rd-auth-legacy ~ .smm-panels-container-custom,
body.guest .rd-auth-legacy ~ .footer-wrapper {
  display: none !important;
}

body.guest .rd-auth-redesign {
  --rd-auth-cyan: #02b6ef;
  --rd-auth-cyan-dark: #057da6;
  --rd-auth-green: #00e676;
  --rd-auth-ink: #07111f;
  --rd-auth-muted: #5b7083;
  --rd-auth-line: rgba(164, 199, 214, 0.64);
  position: relative;
  overflow: hidden;
  color: var(--rd-auth-ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

body.guest .rd-auth-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 70%);
}

body.guest .rd-auth-hero,
body.guest .rd-auth-dashboard-preview,
body.guest .rd-auth-video,
body.guest .rd-auth-services,
body.guest .rd-auth-final-cta {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

body.guest .rd-auth-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 6vw, 78px) 0;
}

body.guest .rd-auth-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

body.guest .rd-auth-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin-bottom: 20px;
  padding: 7px 14px;
  border: 1px solid rgba(2, 182, 239, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(4, 31, 45, 0.07);
  color: #027da5;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.guest .rd-auth-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rd-auth-green);
  box-shadow: 0 0 0 6px rgba(0, 230, 118, 0.16);
}

body.guest .rd-auth-copy h1 {
  max-width: 790px;
  margin: 0 0 20px;
  color: var(--rd-auth-ink);
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
}

body.guest .rd-auth-copy p {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--rd-auth-muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 750;
  line-height: 1.75;
}

body.guest .rd-auth-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-bottom: 18px;
}

body.guest .rd-auth-proof div,
body.guest .rd-auth-preview-card,
body.guest .rd-auth-service-grid article {
  border: 1px solid var(--rd-auth-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 54px rgba(4, 31, 45, 0.08);
  backdrop-filter: blur(14px);
}

body.guest .rd-auth-proof div {
  min-height: 94px;
  display: grid;
  align-content: center;
  padding: 16px;
  border-radius: 18px;
}

body.guest .rd-auth-proof strong {
  color: #027da5;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  line-height: 1;
}

body.guest .rd-auth-proof span {
  margin-top: 7px;
  color: #526173;
  font-size: 12px;
  font-weight: 850;
}

body.guest .rd-auth-platforms,
body.guest .rd-auth-strip-track {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

body.guest .rd-auth-platforms span,
body.guest .rd-auth-strip-track span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(164, 199, 214, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #173042;
  font-size: 13px;
  font-weight: 900;
}

body.guest .rd-auth-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(164, 199, 214, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246, 252, 254, 0.94));
  box-shadow: 0 34px 94px rgba(4, 31, 45, 0.16);
}

body.guest .rd-auth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--rd-auth-cyan), var(--rd-auth-green), var(--rd-auth-cyan-dark));
}

body.guest .rd-auth-card-head {
  margin-bottom: 22px;
}

body.guest .rd-auth-card-kicker,
body.guest .rd-auth-section-head span,
body.guest .rd-auth-video-copy span,
body.guest .rd-auth-final-cta span {
  color: #027da5;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.guest .rd-auth-card h2 {
  margin: 5px 0 8px;
  color: var(--rd-auth-ink);
  font-size: 30px;
  font-weight: 950;
  line-height: 1.05;
}

body.guest .rd-auth-card p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  font-weight: 750;
}

body.guest .rd-auth-field {
  margin-bottom: 16px;
}

body.guest .rd-auth-field label {
  margin-bottom: 8px;
  color: #425466;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.guest .rd-auth-input-wrap {
  position: relative;
}

body.guest .rd-auth-input-wrap .input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--rd-auth-cyan), var(--rd-auth-cyan-dark)) !important;
  color: #fff;
  transform: translateY(-50%);
}

body.guest .rd-auth-card .form-control {
  width: 100%;
  min-height: 58px;
  padding: 13px 48px 13px 62px;
  border: 1px solid rgba(164, 199, 214, 0.86) !important;
  border-radius: 18px !important;
  background: #f8fcfe !important;
  color: var(--rd-auth-ink);
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 850;
}

body.guest .rd-auth-card .form-control:focus {
  border-color: var(--rd-auth-cyan) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(2, 182, 239, 0.14) !important;
}

body.guest .rd-auth-card .show-pw {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 3;
  transform: translateY(-50%);
}

body.guest .rd-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin: 4px 0 18px;
  list-style: none;
}

body.guest .rd-auth-options li,
body.guest .rd-auth-options .checkbox {
  margin: 0;
}

body.guest .rd-auth-options label,
body.guest .rd-auth-options a {
  color: #526173;
  font-size: 13px;
  font-weight: 850;
}

body.guest .rd-auth-options a {
  color: #027da5;
}

body.guest .rd-auth-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.guest .rd-auth-actions .btn {
  width: 100%;
  min-height: 58px;
  border: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--rd-auth-cyan), var(--rd-auth-cyan-dark)) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(2, 118, 154, 0.24);
  font-size: 15px;
  font-weight: 950;
}

body.guest .rd-auth-create {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef8fc;
  color: #027da5 !important;
  font-weight: 950;
  text-decoration: none !important;
}

body.guest .rd-auth-strip {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto 54px;
  overflow: hidden;
}

body.guest .rd-auth-strip-track {
  justify-content: center;
}

body.guest .rd-auth-dashboard-preview,
body.guest .rd-auth-video,
body.guest .rd-auth-services,
body.guest .rd-auth-final-cta {
  margin-bottom: clamp(46px, 6vw, 82px);
}

body.guest .rd-auth-section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

body.guest .rd-auth-section-head h2,
body.guest .rd-auth-video-copy h2,
body.guest .rd-auth-final-cta h2 {
  margin: 6px 0 0;
  color: var(--rd-auth-ink);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 950;
  line-height: 1.02;
}

body.guest .rd-auth-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 14px;
}

body.guest .rd-auth-preview-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 22px;
}

body.guest .rd-auth-preview-card.is-large {
  background: linear-gradient(135deg, #07111f, #173042);
  color: #fff;
}

body.guest .rd-auth-preview-top,
body.guest .rd-auth-order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.guest .rd-auth-preview-top span,
body.guest .rd-auth-order-line span,
body.guest .rd-auth-preview-card > span {
  color: #667085;
  font-size: 13px;
  font-weight: 750;
}

body.guest .rd-auth-preview-card.is-large .rd-auth-preview-top span,
body.guest .rd-auth-preview-card.is-large .rd-auth-order-line span {
  color: rgba(255, 255, 255, 0.68);
}

body.guest .rd-auth-preview-card > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e7f8fd;
  color: #027da5;
  font-size: 19px;
}

body.guest .rd-auth-preview-card strong {
  color: inherit;
  font-size: 18px;
  font-weight: 950;
}

body.guest .rd-auth-order-line {
  justify-content: flex-start;
}

body.guest .rd-auth-order-line i {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 22px;
}

body.guest .rd-auth-order-line div {
  flex: 1;
}

body.guest .rd-auth-order-line em {
  color: #00e676;
  font-style: normal;
  font-weight: 950;
}

body.guest .rd-auth-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

body.guest .rd-auth-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rd-auth-cyan), var(--rd-auth-green));
}

body.guest .rd-auth-video {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--rd-auth-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(2, 182, 239, 0.12), transparent 16rem),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 70px rgba(4, 31, 45, 0.1);
}

body.guest .rd-auth-video-copy p {
  margin: 16px 0 0;
  color: var(--rd-auth-muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

body.guest .rd-auth-video-frame {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #07111f;
  box-shadow: 0 24px 54px rgba(4, 31, 45, 0.18);
}

body.guest .rd-auth-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

body.guest .rd-auth-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.guest .rd-auth-service-grid article {
  min-height: 230px;
  padding: 22px;
  border-radius: 24px;
}

body.guest .rd-auth-service-grid i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--rd-auth-cyan), var(--rd-auth-cyan-dark));
  color: #fff;
  font-size: 20px;
}

body.guest .rd-auth-service-grid h3 {
  margin: 0 0 10px;
  color: var(--rd-auth-ink);
  font-size: 20px;
  font-weight: 950;
}

body.guest .rd-auth-service-grid p {
  margin: 0;
  color: var(--rd-auth-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
}

body.guest .rd-auth-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.28), transparent 14rem),
    linear-gradient(135deg, var(--rd-auth-cyan), var(--rd-auth-cyan-dark));
  box-shadow: 0 28px 70px rgba(2, 118, 154, 0.22);
}

body.guest .rd-auth-final-cta span,
body.guest .rd-auth-final-cta h2 {
  color: #fff;
}

body.guest .rd-auth-final-cta h2 {
  max-width: 700px;
  font-size: clamp(26px, 3.4vw, 46px);
}

body.guest .rd-auth-final-cta a {
  min-height: 54px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 17px;
  background: #fff;
  color: #027da5 !important;
  font-weight: 950;
  text-decoration: none !important;
  box-shadow: 0 18px 36px rgba(4, 31, 45, 0.14);
}

@media (max-width: 1100px) {
  body.guest .rd-auth-shell,
  body.guest .rd-auth-video {
    grid-template-columns: 1fr;
  }

  body.guest .rd-auth-card {
    max-width: 620px;
  }

  body.guest .rd-auth-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.guest .rd-auth-preview-card.is-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body.guest .rd-auth-hero {
    min-height: auto;
    padding-top: 28px;
  }

  body.guest .rd-auth-copy h1 {
    font-size: 38px;
  }

  body.guest .rd-auth-proof,
  body.guest .rd-auth-preview-grid,
  body.guest .rd-auth-service-grid {
    grid-template-columns: 1fr;
  }

  body.guest .rd-auth-card {
    padding: 22px;
    border-radius: 24px;
  }

  body.guest .rd-auth-options {
    align-items: flex-start;
    flex-direction: column;
  }

  body.guest .rd-auth-video {
    padding: 18px;
    border-radius: 24px;
  }

  body.guest .rd-auth-final-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  body.guest .rd-auth-final-cta a {
    width: 100%;
  }
}

/* ==========================================================================
   Machines SMM inspired login
========================================================================== */
body.guest:has(.rd-auth-redesign) {
  background: #ffffff !important;
  color: #07111f;
}

body.guest:has(.rd-auth-redesign) > .navbar.navbar-default,
body.guest:has(.rd-auth-redesign) > .navbar.navbar-inverse {
  min-height: 64px;
  border: 0;
  background: #eef8fc !important;
  box-shadow: none;
}

body.guest:has(.rd-auth-redesign) > .navbar .container {
  max-width: 1140px;
}

body.guest:has(.rd-auth-redesign) > .navbar .d-flex {
  min-height: 64px;
}

body.guest:has(.rd-auth-redesign) > .navbar .navbar-brand {
  height: 64px;
  padding: 4px 0;
}

body.guest:has(.rd-auth-redesign) > .navbar .navbar-brand img {
  max-width: 270px;
  max-height: 58px;
  object-fit: contain;
}

body.guest:has(.rd-auth-redesign) > .navbar .navbar-nav > li > a {
  min-height: 36px;
  margin: 0 3px;
  padding: 8px 12px !important;
  border-radius: 8px;
  color: #16465a !important;
  font-size: 13px;
  font-weight: 900;
}

body.guest:has(.rd-auth-redesign) > .navbar .navbar-nav > li.active > a,
body.guest:has(.rd-auth-redesign) > .navbar .navbar-nav > li > a:hover,
body.guest:has(.rd-auth-redesign) > .navbar .navbar-nav > li > a:focus {
  background: #02b6ef !important;
  color: #fff !important;
}

body.guest:has(.rd-auth-redesign) .action-links .btn {
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 8px !important;
  background: #02b6ef !important;
  box-shadow: none;
  font-size: 13px;
  font-weight: 950;
}

body.guest .rd-auth-redesign {
  --rd-auth-purple: #02b6ef;
  --rd-auth-purple-dark: #078db9;
  --rd-auth-purple-soft: #e7f8fd;
  --rd-auth-ink: #07111f;
  --rd-auth-muted: #5b7083;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

body.guest .rd-auth-redesign::before {
  display: none;
}

body.guest .rd-auth-strip {
  order: -1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: var(--rd-auth-purple);
}

body.guest .rd-auth-strip-track {
  width: min(1140px, calc(100% - 24px));
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

body.guest .rd-auth-strip-track span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: inherit;
  font-weight: inherit;
}

body.guest .rd-auth-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 478px;
  display: block;
  margin: 0;
  padding: 34px 0 110px;
  background: #fff;
  overflow: visible;
}

body.guest .rd-auth-hero::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -122px;
  z-index: 0;
  height: 245px;
  background:
    linear-gradient(170deg, transparent 0 31%, rgba(2, 182, 239, 0.24) 31.3% 40%, transparent 40.3%),
    linear-gradient(174deg, transparent 0 38%, rgba(2, 182, 239, 0.42) 38.3% 49%, transparent 49.3%),
    linear-gradient(178deg, transparent 0 48%, var(--rd-auth-purple) 48.3% 100%);
  pointer-events: none;
}

body.guest .rd-auth-shell {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 28px));
  display: block;
  margin: 0 auto;
}

body.guest .rd-auth-copy {
  text-align: center;
}

body.guest .rd-auth-badge,
body.guest .rd-auth-platforms {
  display: none;
}

body.guest .rd-auth-copy h1 {
  max-width: none;
  margin: 0 0 8px;
  color: #282b34;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

body.guest .rd-auth-copy p {
  max-width: none;
  margin: 0 auto 26px;
  color: #63636f;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  text-align: center;
}

body.guest .rd-auth-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px 30px 26px;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

body.guest .rd-auth-card::before,
body.guest .rd-auth-card-head {
  display: none;
}

body.guest .rd-auth-card #loginForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

body.guest .rd-auth-card .alert,
body.guest .rd-auth-google,
body.guest .rd-auth-options,
body.guest .rd-auth-actions {
  grid-column: 1 / -1;
}

body.guest .rd-auth-field {
  margin: 0;
}

body.guest .rd-auth-field label {
  margin-bottom: 8px;
  color: #16465a;
  font-size: 13px;
  font-weight: 950;
  text-transform: none;
  letter-spacing: 0;
}

body.guest .rd-auth-input-wrap .input-icon,
body.guest .rd-auth-card .show-pw {
  display: none;
}

body.guest .rd-auth-card .form-control {
  min-height: 50px;
  padding: 12px 14px;
  border: 0 !important;
  border-radius: 6px !important;
  background: #eef8fc !important;
  color: #07111f;
  font-size: 15px;
  font-weight: 900;
}

body.guest .rd-auth-card .form-control:focus {
  background: #e7f8fd !important;
  box-shadow: 0 0 0 3px rgba(2, 182, 239, 0.16) !important;
}

body.guest .rd-auth-options {
  min-height: 22px;
  display: flex;
  justify-content: flex-start;
  margin: 4px 0 0;
}

body.guest .rd-auth-options .checkbox {
  display: none;
}

body.guest .rd-auth-options a {
  color: #027da5;
  font-size: 13px;
  font-weight: 950;
}

body.guest .rd-auth-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}

body.guest .rd-auth-actions .btn {
  min-height: 48px;
  border-radius: 7px !important;
  background: var(--rd-auth-purple) !important;
  box-shadow: none;
  font-size: 13px;
  font-weight: 950;
}

body.guest .rd-auth-create {
  min-height: auto;
  display: block;
  background: transparent;
  color: #027da5 !important;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

body.guest .rd-auth-google {
  margin: 2px 0 6px;
}

body.guest .rd-auth-proof {
  position: absolute;
  left: 50%;
  bottom: -246px;
  z-index: 5;
  width: min(560px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  transform: translateX(-50%);
}

body.guest .rd-auth-proof div {
  min-height: 130px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 16px;
  padding: 24px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

body.guest .rd-auth-proof div:nth-child(3) {
  display: none;
}

body.guest .rd-auth-proof div::before {
  content: "\f03a";
  width: 82px;
  height: 82px;
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 18px;
  background: var(--rd-auth-purple);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-size: 34px;
  font-weight: 900;
}

body.guest .rd-auth-proof div:nth-child(2)::before {
  content: "\f24d";
}

body.guest .rd-auth-proof strong {
  color: #027da5;
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
}

body.guest .rd-auth-proof span {
  color: #16465a;
  font-size: 12px;
  font-weight: 900;
}

body.guest .rd-auth-dashboard-preview {
  width: 100%;
  max-width: none;
  margin: 0 0 155px;
  padding: 188px 0 78px;
  background: var(--rd-auth-purple);
}

body.guest .rd-auth-dashboard-preview::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -42px;
  height: 86px;
  background:
    radial-gradient(70% 60px at 8% 0%, #c7f0fb 0 46%, transparent 47%),
    radial-gradient(52% 66px at 44% 0%, #fff 0 52%, transparent 53%),
    radial-gradient(58% 70px at 82% 0%, #c7f0fb 0 48%, transparent 49%),
    #fff;
}

body.guest .rd-auth-dashboard-preview > .rd-auth-section-head,
body.guest .rd-auth-dashboard-preview > .rd-auth-preview-grid {
  width: min(1140px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

body.guest .rd-auth-dashboard-preview .rd-auth-section-head {
  max-width: none;
  margin-bottom: 42px;
  text-align: center;
}

body.guest .rd-auth-dashboard-preview .rd-auth-section-head span {
  display: none;
}

body.guest .rd-auth-dashboard-preview .rd-auth-section-head h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.1;
}

body.guest .rd-auth-dashboard-preview .rd-auth-section-head::after {
  content: "Descubra o porque os nossos clientes preferem utilizar nossos servicos de Painel SMM e Revenda de Seguidores.";
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

body.guest .rd-auth-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

body.guest .rd-auth-preview-card,
body.guest .rd-auth-preview-card.is-large {
  min-height: 220px;
  padding: 22px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #16465a;
  box-shadow: none;
}

body.guest .rd-auth-preview-card > i {
  width: 100%;
  height: 94px;
  margin-bottom: 18px;
  border-radius: 0;
  background: #e7f8fd;
  color: var(--rd-auth-purple);
  font-size: 36px;
}

body.guest .rd-auth-preview-card strong {
  margin-bottom: 10px;
  color: #16465a;
  font-size: 14px;
}

body.guest .rd-auth-preview-card > span {
  color: #426173;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

body.guest .rd-auth-video,
body.guest .rd-auth-final-cta {
  display: none;
}

body.guest .rd-auth-services {
  width: min(1140px, calc(100% - 32px));
  max-width: 1140px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
}

body.guest .rd-auth-services .rd-auth-section-head {
  max-width: none;
  margin: 0;
}

body.guest .rd-auth-services .rd-auth-section-head span {
  display: none;
}

body.guest .rd-auth-services .rd-auth-section-head h2 {
  max-width: 230px;
  margin: 0 0 18px;
  color: #282b34;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

body.guest .rd-auth-services .rd-auth-section-head::after {
  content: "Selecionamos as 5 melhores e mais frequentes perguntas feitas por usuarios.";
  display: block;
  max-width: 260px;
  color: #62626d;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.6;
}

body.guest .rd-auth-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

body.guest .rd-auth-service-grid article {
  position: relative;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 58px 18px 24px;
  border: 1px solid rgba(60, 32, 120, 0.07);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(4, 31, 45, 0.06);
}

body.guest .rd-auth-service-grid i {
  position: absolute;
  top: 50%;
  right: 22px;
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  border-radius: 0;
  background: transparent;
  color: #027da5;
  font-size: 18px;
  transform: translateY(-50%);
}

body.guest .rd-auth-service-grid h3 {
  margin: 0;
  color: #16465a;
  font-size: 20px;
  line-height: 1.25;
}

body.guest .rd-auth-service-grid p {
  display: none;
}

body.guest .footer {
  border: 0;
  background: #fff;
}

body.guest .footer__bottom,
body.guest .footer .footer__bottom {
  color: #16465a;
  font-weight: 850;
}

@media (max-width: 991px) {
  body.guest:has(.rd-auth-redesign) > .navbar .navbar-brand img {
    max-width: 210px;
  }

  body.guest .rd-auth-card #loginForm {
    grid-template-columns: 1fr;
  }

  body.guest .rd-auth-proof {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 30px auto -120px;
    transform: none;
  }

  body.guest .rd-auth-dashboard-preview {
    padding-top: 165px;
  }

  body.guest .rd-auth-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.guest .rd-auth-services {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  body.guest:has(.rd-auth-redesign) > .navbar .navbar-brand img {
    max-width: 150px;
  }

  body.guest .rd-auth-hero {
    min-height: auto;
    padding: 24px 0 52px;
  }

  body.guest .rd-auth-copy h1 {
    font-size: 26px;
  }

  body.guest .rd-auth-card {
    padding: 18px;
  }

  body.guest .rd-auth-proof,
  body.guest .rd-auth-preview-grid {
    grid-template-columns: 1fr;
  }

  body.guest .rd-auth-proof div {
    min-height: 112px;
  }

  body.guest .rd-auth-dashboard-preview {
    margin-bottom: 92px;
    padding: 145px 0 54px;
  }

  body.guest .rd-auth-preview-card {
    min-height: 190px;
  }

  body.guest .rd-auth-services {
    margin-bottom: 70px;
  }

  body.guest .rd-auth-service-grid h3 {
    font-size: 17px;
  }
}

/* ==========================================================================
   Login bugfix: remove nested legacy card styles
========================================================================== */
body.guest:has(.rd-auth-redesign) {
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 230, 118, 0.1), transparent 23rem),
    radial-gradient(circle at 84% 4%, rgba(2, 182, 239, 0.18), transparent 29rem),
    linear-gradient(180deg, #f8fdff 0%, #edf8fc 48%, #ffffff 100%) !important;
}

body.guest .rd-auth-redesign {
  --rd-auth-purple: #02b6ef;
  --rd-auth-purple-dark: #078db9;
  --rd-auth-purple-soft: #e7f8fd;
  background: transparent !important;
}

body.guest .rd-auth-hero {
  min-height: calc(100vh - 64px) !important;
  display: flex !important;
  align-items: center !important;
  padding: 38px 0 58px !important;
  background: transparent !important;
  overflow: hidden !important;
}

body.guest .rd-auth-hero::after {
  display: none !important;
  content: none !important;
}

body.guest .rd-auth-shell {
  width: min(760px, calc(100% - 28px)) !important;
  display: block !important;
  margin: 0 auto !important;
}

body.guest .rd-auth-copy {
  margin-bottom: 24px;
  text-align: center !important;
}

body.guest .rd-auth-copy h1 {
  max-width: 760px !important;
  margin: 0 auto 8px !important;
  color: #282b34 !important;
  font-size: clamp(30px, 4vw, 42px) !important;
  line-height: 1.08 !important;
}

body.guest .rd-auth-copy p {
  max-width: 620px !important;
  margin: 0 auto !important;
  color: #5b6470 !important;
}

body.guest .rd-auth-card {
  position: relative !important;
  width: min(520px, 100%) !important;
  margin: 0 auto !important;
  padding: 28px 30px !important;
  overflow: hidden !important;
  border: 1px solid rgba(180, 207, 220, 0.76) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 254, 0.94)) !important;
  box-shadow: 0 28px 80px rgba(4, 31, 45, 0.12) !important;
}

body.guest .rd-auth-card::before {
  display: block !important;
  content: "" !important;
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #02b6ef, #00e676, #078db9);
}

body.guest .rd-auth-card-head {
  display: block !important;
  margin-bottom: 20px !important;
}

body.guest .rd-auth-card #loginForm {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.guest .rd-auth-card #loginForm::before,
body.guest .rd-auth-card #loginForm::after {
  display: none !important;
  content: none !important;
}

body.guest .rd-auth-card #loginForm .form-group,
body.guest .rd-auth-card #loginForm .form-group:first-of-type,
body.guest .rd-auth-field {
  margin: 0 !important;
}

body.guest .rd-auth-input-wrap .input-icon {
  display: grid !important;
}

body.guest .rd-auth-card .show-pw {
  display: block !important;
}

body.guest .rd-auth-card .form-control {
  min-height: 56px !important;
  padding: 13px 48px 13px 62px !important;
  border: 1px solid rgba(164, 199, 214, 0.86) !important;
  border-radius: 18px !important;
  background: #f8fcfe !important;
  color: #07111f !important;
}

body.guest .rd-auth-google {
  margin: 0 !important;
}

body.guest .rd-auth-options {
  min-height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 !important;
}

body.guest .rd-auth-options .checkbox {
  display: block !important;
}

body.guest .rd-auth-actions {
  gap: 10px !important;
}

body.guest .rd-auth-actions .btn {
  min-height: 56px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #02b6ef, #078db9) !important;
  box-shadow: 0 18px 34px rgba(2, 118, 154, 0.22) !important;
}

body.guest .rd-auth-create {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  background: #eef8fc !important;
}

body.guest .rd-auth-proof,
body.guest .rd-auth-platforms,
body.guest .rd-auth-strip {
  display: none !important;
}

body.guest .rd-auth-dashboard-preview {
  margin: 0 !important;
  padding: 58px 0 !important;
  background: #02b6ef !important;
}

body.guest .rd-auth-dashboard-preview::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 767px) {
  body.guest .rd-auth-hero {
    min-height: auto !important;
    padding: 28px 0 42px !important;
  }

  body.guest .rd-auth-card {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  body.guest .rd-auth-copy h1 {
    font-size: 28px !important;
  }

  body.guest .rd-auth-options {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}
