:root {
            --primary: #2D1B69;
            --secondary: #FF6B35;
            --accent: #F7931E;
            --light: #F8F9FA;
            --dark: #1A1A2E;
            --text: #E8E8E8;
            --bg-light: rgba(45, 27, 105, 0.9);
            --bg-dark: rgba(26, 26, 46, 0.95);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--bg-dark);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid var(--accent);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--light);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--accent);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            margin-top: 80px;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(45, 27, 105, 0.7)), url('../img/12.webp');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 30%, rgba(247, 147, 30, 0.2) 100%);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 800px;
            animation: fadeIn 1.5s ease-in-out;
            position: relative;
            z-index: 2;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--light);
            line-height: 1.2;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }
        
        .hero h1 span {
            color: var(--accent);
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--accent);
            transition: left 0.3s;
            z-index: -1;
        }
        
        .btn:hover {
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        section {
            padding: 5rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--light);
            position: relative;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .about {
            background-color: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 3rem;
            padding: 3rem;
            border: 1px solid rgba(247, 147, 30, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            color: var(--light);
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--accent);
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(247, 147, 30, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .about-image:hover::before {
            transform: translateX(100%);
        }
        
        .products {
            margin-bottom: 3rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            border: 1px solid rgba(247, 147, 30, 0.3);
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(247, 147, 30, 0.2);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 1.5rem;
        }
        
        .product-content h3 {
            color: var(--light);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-content p {
            color: var(--text);
            margin-bottom: 1.5rem;
        }
        
        .prices {
            background-color: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 3rem;
            padding: 3rem;
            border: 1px solid rgba(247, 147, 30, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .price-card {
            background-color: var(--dark);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(247, 147, 30, 0.3);
        }
        
        .price-card.featured {
            border: 2px solid var(--accent);
            transform: scale(1.05);
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(247, 147, 30, 0.2);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-card h3 {
            color: var(--light);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
            font-family: 'Orbitron', sans-serif;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text);
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .price-card li {
            padding: 0.5rem 0;
            color: var(--text);
        }
        
        .price-card li::before {
            content: '✓';
            color: var(--accent);
            margin-right: 0.5rem;
        }
        
        .gallery {
            margin-bottom: 3rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            position: relative;
            border: 1px solid rgba(247, 147, 30, 0.3);
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(247, 147, 30, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(247, 147, 30, 0.2);
        }
        
        .gallery-item:hover::before {
            transform: translateX(100%);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 3rem;
            padding: 3rem;
            border: 1px solid rgba(247, 147, 30, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
        }
        
        .feedback-item img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--accent);
            box-shadow: 0 0 15px rgba(247, 147, 30, 0.3);
        }
        
        .feedback-item h3 {
            color: var(--light);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .feedback-item .role {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .feedback-item p {
            color: var(--text);
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--dark);
            color: var(--light);
            border: 1px solid var(--accent);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .slider-btn:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: scale(1.1);
        }
        
        .faq {
            margin-bottom: 3rem;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(247, 147, 30, 0.3);
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: transparent;
            color: var(--light);
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(247, 147, 30, 0.1);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text);
        }
        
        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }
        
        .faq-icon {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .disclaimer {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--text);
            border: 1px solid rgba(247, 147, 30, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .disclaimer p {
            font-size: 0.9rem;
        }
        
        .disclaimer a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .disclaimer a:hover {
            text-decoration: underline;
        }
        
        footer {
            background-color: var(--bg-dark);
            padding: 3rem 5%;
            color: var(--text);
            border-top: 2px solid var(--accent);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-column h3 {
            color: var(--light);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-size: 0.9rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--bg-dark);
            color: var(--text);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            border-top: 1px solid var(--accent);
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 1rem;
        }
        
        .cookie-text a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .cookie-accept:hover {
            background-color: var(--light);
            transform: translateY(-2px);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--accent);
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            color: var(--light);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .modal-content p {
            color: var(--text);
            margin-bottom: 1.5rem;
        }
        
        .modal-close {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .modal-close:hover {
            background-color: var(--light);
            transform: translateY(-2px);
        }
        
        .contact-form {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(247, 147, 30, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--light);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--dark);
            border: 1px solid rgba(247, 147, 30, 0.3);
            border-radius: 4px;
            color: var(--text);
            font-family: inherit;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 10px rgba(247, 147, 30, 0.2);
        }
        
        .form-submit {
            width: 100%;
            padding: 12px;
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-submit:hover {
            background-color: var(--light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--primary);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

