/* Version: Mobile Fix 1.8 - Logo 100px Force Update */
:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #888888;
    --primary-color: #00ff88;
    --accent-color: #ff0055;
    --font-main: 'Outfit', sans-serif;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 50px;
    --spacing-xl: 100px;
    --container-width: 1400px;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    width: 100%;
    overflow-x: hidden
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md)
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) 0;
    z-index: 100;
    mix-blend-mode: difference;
    transition: padding 0.3s ease
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md)
}

header .logo {
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px
}

/* Fixed Logo Size */
header .logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    max-width: 250px
}

header .nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center
}

header .nav-links a {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden
}

header .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: translateX(-101%);
    transition: transform 0.3s var(--ease-out)
}

header .nav-links a:hover::after {
    transform: translateX(0)
}

.hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 var(--spacing-md);
    background-color: var(--bg-secondary);
    margin-bottom: var(--spacing-lg)
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    z-index: 2
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2
}

.hero-3d {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
    position: relative
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 100%;
    padding: 0 20px
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0
}

.hero-slide.active {
    visibility: visible;
    opacity: 1
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    will-change: transform, opacity
}

.layer-back {
    z-index: 1;
    transform: scale(1.1)
}

.layer-middle {
    z-index: 2;
    transform: scale(1.2) translateY(50px)
}

.layer-front {
    z-index: 3;
    transform: scale(1.3) translateY(100px)
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 8rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
}

.hero-kicker {
    font-size: 1rem;
    letter-spacing: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 700
}

.hero-message-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    font-weight: 900
}

.hero-message-text {
    font-size: 1.5rem;
    color: #ccc;
    max-width: 600px;
    margin: 20px auto 0
}

.hero-final-title {
    font-size: clamp(4rem, 12vw, 9rem);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1
}

.btn-3d {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: transform 0.3s
}

.btn-3d:hover {
    transform: scale(1.1) rotate(-2deg);
    background: var(--primary-color)
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out)
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4)
}

footer {
    padding: 80px 0 30px;
    background: #050505;
    border-top: 1px solid #111;
    margin-top: 100px
}

footer .footer-col h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

footer a:hover {
    color: var(--primary-color) !important
}

.mockup-computer {
    width: 100%;
    max-width: 370px;
    height: auto;
    aspect-ratio: 370/260;
    background: #222;
    border: 4px solid #444;
    border-radius: 10px 10px 0 0;
    padding: 10px 10px 0 10px;
    position: relative;
    margin-bottom: 20px;
    transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5), 1px 0 0 #333, 2px 0 0 #333, 3px 0 0 #333, 4px 0 0 #333, 0 1px 0 #333, 0 2px 0 #333, 0 3px 0 #333, 0 4px 0 #333;
    transition: transform 0.4s ease, box-shadow 0.4s ease
}

.mockup-computer:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2)
}

.mockup-computer::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -10%;
    width: 120%;
    height: 16px;
    background: #333;
    border-radius: 0 0 15px 15px;
    transform: translateZ(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.mockup-computer .screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    border: 1px solid #111;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8)
}

.mockup-computer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.9
}

.mockup-computer:hover img {
    transform: scale(1.05);
    opacity: 1
}

.mockup-phone {
    width: 160px;
    height: 280px;
    background: #1a1a1a;
    border: 3px solid #444;
    border-radius: 30px;
    padding: 10px 8px;
    position: relative;
    transform: perspective(800px) rotateY(-10deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.5), 2px 0 0 #333, 4px 0 0 #333, 6px 0 0 #333, inset 0 0 10px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease
}

.mockup-phone:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.3)
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 4px;
    background: #000;
    border-radius: 10px;
    z-index: 5
}

.mockup-phone::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: #444;
    border-radius: 2px
}

.mockup-phone .screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5)
}

.mockup-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.9
}

.custom-context-menu {
    display: none;
    position: fixed;
    z-index: 9999;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    padding: 10px 0;
    backdrop-filter: blur(10px)
}

.custom-context-menu.active {
    display: block;
    animation: fadeIn 0.2s ease-out
}

.custom-context-menu ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.custom-context-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s
}

.custom-context-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1)
}

.custom-context-menu ul li a i {
    width: 20px;
    text-align: center
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4)
}

.floating-whatsapp i {
    margin-top: 2px
}

.desktop-only {
    display: flex
}

@media(max-width:768px) {
    .desktop-only {
        display: none !important
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 20px;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
    position: relative
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease
}

.hamburger.active .line-1 {
    transform: rotate(45deg) translate(5px, 6px)
}

.hamburger.active .line-2 {
    transform: rotate(-45deg) translate(5px, -6px)
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center
}

.mobile-nav-links .mobile-link {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s
}

.mobile-nav-links .mobile-link:hover {
    color: var(--primary-color)
}

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    opacity: 0;
    color: #888
}

section,
header,
footer,
main {
    max-width: 100vw;
    overflow-x: hidden
}

.hero-title,
h1,
h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%
}

@media(max-width:768px) {

    .mockup-computer,
    .mockup-phone {
        transform: none !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
        margin: 0 auto 30px
    }

    .mockup-computer:hover,
    .mockup-phone:hover {
        transform: none !important
    }

    .container {
        padding: 0 15px
    }

    .layer {
        max-width: 100vw
    }
}
