 :root {
            --primary: #2563eb;
            --secondary: #059669;
            --accent: #f59e0b;
            --apple-gray-1: #f5f5f7;
            --apple-gray-2: #d2d2d7;
            --apple-gray-3: #86868b;
            --apple-gray-4: #424245;
            --apple-gradient: linear-gradient(135deg, #000000 0%, #2563eb 100%);
        }

        * {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: var(--apple-gray-1);
            color: #1d1d1f;
            overflow-x: hidden;
        }

        .btn-primary {
            background: var(--apple-gradient);
            color: white;
            font-weight: 600;
            padding: 0.875rem 1.75rem;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: none;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }

        .btn-primary:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(40, 40);
                opacity: 0;
            }
        }

        .feature-icon {
            background: var(--apple-gradient);
            color: white;
            border-radius: 18px;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-icon:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .popular-badge {
            position: relative;
            top: -20px;
            left:50%;
            transform: translateX(-50%);
            text-align: center;
            background: var(--apple-gradient);
            color: white;
            font-weight: 700;
            font-size: 0.875rem;
            padding: 0.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            max-width: 250px;
        }

        .plan-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--apple-gray-2);
            background: white;
            border-radius: 20px;
            overflow: hidden;
        }

        .plan-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }

        .plan-card.popular {
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        var(--apple-gradient) border-box;
        }

        .tech-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tech-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--apple-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        /* Apple-style smooth scrolling */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        /* Scroll progress indicator - Apple style */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--apple-gradient);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Apple-style fade animations */
        @keyframes appleFadeIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes appleFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .apple-fade-in-up {
            animation: appleFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
        }

        .apple-fade-in {
            animation: appleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
        }

        /* Staggered animation delays */
        .stagger-animation {
            opacity: 0;
            transform: translateY(20px);
            animation: appleFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .stagger-animation:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation:nth-child(2) { animation-delay: 0.2s; }
        .stagger-animation:nth-child(3) { animation-delay: 0.3s; }
        .stagger-animation:nth-child(4) { animation-delay: 0.4s; }
        .stagger-animation:nth-child(5) { animation-delay: 0.5s; }

        /* Modern parallax effect */
        .parallax-modern {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .parallax-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: parallaxFloat 20s infinite linear;
        }

        @keyframes parallaxFloat {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(10px, 10px); }
            50% { transform: translate(5px, -5px); }
            75% { transform: translate(-10px, 5px); }
        }

        /* Apple-style navigation animation */
        .nav-scrolled {
            background-color: rgba(255, 255, 255, 0.92);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Hover effects with Apple-style animations */
        .hover-lift {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Gradient text animation */
        .gradient-text {
            background: var(--apple-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Floating animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* ===== ANIMAÇÕES PROFISSIONAIS ATUALIZADAS ===== */

        /* Server Animation - Estilo Apple */
        .server-rack-container {
            width: 380px;
            height: 380px;
            position: relative;
            margin: 0 auto;
            perspective: 1200px;
        }

        .server-rack {
            width: 320px;
            height: 320px;
            position: absolute;
            top: 30px;
            left: 30px;
            transform-style: preserve-3d;
            animation: rackEntrance 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }

        .rack-body {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .rack-doors {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            padding: 25px;
            box-sizing: border-box;
        }

        .rack-door {
            width: calc(50% - 12px);
            height: 100%;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transform-origin: center;
            box-shadow: 
                inset 0 0 40px rgba(0, 0, 0, 0.5),
                0 8px 32px rgba(0, 0, 0, 0.25);
            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .rack-door.left {
            transform: rotateY(0deg);
        }

        .rack-door.right {
            transform: rotateY(0deg);
        }

        .server-rack:hover .rack-door.left {
            transform: rotateY(-75deg);
        }

        .server-rack:hover .rack-door.right {
            transform: rotateY(75deg);
        }

        .door-handle {
            position: absolute;
            width: 6px;
            height: 60px;
            background: linear-gradient(135deg, #475569 0%, #64748b 100%);
            border-radius: 3px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        .rack-door.left .door-handle {
            right: 20px;
        }

        .rack-door.right .door-handle {
            left: 20px;
        }

        .server-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 40px;
            box-sizing: border-box;
            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.6s ease 0.3s;
        }

        .server-rack:hover .server-content {
            opacity: 1;
        }

        .server-status {
            display: flex;
            gap: 24px;
            margin-bottom: 30px;
        }

        .status-indicator {
            width: 80px;
            height: 80px;
            background: rgba(30, 41, 59, 0.9);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .server-rack:hover .status-indicator:nth-child(1) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .server-rack:hover .status-indicator:nth-child(2) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .server-rack:hover .status-indicator:nth-child(3) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .status-value {
            font-size: 24px;
            font-weight: 800;
            margin-top: 8px;
            background: var(--apple-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .server-lights {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .server-light {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }

        .server-light.green {
            background: #10b981;
            box-shadow: 0 0 20px #10b981;
            animation: lightPulse 2s infinite;
        }

        .server-light.amber {
            background: #f59e0b;
            box-shadow: 0 0 20px #f59e0b;
            animation: lightPulse 2s infinite 0.5s;
        }

        .server-light.blue {
            background: #3b82f6;
            box-shadow: 0 0 20px #3b82f6;
            animation: lightPulse 2s infinite 1s;
        }

        .code-lines {
            position: absolute;
            bottom: 25px;
            left: 25px;
            right: 25px;
            background: rgba(15, 23, 42, 0.95);
            border-radius: 12px;
            padding: 20px;
            font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Courier New', monospace;
            font-size: 13px;
            color: #10b981;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.8s;
        }

        .server-rack:hover .code-lines {
            opacity: 1;
            transform: translateY(0);
        }

        .code-line {
            margin-bottom: 8px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }

        .server-rack:hover .code-line:nth-child(1) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 1s;
        }

        .server-rack:hover .code-line:nth-child(2) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 1.1s;
        }

        .server-rack:hover .code-line:nth-child(3) {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 1.2s;
        }

        .code-cursor {
            display: inline-block;
            width: 8px;
            height: 18px;
            background: #10b981;
            margin-left: 4px;
            animation: cursorBlink 1s infinite;
            vertical-align: middle;
        }

        /* Text Rotator - Estilo Apple */
        .text-rotator-container {
            position: relative;
            height: 2em;
            overflow: hidden;
            display: inline-block;
            vertical-align: middle;
            margin-left: 10px;
        }

        .rotator-item {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transform: translateY(30px);
            animation: rotatorCycle 16s cubic-bezier(0.77, 0, 0.175, 1) infinite;
            white-space: nowrap;
        }

        .rotator-item:nth-child(1) {
            animation-delay: 0s;
            background: var(--apple-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .rotator-item:nth-child(2) {
            animation-delay: 4s;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .rotator-item:nth-child(3) {
            animation-delay: 8s;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .rotator-item:nth-child(4) {
            animation-delay: 12s;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Keyframes atualizados */
        @keyframes rackEntrance {
            0% {
                transform: translateY(100px) rotateX(-45deg);
                opacity: 0;
            }
            60% {
                transform: translateY(-10px) rotateX(10deg);
                opacity: 1;
            }
            100% {
                transform: translateY(0) rotateX(0);
                opacity: 1;
            }
        }

        @keyframes lightPulse {
            0%, 100% {
                opacity: 0.4;
                transform: scale(0.9);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        @keyframes cursorBlink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @keyframes rotatorCycle {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            5%, 20% {
                opacity: 1;
                transform: translateY(0);
            }
            25%, 100% {
                opacity: 0;
                transform: translateY(-30px);
            }
        }

        /* Glow effect para servidor */
        .server-rack::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--apple-gradient);
            background-size: 400%;
            border-radius: 26px;
            z-index: -1;
            filter: blur(15px);
            opacity: 0;
            animation: glowPulse 4s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0;
                transform: scale(0.98);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.02);
            }
        }

        /* FAQ Animation */
        .faq-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-question {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-open .faq-answer {
            max-height: 500px;
        }

        /* Table row animation */
        tr {
            opacity: 0;
            transform: translateX(-20px);
            animation: tableRowIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        tr:nth-child(1) { animation-delay: 0.1s; }
        tr:nth-child(2) { animation-delay: 0.2s; }
        tr:nth-child(3) { animation-delay: 0.3s; }
        tr:nth-child(4) { animation-delay: 0.4s; }
        tr:nth-child(5) { animation-delay: 0.5s; }
        tr:nth-child(6) { animation-delay: 0.6s; }

        @keyframes tableRowIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Card hover effects */
        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        /* Loading animation for buttons */
        .btn-loading {
            position: relative;
            color: transparent !important;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: btnSpinner 0.8s linear infinite;
        }

        @keyframes btnSpinner {
            to { transform: rotate(360deg); }
        }

        /* Section entrance animation */
        .section-entrance {
            opacity: 0;
            transform: translateY(40px);
            animation: sectionEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes sectionEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.open {
            max-height: 100vh;
        }

        .mobile-menu-content {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        /* Mobile optimizations */
        .mobile-hidden {
            display: none;
        }

        .mobile-visible {
            display: block;
        }

        @media (min-width: 1024px) {
            .mobile-hidden {
                display: flex;
            }
            .mobile-visible {
                display: none;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .server-rack-container {
                width: 300px;
                height: 300px;
            }
            
            .server-rack {
                width: 250px;
                height: 250px;
            }
            
            .status-indicator {
                width: 60px;
                height: 60px;
                font-size: 10px;
            }
            
            .status-value {
                font-size: 18px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }

            .hero-text {
                font-size: 2.5rem;
            }

            .hero-subtext {
                font-size: 1rem;
            }

            .feature-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 1rem;
            }

            .plan-card {
                margin-bottom: 2rem;
            }

            .mobile-full-width {
                width: 100%;
            }

            .mobile-text-center {
                text-align: center;
            }

            .mobile-padding {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .server-rack-container {
                width: 250px;
                height: 250px;
            }
            
            .server-rack {
                width: 200px;
                height: 200px;
            }
            
            .status-indicator {
                width: 50px;
                height: 50px;
                font-size: 9px;
            }
            
            .status-value {
                font-size: 16px;
            }

            .hero-text {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .btn-primary {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Estilos para as abas de hospedagem */
        .hosting-tab {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hosting-tab.active {
            border-bottom: 2px solid #2563eb;
            color: #2563eb;
            font-weight: 600;
        }

        .plan-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .plan-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Estilos para o carrossel de planos */
        .plans-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            /* CORREÇÃO: Melhorar comportamento de toque */
            overscroll-behavior-x: contain;
        }

        .plans-carousel::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .plan-slide {
            flex: 0 0 auto;
            width: 85%;
            scroll-snap-align: center;
            margin-right: 1.5rem;
            /* CORREÇÃO: Permitir scroll vertical */
            touch-action: pan-y;
        }

        .plan-slide:last-child {
            margin-right: 0;
        }

        @media (min-width: 768px) {
            .plans-carousel {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
                overflow: visible;
                scroll-snap-type: none;
                padding-bottom: 0;
                margin-bottom: 0;
                overscroll-behavior: auto;
            }
            
            .plan-slide {
                width: 100%;
                margin-right: 0;
                touch-action: auto;
            }
        }

        /* CORREÇÃO: Ajuste para evitar conflito de scroll no mobile */
        @media (max-width: 767px) {
            .hosting-section {
                -webkit-overflow-scrolling: touch;
                overflow-x: hidden;
            }
            
            .plan-section.active {
                min-height: 100vh;
                overflow-y: auto;
            }
        }

        /* Indicadores do carrossel */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }

        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #d1d5db;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .carousel-indicator.active {
            background-color: #2563eb;
            transform: scale(1.2);
        }

        /* Botões de navegação do carrossel */
        .carousel-nav {
            display: none;
        }

        @media (min-width: 768px) {
            .carousel-indicators,
            .carousel-nav {
                display: none;
            }
        }

        /* Ajustes para as abas no mobile */
        .hosting-tabs-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            /* CORREÇÃO: Permitir scroll vertical */
            touch-action: pan-y;
        }

        .hosting-tabs-container::-webkit-scrollbar {
            display: none;
        }

        .hosting-tabs {
            display: flex;
            min-width: max-content;
            padding: 0 1rem;
        }

        .hosting-tab {
            white-space: nowrap;
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            /* CORREÇÃO: Melhorar toque */
            touch-action: manipulation;
        }

        @media (min-width: 768px) {
            .hosting-tabs-container {
                overflow: visible;
                padding-bottom: 0;
                touch-action: auto;
            }
            
            .hosting-tabs {
                min-width: auto;
                padding: 0;
                justify-content: center;
            }
            
            .hosting-tab {
                padding: 0.75rem 2rem;
                font-size: 1rem;
            }
        }


