 /* [MANTÉN TODOS TUS ESTILOS ACTUALES AQUÍ] */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #121212;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Texto deslizante */
        .marquee-container {
            background: linear-gradient(90deg, #8B4513, #D2691E, #8B4513);
            color: #FFD700;
            padding: 8px 0;
            overflow: hidden;
            position: relative;
            font-weight: bold;
            text-align: center;
        }

        .marquee {
            white-space: nowrap;
            display: inline-block;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 2rem 0;
            text-align: center;
            border-bottom: 2px solid #FFD700;
        }

        header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: #FFD700;
        }

        header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Navegación */
        nav {
            background-color: #0f3460;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }

        nav ul li {
            margin: 0 1rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s;
        }

        nav ul li a:hover {
            background-color: #FFD700;
            color: #0f3460;
        }

        /* Menú hamburguesa para móviles */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Carrusel */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
            background-color: #000;
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
            height: 500px;
        }

        .carousel-item {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #000;
        }

        .carousel-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: #FFD700;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
            transition: background-color 0.3s;
        }

        .carousel-control:hover {
            background-color: rgba(0, 0, 0, 0.9);
        }

        .carousel-control.prev {
            left: 0;
            border-radius: 0 4px 4px 0;
        }

        .carousel-control.next {
            right: 0;
            border-radius: 4px 0 0 4px;
        }

        /* Indicadores del carrusel */
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-indicator.active {
            background-color: #FFD700;
        }

        /* Galería */
        .gallery {
            padding: 4rem 0;
            background-color: #1a1a1a;
        }

        .gallery h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #FFD700;
            position: relative;
            padding-bottom: 10px;
        }

        .gallery h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #FFD700;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            background: #2d2d2d;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-info {
            padding: 1rem;
            background: rgba(0, 0, 0, 0.7);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-item-info {
            transform: translateY(0);
        }

        .gallery-item-info h3 {
            margin-bottom: 0.5rem;
            color: #FFD700;
        }

        .gallery-item-info p {
            color: #ddd;
            font-size: 0.9rem;
        }

        /* Sobre mí */
        .about {
            padding: 4rem 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .about h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #FFD700;
            position: relative;
            padding-bottom: 10px;
        }

        .about h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #FFD700;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .about-content img {
            width: 300px;
            height: 300px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid #FFD700;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        /* Sección de comentarios */
        .comments {
            padding: 4rem 0;
            background-color: #1a1a1a;
        }

        .comments h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #FFD700;
            position: relative;
            padding-bottom: 10px;
        }

        .comments h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #FFD700;
        }

        .comments-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .comment-form {
            background: #2d2d2d;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #FFD700;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #444;
            border-radius: 4px;
            background: #1a1a1a;
            color: #f0f0f0;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #FFD700, #D4AF37);
            color: #0f3460;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .comment-list {
            margin-top: 2rem;
        }

        .comment {
            background: #2d2d2d;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            border-left: 4px solid #FFD700;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .comment-author {
            font-weight: bold;
            color: #FFD700;
        }

        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }

        .comment-text {
            color: #ddd;
        }

        .loading {
            text-align: center;
            color: #FFD700;
            padding: 2rem;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            background: #4CAF50;
            color: white;
            border-radius: 5px;
            z-index: 10000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            animation: slideIn 0.3s ease;
        }

        .notification.error {
            background: #f44336;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Contacto */
        .contact {
            padding: 4rem 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            text-align: center;
        }

        .contact h2 {
            margin-bottom: 1rem;
            font-size: 2rem;
            color: #FFD700;
            position: relative;
            padding-bottom: 10px;
        }

        .contact h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #FFD700;
        }

        .contact p {
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .whatsapp-btn {
            display: inline-block;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            margin-bottom: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
        }

        /* Footer */
        footer {
            background-color: #0f0f0f;
            color: white;
            padding: 2rem 0;
            text-align: center;
            border-top: 2px solid #FFD700;
        }

        .social-links {
            margin-bottom: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: color 0.3s, transform 0.3s;
        }

        .social-links a:hover {
            color: #FFD700;
            transform: translateY(-3px);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
        }

        .modal-content {
            display: block;
            margin: auto;
            max-width: 90%;
            max-height: 80vh;
            margin-top: 5vh;
            border: 2px solid #FFD700;
            border-radius: 8px;
            object-fit: contain;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close:hover {
            color: #FFD700;
        }

        #caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
            height: 150px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-content img {
                width: 100%;
                height: auto;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #0f3460;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
                width: 100%;
                text-align: center;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .carousel {
                display: none;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            .carousel-inner {
                height: 300px;
            }
        }

        @media (min-width: 769px) {
            .carousel {
                display: block;
            }
        }