/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

[data-theme="light"] {
    --dark-bg: #ffffff;
    --dark-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
}

/* Light theme specific styles */
[data-theme="light"] body {
    background-color: #f8fafc !important;
}

[data-theme="light"] .top-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .navbar a,
[data-theme="light"] .nav-menu a {
    color: var(--primary-dark) !important;
}

[data-theme="light"] .navbar a:hover,
[data-theme="light"] .nav-menu a:hover {
    color: var(--primary-color) !important;
    background: rgba(99, 102, 241, 0.1) !important;
}

[data-theme="light"] .nav-menu li a i {
    color: var(--primary-dark) !important;
}

[data-theme="light"] .nav-menu li a:hover i {
    color: var(--primary-color) !important;
}

[data-theme="light"] .conversion-indicator {
    color: var(--success) !important;
}

[data-theme="light"] .hero {
    background: #ffffff !important;
}

[data-theme="light"] .hero::before {
    background: transparent !important;
    box-shadow: none !important;
}

[data-theme="light"] .hero-background {
    display: none !important;
}

[data-theme="light"] .gradient-overlay {
    display: none !important;
}

[data-theme="light"] .animated-background {
    display: none !important;
}

[data-theme="light"] .hero-floating-cards {
    opacity: 0.3 !important;
}

[data-theme="light"] section {
    background: #ffffff !important;
}

[data-theme="light"] .services,
[data-theme="light"] .pricing,
[data-theme="light"] .contact,
[data-theme="light"] .about {
    background: #ffffff !important;
}

[data-theme="light"] .portfolio {
    background: #ffffff !important;
}

[data-theme="light"] .service-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .portfolio-image {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .portfolio-item {
    background: #ffffff !important;
}

[data-theme="light"] .section-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

[data-theme="light"] .footer {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .domain-preview-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

[data-theme="light"] .domain-preview-card.open {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .scroll-to-top {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .customization-wizard,
[data-theme="light"] .quote-modal {
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .wizard-content,
[data-theme="light"] .modal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus,
[data-theme="light"] select:focus {
    border-color: var(--primary-color);
    background: #ffffff;
}

[data-theme="light"] .portfolio-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 70%);
}

[data-theme="light"] .portfolio-tags span {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

[data-theme="light"] .cart-indicator,
[data-theme="light"] .speed-indicator {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .page-loader {
    background: #0a0e1a !important;
}

[data-theme="light"] .container {
    background: transparent !important;
}

[data-theme="light"] .btn-secondary {
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

[data-theme="light"] .btn-secondary:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

[data-theme="light"] .hero-badge {
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--primary-color) !important;
}

[data-theme="light"] .stat-item h3 {
    color: var(--primary-color) !important;
}

[data-theme="light"] .top-nav a {
    color: var(--text-primary) !important;
}

[data-theme="light"] .top-nav-menu a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .portfolio-item:hover {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2) !important;
}

[data-theme="light"] .pricing-card.featured {
    border: 2px solid var(--primary-color) !important;
    background: rgba(99, 102, 241, 0.05) !important;
}

[data-theme="light"] .navbar-right-icons > div {
    background: transparent !important;
}

[data-theme="light"] .cart-indicator,
[data-theme="light"] .speed-indicator {
    background: transparent !important;
}

[data-theme="light"] .cart-badge {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

[data-theme="light"] .speed-number {
    color: var(--primary-color) !important;
}

[data-theme="light"] .theme-toggle {
    background: transparent !important;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(99, 102, 241, 0.1) !important;
}

[data-theme="light"] .logo strong {
    color: var(--text-primary) !important;
}

[data-theme="light"] .domain-preview-tab {
    background: #1e293b !important;
    color: #ffffff !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
    border: none !important;
    border-top: none !important;
    border-left: none !important;
}

[data-theme="light"] .domain-preview-tab:hover {
    background: #0f172a !important;
}

[data-theme="light"] .domain-preview-tab-text {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

[data-theme="light"] .domain-preview-toggle i {
    color: #ffffff !important;
}

[data-theme="light"] .domain-preview-tab span,
[data-theme="light"] .domain-preview-tab i,
[data-theme="light"] .domain-preview-tab * {
    color: #ffffff !important;
}


body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}


/* Custom Cursor */
.custom-cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: 99999;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(99, 101, 241, 0.682);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    z-index: 99998;
}

body:hover .cursor-dot {
    width: 12px;
    height: 12px;
}

a:hover ~ .custom-cursor .cursor-outline,
button:hover ~ .custom-cursor .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: rgba(236, 72, 153, 1);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-rocket {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.5));
}

.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 10px #fbbf24, 0 0 20px #f59e0b;
    animation: orbitParticle 3s linear infinite;
    animation-delay: calc(var(--i) * -0.375s);
    margin: -3px 0 0 -3px;
}

@keyframes orbitParticle {
    0% {
        transform: rotate(calc(var(--i) * 45deg)) translateX(80px) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(calc(var(--i) * 45deg + 180deg)) translateX(80px) scale(1.4);
        opacity: 0.8;
    }
    100% {
        transform: rotate(calc(var(--i) * 45deg + 360deg)) translateX(80px) scale(1);
        opacity: 1;
    }
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    width: 0%;
    animation: loaderProgress 2s ease-in-out forwards;
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.loader-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: loaderFade 1.5s ease-in-out infinite;
    margin-bottom: 1rem;
}

.loader-phrase {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    max-width: 400px;
    line-height: 1.5;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: phraseSlideIn 0.5s ease-out;
}

@keyframes phraseSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderFade {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, #1a1f35 0%, #1e293b 50%, #0f172a 100%);
}

.animated-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 10;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-float {
    position: absolute;
    color: rgba(99, 102, 241, 0.15);
    animation: float 20s infinite ease-in-out;
    filter: blur(8px);
    opacity: 0.3;
}

/* Layer 1 - Far (muito embaçado e lento) */
.icon-float:nth-child(1),
.icon-float:nth-child(2),
.icon-float:nth-child(3),
.icon-float:nth-child(4) {
    filter: blur(12px);
    opacity: 0.15;
    animation-duration: 30s;
}

/* Layer 2 - Medium (embaçado médio) */
.icon-float.layer-2 {
    filter: blur(6px);
    opacity: 0.25;
    color: rgba(139, 92, 246, 0.2);
    animation-duration: 25s;
}

/* Layer 3 - Close (mais nítido e rápido) */
.icon-float.layer-3 {
    filter: blur(2px);
    opacity: 0.4;
    color: rgba(99, 102, 241, 0.25);
    animation-duration: 18s;
}

/* Layer 4 - Very Far (muito longe, muito embaçado) */
.icon-float.layer-4 {
    filter: blur(15px);
    opacity: 0.1;
    color: rgba(236, 72, 153, 0.15);
    animation-duration: 35s;
}

/* Animações de flutuação diferentes para cada ícone */
.icon-float:nth-child(odd) {
    animation-name: float-alternate;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

@keyframes float-alternate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    75% {
        transform: translate(-20px, -30px) rotate(-3deg);
    }
}

/* Garantir que o conteúdo fique acima do fundo */
section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Domain Preview Card */
.domain-preview-card {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(calc(-100% + 40px));
    max-width: 420px;
    width: 100%;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0 20px 20px 0;
    padding: 1.75rem;
    padding-right: 50px;
    box-shadow: 10px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, opacity 0.3s ease;
}

.domain-preview-card.open {
    transform: translateY(-50%) translateX(0);
}

/* When closed, hide card chrome so only the tab is visible */
.domain-preview-card:not(.open) {
    background: transparent;
    border: none;
    box-shadow: none;
}

.domain-preview-tab {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: auto;
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-left: none;
    border-radius: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.domain-preview-tab:hover {
    background: rgba(99, 102, 241, 0.15);
    width: 45px;
}

.domain-preview-tab-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--text-primary) 40%,
        #ffffff 50%,
        var(--text-primary) 60%,
        var(--text-primary) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.2px;
    line-height: 1;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.domain-preview-toggle {
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    flex-shrink: 0;
}

.domain-preview-tab:hover .domain-preview-toggle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.domain-preview-toggle i {
    color: white;
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.domain-preview-card.open .domain-preview-toggle i {
    transform: rotate(180deg);
}

.domain-card-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.domain-preview-card.open .domain-card-content {
    opacity: 1;
    pointer-events: all;
}

.domain-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domain-card-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.domain-card-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
    margin-bottom: 1rem;
}

.domain-card-input:focus {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

.domain-card-input::placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.domain-card-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.domain-card-option {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.domain-card-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.4);
}

.domain-card-option.active {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.domain-card-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.domain-card-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.domain-card-badge.free {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.domain-card-badge.basic {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.domain-card-badge.professional {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.domain-card-badge.advanced {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.domain-card-option-header i {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.domain-card-option.active .domain-card-option-header i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.domain-card-info {
    display: none;
    margin-top: 0.75rem;
}

.domain-card-option.active .domain-card-info {
    display: block;
}

.domain-card-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.domain-card-url i {
    font-size: 1rem;
    color: var(--primary-color);
}

.domain-card-url span {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.site-name-display {
    color: var(--primary-light);
}

.domain-card-hosting {
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding-left: 0.5rem;
}

.domain-card-button {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.domain-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.domain-card-button i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

/* Corner Lights */
.corner-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.corner-light {
    position: absolute;
    width: 1400px;
    height: 1400px;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 6s ease-in-out infinite;
}

.corner-light.top-left {
    top: -700px;
    left: -700px;
    background: radial-gradient(circle, 
        rgba(124, 58, 237, 0.9) 0%, 
        rgba(99, 102, 241, 0.7) 20%, 
        rgba(139, 92, 246, 0.5) 40%,
        transparent 70%);
    opacity: 0.9;
    animation-delay: 0s;
}

.corner-light.top-right {
    top: -600px;
    right: -600px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.6) 0%, 
        rgba(99, 102, 241, 0.4) 30%,
        transparent 60%);
    opacity: 0.6;
    animation-delay: 1s;
}

.corner-light.bottom-left {
    bottom: -600px;
    left: -600px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.5) 0%, 
        rgba(124, 58, 237, 0.3) 30%,
        transparent 60%);
    opacity: 0.5;
    animation-delay: 2s;
}

.corner-light.bottom-right {
    bottom: -600px;
    right: -600px;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.5) 0%, 
        rgba(59, 130, 246, 0.3) 30%,
        transparent 60%);
    opacity: 0.5;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Top Navbar */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.top-navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.top-navbar-logo {
    position: absolute;
    left: 3rem;
    top: -75px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.navbar-logo-img {
    height: 200px !important;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: contrast(1.1) brightness(1.05);
}

.top-navbar-logo i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.top-navbar-logo strong {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.top-nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.top-nav-menu li {
    position: relative;
}

.top-nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.top-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.top-nav-menu a:hover {
    color: var(--primary-color);
}

.top-nav-menu a:hover::after {
    width: 100%;
}

/* Navbar Right Icons */
.navbar-right-icons {
    position: absolute;
    right: 3rem;
    top: 1,5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Cart Indicator */
.cart-indicator {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: 3px;
}

.cart-indicator:hover {
    transform: scale(1.1);
}

.cart-indicator i {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--gradient-1);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    animation: cartPulse 2s ease-in-out infinite;
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Speed Indicator */
.speed-indicator {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.speed-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.speed-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.speed-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 28;
    animation: speedPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

@keyframes speedPulse {
    0%, 100% {
        stroke-dashoffset: 28;
    }
    50% {
        stroke-dashoffset: 70;
    }
}

.speed-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.speed-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.speed-label {
    display: block;
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 1px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: 100;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 2rem;
    align-items: flex-end;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::before {
    width: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Black fade vignette effect on hero edges */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    box-shadow: inset 0 0 700px 30px rgba(0, 0, 0, 0.6);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--primary-light);
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1f35 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.4s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.service-features i {
    color: var(--success);
}

/* Technologies Section */
.technologies {
    background: var(--dark-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tech-item i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-item span {
    font-weight: 600;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 80px rgba(99, 102, 241, 0.4);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    text-align: left;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 25px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(180deg, #1a1f35 0%, var(--dark-bg) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    height: 300px;
    background: var(--dark-card);
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.portfolio-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.portfolio-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-preview-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
}

.portfolio-tags span {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
}

.portfolio-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-buttons {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.portfolio-btn:hover::before {
    width: 300px;
    height: 300px;
}

.visit-site-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.visit-site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.view-images-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.view-images-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.portfolio-btn i {
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.portfolio-btn span,
.portfolio-btn i {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .portfolio-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .portfolio-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }
}

/* Pricing Section */
.pricing {
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    overflow: visible;
    margin-top: 1.5rem;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-crossed {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-x {
    font-size: 2.5rem;
    color: #ef4444;
    font-weight: bold;
    animation: pulse-x 2s ease-in-out infinite;
}

@keyframes pulse-x {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.price-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 1.1rem;
}

.pricing-features .fa-check {
    color: var(--success);
}

.pricing-features .fa-times {
    color: var(--text-muted);
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-button {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 15px;
}

.pricing-footer p {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-footer i {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1f35 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Select dropdown options styling */
.form-group select option {
    background: var(--dark-card);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-group select option:hover,
.form-group select option:checked {
    background: var(--primary-color);
    color: white;
}

.submit-button {
    grid-column: 1 / -1;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-logo strong {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Hero Floating Cards */
.hero-floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    animation: floatAnimation 6s ease-in-out infinite;
    pointer-events: all;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Discount Card - Brilhante e animado */
.discount-card {
    top: 15%;
    right: 10%;
    text-align: center;
    animation-delay: 0s;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    animation: floatAnimation 6s ease-in-out infinite, glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.9));
    }
}

.discount-badge {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.discount-badge i {
    font-size: 1.5rem;
    color: white;
}

.discount-card h3 {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.discount-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.discount-timer {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* Stats Card - Embaçado */
.stats-card {
    top: 50%;
    right: 5%;
    text-align: center;
    animation-delay: 1s;
    filter: blur(1px);
    opacity: 0.7;
}

.stats-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stats-icon i {
    color: #10b981;
    font-size: 1.2rem;
}

.stats-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stats-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
}

.stats-number i {
    color: #10b981;
}

.stats-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Preview Card - Brilho verde */
.preview-card {
    bottom: 20%;
    right: 15%;
    width: 200px;
    animation-delay: 2s;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
    animation: floatAnimation 6s ease-in-out infinite, greenGlow 3s ease-in-out infinite;
}

@keyframes greenGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.8));
    }
}

.preview-header {
    margin-bottom: 1rem;
}

.preview-dots {
    display: flex;
    gap: 0.4rem;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-dots span:nth-child(1) {
    background: #ff5f56;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
    background: #27c93f;
}

.preview-content {
    margin-bottom: 1rem;
}

.preview-bar {
    height: 8px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.preview-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.8) 0%, 
        rgba(139, 92, 246, 1) 50%, 
        rgba(99, 102, 241, 0.8) 100%);
    border-radius: 4px;
    animation: fillBar 3s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
}

.preview-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%);
    animation: shine-bar 2s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes fillBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shine-bar {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.preview-bar.short::before {
    animation: fillBarShort 3s ease-in-out forwards;
}

.preview-bar.medium::before {
    animation: fillBarMedium 3s ease-in-out forwards;
}

@keyframes fillBarShort {
    0% {
        width: 0%;
    }
    100% {
        width: 60%;
    }
}

@keyframes fillBarMedium {
    0% {
        width: 0%;
    }
    100% {
        width: 80%;
    }
}

.preview-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.85rem;
}

.preview-label i {
    font-size: 1rem;
}

/* Performance Card - Muito embaçado */
.performance-card {
    top: 25%;
    left: 8%;
    text-align: center;
    animation-delay: 0.5s;
    filter: blur(2px);
    opacity: 0.5;
}

.performance-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.performance-circle svg {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.8;
}

.circle-progress {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 2.8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.percentage {
    fill: var(--primary-color);
    font-size: 0.5em;
    font-weight: 700;
    text-anchor: middle;
}

.performance-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Clients Card - Brilho roxo pulsante */
.clients-card {
    bottom: 15%;
    left: 10%;
    text-align: center;
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.6));
    animation: floatAnimation 6s ease-in-out infinite, purpleGlow 2.5s ease-in-out infinite;
}

@keyframes purpleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 28px rgba(139, 92, 246, 0.9));
    }
}

.clients-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: -10px;
    border: 2px solid var(--dark-card);
}

.avatar:first-child {
    margin-left: 0;
}

.clients-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.clients-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Steps Modal */
.steps-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.steps-modal.active {
    display: flex;
}

.steps-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.steps-modal-content {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.steps-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    transform: rotate(90deg);
}

/* Progress Bar */
.steps-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.step-indicator.active .step-number {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.step-indicator.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    transition: all 0.3s;
}

.step-indicator.active .step-label {
    color: var(--primary-light);
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-1);
    transition: width 0.5s ease;
}

.step-indicator.completed ~ .step-line::after {
    width: 100%;
}

/* Step Content */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Modal Input */
.modal-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.modal-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

/* Modal Domain Options */
.modal-domain-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-domain-option {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-domain-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.modal-domain-option.active {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.modal-domain-header {
    margin-bottom: 1rem;
}

.modal-domain-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.modal-domain-badge.free {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.modal-domain-badge.basic {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.modal-domain-badge.professional {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.modal-domain-badge.advanced {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.modal-domain-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.modal-domain-url i {
    color: var(--primary-color);
}

.modal-domain-url span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
}

.modal-site-name {
    color: var(--primary-light);
    font-weight: 600;
}

.modal-domain-hosting {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Modal Form */
.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-group.full {
    grid-column: 1 / -1;
}

.modal-form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-form-group input,
.modal-form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Step Buttons */
.step-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step-next-button,
.step-back-button {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
}

.step-next-button {
    background: var(--gradient-1);
    color: white;
    flex: 1;
}

.step-next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.step-back-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.step-back-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Step 3 Success */
.step-success {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease infinite;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.contact-option.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact-option.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contact-option.email {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.contact-option.email:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.contact-option.phone {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.contact-option.phone:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-option i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .domain-preview-card {
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(calc(100% - 50px));
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        margin: 0;
        padding-bottom: 60px;
    }

    .domain-preview-card.open {
        transform: translateY(0);
    }

    .domain-preview-tab {
        left: 50%;
        right: auto;
        top: 0;
        bottom: auto;
        transform: translateX(-50%);
        width: 250px;
        height: 50px;
        flex-direction: row;
        border-radius: 20px 20px 0 0;
        border-left: 1px solid rgba(99, 102, 241, 0.3);
        border-bottom: none;
        padding: 0.5rem 1rem;
    }

    .domain-preview-tab:hover {
        width: 260px;
        height: 55px;
    }

    .domain-preview-tab-text {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 0.8rem;
    }

    .domain-preview-toggle i {
        transform: rotate(90deg);
    }

    .domain-preview-card.open .domain-preview-toggle i {
        transform: rotate(-90deg);
    }

    .domain-card-title {
        text-align: center;
    }

    .navbar {
        top: auto;
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
    }

    .nav-menu {
        flex-direction: row;
        gap: 1.5rem;
    }

    .nav-menu a::before {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stat-item {
        flex: 0 1 auto;
        min-width: 100px;
    }
    
    .about-stat-item h3 {
        font-size: 2rem !important;
    }
    
    .about-stat-item p {
        font-size: 0.85rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .domain-preview-card {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Reduzir quantidade de ícones visíveis em mobile */
    .icon-float:nth-child(n+15) {
        display: none;
    }

    .icon-float {
        font-size: 1.5rem !important;
    }

    /* Evitar sobreposição com navbar fixo */
    .top-navbar {
        padding: 0.75rem 1rem;
    }

    .top-nav-menu {
        gap: 1rem;
    }

    .top-nav-menu a {
        font-size: 0.95rem;
    }

    /* Esconder ícones do lado direito no mobile para limpar o topo */
    .navbar-right-icons {
        display: none;
    }

    /* Garantir respiro no topo da hero */
    .hero {
        padding-top: 6.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Esconder apenas os cards flutuantes; manter o fundo animado visível */
    .hero-floating-cards {
        display: none;
    }
    .animated-background {
        display: block;
    }

    /* Esconder menu lateral no mobile para não sobrepor */
    .navbar {
        display: none;
    }

    /* Ajustar tamanho da logo no mobile */
    .navbar-logo-img {
        height: 150px;
    
    }
    
    .top-navbar-logo {
        position: absolute;
        left: 8rem;
        transform: none;
        top: 10px;
    }
    
    .navbar-logo-img {
        height: 190px !important;
    }
    
    .hero-badge {
        margin-top: 1rem;
    }
    
    .top-nav-menu {
        justify-content: center !important;
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        background: transparent !important;
    }
    
    .top-nav-menu li {
        background: transparent !important;
    }
    
    .top-nav-menu a {
        background: transparent !important;
    }
    
    .top-navbar {
        justify-content: center !important;
        padding: 1rem 0 !important;
        position: relative;
        background: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
    
    .top-navbar.scrolled {
        background: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(99, 102, 241, 0.2) !important;
    }
    
    .navbar-right-icons {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        gap: 0.5rem;
    }
    
    .cart-indicator,
    .speed-indicator {
        display: none !important;
    }
    
    .theme-toggle {
        display: flex !important;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        text-align: center;
        padding: 0 1rem;
    }
    
    .stat-item {
        flex: 0 1 auto;
        min-width: 120px;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }

    /* Ocultar cursor customizado no mobile */
    .custom-cursor,
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    body {
        cursor: auto !important;
        background: var(--dark-bg) !important;
        overflow-x: hidden;
    }
    
    html {
        background: var(--dark-bg) !important;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100vw;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(30, 41, 59, 0.95);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.4);
}

.scroll-to-top i {
    font-size: 1.2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.scroll-progress-ring {
    position: absolute;
    top: 4px;
    left: 4px;
    transform: rotate(-90deg);
}

.scroll-progress-ring-bg {
    fill: none;
    stroke: rgba(99, 102, 241, 0.1);
    stroke-width: 3;
}

.scroll-progress-ring-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 150.8;
    stroke-dashoffset: 150.8;
    transition: stroke-dashoffset 0.1s linear;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

/* Theme Toggle Button */
.theme-toggle {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.theme-toggle i {
    position: absolute;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
    color: #733de7;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .fa-moon {
    color: #818cf8;
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Portfolio Lightbox Gallery */
.portfolio-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.8);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10001;
}

/* Portfolio item cursor */
.portfolio-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Bounce animation on click */
@keyframes bounceClick {
    0% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(0.95) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-15px);
    }
    75% {
        transform: scale(1) translateY(-5px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.portfolio-item.bounce {
    animation: bounceClick 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Touch/Swipe support indicators */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-counter {
        bottom: 1rem;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
