/* Estilos CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FF10F0;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #00FFFF;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/23.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(255, 16, 240, 0.3));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #00FFFF;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #FF10F0;
            color: #fff;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }
        
        .cta-button:hover {
            background-color: #8A2BE2;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 16, 240, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #111;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 40px;
            color: #FF10F0;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #00FFFF;
            font-size: 18px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #ccc;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 400px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #000;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 16, 240, 0.2);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #FF10F0;
        }
        
        .product-info p {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .product-button {
            display: inline-block;
            background-color: #8A2BE2;
            color: #fff;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .product-button:hover {
            background-color: #FF10F0;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #111;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid #FF10F0;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 16, 240, 0.2);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-header {
            padding: 20px;
            background: linear-gradient(45deg, #8A2BE2, #FF10F0);
        }
        
        .price-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .price-value {
            font-size: 40px;
            font-weight: bold;
            color: #fff;
        }
        
        .price-period {
            font-size: 16px;
            color: #ccc;
        }
        
        .price-features {
            padding: 30px;
        }
        
        .price-feature {
            padding: 12px 0;
            border-bottom: 1px solid #333;
            color: #ccc;
        }
        
        .price-feature:last-child {
            border-bottom: none;
        }
        
        .price-button {
            display: inline-block;
            background-color: #8A2BE2;
            color: #fff;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .price-button:hover {
            background-color: #FF10F0;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #000;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(138, 43, 226, 0.7), rgba(255, 16, 240, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #111;
        }
        
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .feedback-item {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            display: none;
        }
        
        .feedback-item.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 30px;
            color: #ccc;
            line-height: 1.6;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feedback-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .feedback-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-info h4 {
            color: #FF10F0;
            margin-bottom: 5px;
        }
        
        .feedback-info p {
            color: #00FFFF;
            font-size: 14px;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #333;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .feedback-dot.active {
            background-color: #FF10F0;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #000;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: linear-gradient(145deg, #1a1a1a, #222);
            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 {
            color: #fff;
            font-size: 18px;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            background-color: #8A2BE2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            background-color: #FF10F0;
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-inner {
            padding: 0 20px 20px;
            color: #ccc;
            line-height: 1.6;
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: #111;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 10px;
            padding: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00FFFF;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: #222;
            border: 1px solid #333;
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF10F0;
            box-shadow: 0 0 10px rgba(255, 16, 240, 0.3);
        }
        
        .form-button {
            background-color: #FF10F0;
            color: #fff;
            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: #8A2BE2;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #FF10F0;
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #00FFFF;
        }
        
        .footer-contact p {
            color: #ccc;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 14px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #111;
            padding: 20px;
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #222;
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: #ccc;
            margin-right: 20px;
        }
        
        .cookie-text a {
            color: #00FFFF;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-button {
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #FF10F0;
            color: #fff;
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #8A2BE2;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #ccc;
            border: 1px solid #333;
        }
        
        .cookie-reject:hover {
            background-color: #333;
        }
        
        /* 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;
            align-items: center;
            justify-content: center;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: fadeInUp 0.5s ease;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: #FF10F0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background-color: #8A2BE2;
        }
        
        .modal h3 {
            color: #FF10F0;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .modal p {
            color: #ccc;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .modal-button {
            background-color: #8A2BE2;
            color: #fff;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-button:hover {
            background-color: #FF10F0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 50px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .cta-button {
                padding: 12px 25px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .about-text h3 {
                font-size: 22px;
            }
            
            .price-value {
                font-size: 30px;
            }
        }

