﻿:root {
    --primary: #B2FE02;
    --primary-hover: #99db02;
    --secondary: #ffffff;
    --accent: #2a2a2a;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --container-padding: 1.5rem;
    --section-spacing: 5rem;
    --glow: 0 0 20px rgba(178, 254, 2, 0.15);
    --glass: rgba(20, 20, 20, 0.7);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary)
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem
}

.text-highlight {
    color: var(--primary)
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

.section {
    padding: var(--section-spacing) 0
}

.grid {
    display: grid;
    gap: 2rem
}

.flex {
    display: flex;
    gap: 1rem
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    box-shadow: var(--glow)
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(178, 254, 2, 0.3)
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary)
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: var(--transition)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.logo span {
    color: var(--primary)
}

.nav-links {
    display: none
}

.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(178, 254, 2, 0.05) 0%, transparent 70%)
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    margin-top: 6rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(178, 254, 2, 0.3);
    transform: translateY(-5px)
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(178, 254, 2, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem
}

.service-icon svg {
    width: 32px;
    height: 32px
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(178, 254, 2, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition)
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(178, 254, 2, 0.3)
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main)
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem
}

.client-avatar {
    width: 48px;
    height: 48px;
    background: rgba(178, 254, 2, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem
}

.client-info h5 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.2rem
}

.client-info span {
    font-size: 0.875rem;
    color: var(--text-muted)
}

.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 3rem
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--text-muted)
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.social-link:hover {
    background: var(--primary);
    color: #000
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-card);
    padding: 2rem;
    z-index: 1001;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5)
}

.mobile-menu.active {
    right: 0
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer
}

.mobile-nav-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.overlay.active {
    opacity: 1;
    visibility: visible
}

@media (min-width:768px) {
    .nav-links {
        display: flex;
        gap: 2rem
    }

    .mobile-toggle {
        display: none
    }

    .hero {
        padding-top: 120px
    }

    h1 {
        font-size: 4.5rem
    }
}

@keyframes float {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0px)
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:768px) {
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        transform: scale(1.05)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1)
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.faq-category {
    margin-bottom: 1.5rem
}

.faq-category h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition)
}

.faq-item:hover {
    border-color: rgba(178, 254, 2, 0.3)
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
    user-select: none
}

.faq-question:hover {
    color: var(--primary)
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--text-muted)
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem
}

.faq-answer p {
    margin: 0;
    line-height: 1.6
}

.seo-content {
    background: var(--bg-dark);
    color: var(--text-muted)
}

.seo-article {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.seo-article h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(178, 254, 2, 0.3);
    padding-bottom: 0.75rem
}

.seo-article h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem
}

.seo-article p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    text-align: justify
}

.seo-article strong {
    color: var(--text-main);
    font-weight: 600
}

.seo-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0
}

.seo-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.seo-list li:before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem
}

.seo-list li strong {
    color: var(--primary)
}

.seo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.highlight-item {
    background: rgba(178, 254, 2, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(178, 254, 2, 0.2);
    transition: var(--transition)
}

.highlight-item:hover {
    background: rgba(178, 254, 2, 0.1);
    transform: translateY(-3px)
}

.highlight-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem
}

.highlight-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted)
}

.keywords-text {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary)
}

@media (max-width:768px) {
    .seo-article {
        padding: 1.5rem
    }

    .seo-article h2 {
        font-size: 1.5rem
    }

    .seo-article h3 {
        font-size: 1.25rem
    }

    .seo-highlights {
        grid-template-columns: 1fr
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(178, 254, 2, 0.3);
    box-shadow: 0 10px 30px rgba(178, 254, 2, 0.15)
}

.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #000
}

.product-image img {
    width: 94%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
}

.product-card:hover .product-image img {
    transform: scale(1.05)
}

.product-info {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-btn {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center
}

.product-btn:hover {
    background: var(--secondary);
    transform: scale(1.05)
}

@media (max-width:768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .product-image {
        height: 280px
    }

    .product-image img {
        width: 80%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease
    }
}