/* Estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', 'Arial', sans-serif;
        }
        
        body {
            color: #e0e0e0;
            background-color: #0a0a0a;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Tipografía personalizada */
        @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');
        
        /* Estilos del header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #ff4d6d;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ff4d6d;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff4d6d;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #ff4d6d;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #e0e0e0;
            transition: all 0.3s ease;
        }
        
        /* Hero section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../img/06.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #e0e0e0;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: both;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: #ff4d6d;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid #ff4d6d;
            animation: fadeInUp 1s ease-out 0.6s;
            animation-fill-mode: both;
        }
        
        .btn:hover {
            background-color: transparent;
            color: #ff4d6d;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 77, 109, 0.2);
        }
        
        /* Sección About */
        .about {
            padding: 100px 0;
            background-color: #121212;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff4d6d;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #a0a0a0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ff4d6d;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #e0e0e0;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(255, 77, 109, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Sección Product Description */
        .product {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #121212;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #222;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 77, 109, 0.2);
            border-color: #ff4d6d;
        }
        
        .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: 1.5rem;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .product-info p {
            color: #a0a0a0;
            margin-bottom: 20px;
        }
        
        .product-info .btn {
            padding: 10px 25px;
            font-size: 16px;
        }
        
        /* Sección Precios */
        .pricing {
            padding: 100px 0;
            background-color: #121212;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: #0a0a0a;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid #222;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            border-color: #ff4d6d;
            transform: scale(1.05);
        }
        
        .pricing-card.featured:before {
            content: 'Más Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff4d6d;
            color: #ffffff;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 77, 109, 0.2);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: #ff4d6d;
            margin-bottom: 10px;
        }
        
        .pricing-period {
            font-size: 1rem;
            color: #a0a0a0;
            margin-bottom: 30px;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #222;
            color: #e0e0e0;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* Sección Galería */
        .gallery {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            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(to top, rgba(255, 77, 109, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h3 {
            color: #ffffff;
            font-size: 1.5rem;
        }
        
        /* Sección Testimonios */
        .testimonials {
            padding: 100px 0;
            background-color: #121212;
        }
        
        .testimonials-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            text-align: center;
            padding: 30px;
            background-color: #0a0a0a;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid #222;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: #e0e0e0;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text:before, .testimonial-text:after {
            content: '"';
            font-size: 3rem;
            color: #ff4d6d;
            position: absolute;
            opacity: 0.3;
        }
        
        .testimonial-text:before {
            top: -20px;
            left: -10px;
        }
        
        .testimonial-text:after {
            bottom: -40px;
            right: -10px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .testimonial-author-info h4 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 5px;
        }
        
        .testimonial-author-info p {
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background-color: #ff4d6d;
            transform: scale(1.2);
        }
        
        /* Sección FAQ */
        .faq {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #121212;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid #222;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #1a1a1a;
        }
        
        .faq-question h3 {
            font-size: 1.3rem;
            color: #ffffff;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .faq-icon:before, .faq-icon:after {
            content: '';
            position: absolute;
            background-color: #ff4d6d;
        }
        
        .faq-icon:before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            transform: translateY(-50%);
        }
        
        .faq-icon:after {
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer p {
            padding: 0 20px 20px;
            color: #a0a0a0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* Sección Ventajas */
        .advantages {
            padding: 100px 0;
            background-color: #121212;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: #0a0a0a;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 77, 109, 0.2);
            border-color: #ff4d6d;
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background-color: #ff4d6d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #ffffff;
        }
        
        .advantage-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .advantage-card p {
            color: #a0a0a0;
        }
        
        /* Sección Contacto */
        .contact {
            padding: 100px 0;
            background-color: #0a0a0a;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-form {
            background-color: #121212;
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #222;
        }
        
        .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #a0a0a0;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: #0a0a0a;
            border: 1px solid #333;
            border-radius: 5px;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff4d6d;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            color: #a0a0a0;
            font-size: 1.1rem;
        }
        
        /* Sección Disclaimer */
        .disclaimer {
            padding: 40px 0;
            background-color: #0a0a0a;
            border-top: 1px solid #222;
        }
        
        .disclaimer p {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #121212;
            padding: 20px;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 1px solid #ff4d6d;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-text p {
            color: #e0e0e0;
            margin-bottom: 0;
        }
        
        .cookie-text a {
            color: #ff4d6d;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #ff4d6d;
            color: #ffffff;
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #e63950;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #a0a0a0;
            border: 1px solid #333;
        }
        
        .cookie-reject:hover {
            color: #ffffff;
            border-color: #555;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: #121212;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid #ff4d6d;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .modal-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background-color: #ff4d6d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #ffffff;
        }
        
        .modal h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .modal p {
            color: #a0a0a0;
            margin-bottom: 25px;
        }
        
        .modal-btn {
            padding: 12px 30px;
            background-color: #ff4d6d;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .modal-btn:hover {
            background-color: #e63950;
        }
        
        /* Footer */
        footer {
            background-color: #0a0a0a;
            padding: 70px 0 20px;
            border-top: 1px solid #222;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ff4d6d;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff4d6d;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ff4d6d;
        }
        
        .footer-column p {
            color: #a0a0a0;
            margin-bottom: 15px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #222;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Animaciones scroll */
        .fade-in {
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
        }
        
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }
        
        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }
        
        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Marquee */
        .marquee {
            background-color: #ff4d6d;
            color: #ffffff;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }
        
        .marquee-content {
            display: flex;
            animation: marquee 20s linear infinite;
            white-space: nowrap;
        }
        
        .marquee-item {
            padding: 0 30px;
            font-weight: 600;
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #ff4d6d;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

