/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00ffff;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #00ffff;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('../img/21.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #00ffff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #00ffff;
            color: #0a0a0a;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #ffffff;
            transform: translateY(-3px);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #111111;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #00ffff;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .section-title p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .about-image {
            flex: 1;
            height: 400px;
            background: url('../img/04.webp');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #111111;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #00ffff;
        }
        
        .product-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #111111;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #0a0a0a;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card.featured {
            border: 2px solid #00ffff;
        }
        
        .price-card.featured::before {
            content: "Más Popular";
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #00ffff;
            color: #0a0a0a;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #00ffff;
        }
        
        .price {
            font-size: 40px;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .price span {
            font-size: 18px;
            color: #aaaaaa;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .price-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00ffff;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #111111;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-card {
            background-color: #0a0a0a;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .feedback-card h4 {
            font-size: 18px;
            color: #00ffff;
        }
        
        .feedback-card .stars {
            color: #ffd700;
            margin-bottom: 15px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #444444;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #00ffff;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #111111;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: #ffffff;
        }
        
        .faq-toggle {
            font-size: 24px;
            color: #00ffff;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-answer p {
            line-height: 1.6;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: #111111;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #0a0a0a;
            padding: 40px;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00ffff;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: #222222;
            border: 1px solid #333333;
            border-radius: 5px;
            color: #ffffff;
            font-size: 16px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ffff;
        }
        
        .form-button {
            background-color: #00ffff;
            color: #0a0a0a;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .form-button:hover {
            background-color: #ffffff;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #0a0a0a;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #888888;
        }
        
        /* Footer */
        footer {
            background-color: #0a0a0a;
            padding: 50px 0 20px;
            border-top: 1px solid #222222;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #00ffff;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #222222;
            color: #888888;
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #111111;
            border: 1px solid #222222;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #00ffff;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-button {
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #00ffff;
            color: #0a0a0a;
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #ffffff;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
        }
        
        .cookie-reject:hover {
            background-color: #222222;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background-color: #111111;
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #ffffff;
            cursor: pointer;
        }
        
        .modal h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .modal p {
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .modal-button {
            background-color: #00ffff;
            color: #0a0a0a;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-button:hover {
            background-color: #ffffff;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

