:root {
    --primary: #a2ff00;
    --primary-dark: #6a1bb2;
    --secondary: #00d4ff;
    --bg-color: #050505;
    --bg-darker: #020202;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #a2ff00, #a2ff00);
    --gradient1: linear-gradient(135deg, #a2ff00, #a2ff00);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Canvas Animation */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.bg-darker {
    background-color: rgba(2, 2, 2, 0.85);
    backdrop-filter: blur(10px);
}

.highlight {
    color: #a2ff00;
}

.text-gradient {
    background: var(--gradient1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clients-images {
    display: flex;
    gap: 20px;
    /* Espaço entre as imagens */
    justify-content: center;
    /* Alinha as imagens ao centro */
}

.clients-images img {
    max-height: 50px;
    /* Ajuste o tamanho das imagens */
    object-fit: contain;
    /* Para manter a proporção das imagens */
}


.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
}

.btn-nav:hover {
    background: var(--primary);
    color: #fff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(5, 5, 5, 0.95) 0%,
            rgba(5, 5, 5, 0.85) 30%,
            rgba(5, 5, 5, 0.5) 70%,
            rgba(5, 5, 5, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(138, 43, 226, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

/* Trust Badge Animated */
.trust-badge-animated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #fff;
    cursor: default;
    overflow: hidden;
    border: 1px solid rgba(162, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(162, 255, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.trust-badge-animated i {
    color: var(--primary);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px var(--primary));
    animation: pulseIcon 2s infinite;
}

.highlight-count {
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--primary), #fff);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    animation: shineBadge 3s infinite;
}

@keyframes shineBadge {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes shineText {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

.card:hover::before {
    transform: scaleX(1);
}

/* Services */
.icon-box {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}




.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Products */
.product-card {
    text-align: center;
    padding: 0;
    padding-bottom: 30px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 0 20px;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 10px;
    color: #fff;
    z-index: 2;
}

.product-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.product-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Projects */
.project-card {
    height: 300px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* Clients */
.clients-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.7;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-logo i {
    font-size: 2rem;
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-logo {
    max-width: 150px;
    /* Ajuste conforme necessário */
    height: auto;
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        max-width: 500px;
    }

    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #050505;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        border-left: 1px solid var(--glass-border);
        padding: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Hero Section Mobile */
    .hero {
        background-attachment: scroll;
        background-position: center center;
        min-height: 500px;
        height: 80vh;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(5, 5, 5, 0.95) 0%,
                rgba(5, 5, 5, 0.8) 50%,
                rgba(5, 5, 5, 0.6) 100%);
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    /* Grids Mobile */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card {
        padding: 20px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        height: 70vh;
        background-size: cover;
        background-position: top center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        padding: 0 15px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 250px;
    }

    .product-image {
        height: 150px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
    .hero {
        min-height: 400px;
        height: 60vh;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 15px;
    }
}

/* Desktop Large */
@media (min-width: 1440px) {
    .hero {
        background-size: contain;
        background-position: center right;
        background-color: var(--bg-color);
    }

    .hero-overlay {
        background: linear-gradient(to right,
                rgba(5, 5, 5, 0.98) 0%,
                rgba(5, 5, 5, 0.9) 20%,
                rgba(5, 5, 5, 0.6) 40%,
                transparent 60%);
    }
}

/* Portrait Mode Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* ================= NEW STYLES ================= */

/* Updated Grid for Services */
.grid-card-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Service Card Enhancements */
.highlighted-card {
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(162, 255, 0, 0.1);
    position: relative;
}

.highlighted-card::after {
    content: 'Recomendado';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--primary);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    margin-top: 40px;
}

.process-item {
    position: relative;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: 0.3s;
}

.process-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(162, 255, 0, 0.1);
    margin-bottom: -10px;
    display: block;
}

.process-item h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: #fff;
}

.process-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    font-style: italic;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.client-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-style: normal;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}

.client-info strong {
    color: var(--primary);
    font-size: 0.95rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}