:root {
    /* Color Palette */
    --primary: #ff0055;
    --primary-dark: #d90048;
    --accent: #00f2ff;

    --dark-bg: #0a0a0a;
    --dark-surface: #121212;
    --dark-surface-2: #1e1e1e;

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --gradient-hero: linear-gradient(135deg, rgba(17, 17, 17, 0.20) 0%, rgba(5, 5, 5, 0.85) 100%);
    --gradient-card: linear-gradient(145deg, #1a1a1a, #111);

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 300;
}

.logo .dot {
    color: var(--primary);
    font-size: 2rem;
    line-height: 0;
}

.nav-menu a {
    color: var(--text-muted);
    margin-left: 30px;
    font-weight: 500;
    position: relative;
}

.nav-menu .lojaonline {
    color: var(--primary)
}

.nav-menu a:hover {
    color: var(--text-main);
}

.nav-menu .btn-nav {
    background: var(--text-main);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-menu .btn-nav:hover {
    background: var(--primary);
    color: white;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

/* Hero Image */
.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
    /* Blend with dark background */
}

/* Background Abstract Effect using CSS Gradients */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.15), transparent 70%);
    filter: blur(80px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08), transparent 70%);
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-top: 2rem;
}

.hero h1 span {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    background: rgba(255, 0, 85, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn.white {
    background: white;
    color: var(--dark-bg);
}

.btn.white:hover {
    background: #f0f0f0;
}

.btn.store {
    background: var(--accent);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.4);
}

.btn.store:hover {
    background: #00d5e0;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Grid */
.section-header {
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--dark-surface);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    background: var(--dark-surface-2);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 85, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 28px;
    color: var(--primary);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Dark Feature Section */
.dark-feature {
    background: #000;
}

.feature-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list li i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 5px;
}

.feature-list li strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* UPDATED VISUAL CARD */
.visual-card {
    width: 300px;
    height: 400px;
    background: #111;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
}

.card-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
    transition: 0.3s ease;
}

.visual-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    width: 100%;
    text-align: center;
}

.visual-card:hover .card-img-bg {
    transform: scale(1.05);
    opacity: 0.5;
}

.visual-content span {
    font-size: 3rem;
    /* Adjusted for card size */
    font-weight: 800;
    opacity: 0.3;
    letter-spacing: 5px;
    color: var(--primary);
    display: block;
}

.visual-content h3 {
    font-size: 1.5rem;
    color: white;
}

/* Portfolio */
.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.mockup {
    aspect-ratio: 1;
    background: var(--dark-surface);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.mockup-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

/* Overlay gradient for text readability */
.mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.mockup:hover .mockup-img {
    transform: scale(1.1);
    opacity: 1;
}

.mockup:nth-child(n) {
    background: #111;
}

/* Reset specific backgrounds */

.mockup-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    transform: translateY(10px);
    transition: 0.3s ease;
    width: 100%;
}

.mockup:hover .mockup-content {
    transform: translateY(0);
}

.mockup-content span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.mockup-content h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

/* Text Center Section */
.small-container {
    max-width: 800px;
}

.lead {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 2rem;
}

.section-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

/* Map Section */
.map-section {
    padding: 0;
    margin-bottom: 100px;
}

.map-container {
    position: relative;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-info {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    color: var(--dark-bg);
    padding: 25px;
    border-radius: 8px;
    width: 300px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.map-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-info p {
    color: #444;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.link-arrow {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA */
.cta {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #000;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.social-footer {
    display: flex;
    gap: 15px;
}

.social-footer a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
}

.social-footer a:hover {
    background: var(--primary);
}

/* FLOAT BTN */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .header-flex .nav-menu {
        display: none;
        /* Simple hiding for mobile, ideally would be a drawer */
    }

    .mobile-toggle {
        display: block;
        color: white;
    }

    .hero {
        text-align: center;
        padding: 100px 0 50px;
        height: auto;
    }

    .hero-bg::before,
    .hero-bg::after {
        opacity: 0.5;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .feature-layout {
        flex-direction: column;
    }

    .map-info {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}