 /* Variables de Diseño */
        :root {
            --color-bg-dark: #0a0e27;
            --color-bg-secondary: #1a1f3a;
            --color-neon-blue: #00d4ff;
            --color-neon-green: #00ff88;
            --color-neon-purple: #a855f7;
            --color-accent-pink: #ff006e;
            --color-crystal-blue: #87ceeb;
            --color-mica-gold: #ffd700;
            --color-silica-white: #f0f8ff;
            --color-rock-gray: #708090;
            --color-rock-dark: #2f4f4f;
            --color-flower-green: #90ee90;
            --color-flower-amber: #ffbf00;
            --color-text-light: #e0e0e0;
            --color-text-muted: #a0a0a0;
            --shadow-glow: 0 0 20px rgba(135, 206, 235, 0.3);
            --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
            --shadow-glow-green: 0 0 20px rgba(144, 238, 144, 0.3);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Reset y Estilos Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-rock-dark) 50%, var(--color-bg-dark) 100%);
            color: var(--color-text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navegación */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--color-crystal-blue);
            z-index: 1000;
            box-shadow: 0 0 30px rgba(135, 206, 235, 0.2);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--color-crystal-blue), var(--color-mica-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-icon {
            font-size: 1.8rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: var(--color-text-light);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            font-weight: 500;
        }

        .nav-link:hover {
            color: var(--color-crystal-blue);
            text-shadow: 0 0 10px var(--color-crystal-blue);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-crystal-blue);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            gap: 6px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--color-crystal-blue);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            margin-top: 60px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--color-crystal-blue), transparent);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--color-mica-gold), transparent);
            bottom: 50px;
            left: 100px;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, var(--color-flower-green), transparent);
            top: 300px;
            left: 50%;
            animation-delay: 4s;
        }

        .crystal-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .crystal-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--color-silica-white);
            border-radius: 50%;
            opacity: 0.6;
            animation: crystalFloat 6s ease-in-out infinite;
        }

        .crystal-particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
        .crystal-particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
        .crystal-particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
        .crystal-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
        .crystal-particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 4s; }
        .crystal-particle:nth-child(6) { top: 70%; left: 10%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        @keyframes crystalFloat {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
            25% { transform: translateY(-20px) translateX(10px); opacity: 1; }
            50% { transform: translateY(-40px) translateX(-10px); opacity: 0.8; }
            75% { transform: translateY(-20px) translateX(15px); opacity: 0.9; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--color-crystal-blue), var(--color-mica-gold), var(--color-flower-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            background: linear-gradient(135deg, var(--color-crystal-blue), var(--color-mica-gold));
            color: var(--color-bg-dark);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 0 20px rgba(135, 206, 235, 0.4);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(135, 206, 235, 0.6);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Sección General */
        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--color-crystal-blue), var(--color-mica-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--color-crystal-blue), var(--color-mica-gold));
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        /* Sección de Formaciones Rocosas */
        .formations-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(135, 206, 235, 0.05) 0%, rgba(47, 79, 79, 0.05) 100%);
            position: relative;
        }

        .formations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .formation-card {
            background: rgba(26, 31, 58, 0.8);
            border: 2px solid rgba(135, 206, 235, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
        }

        .formation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.1), transparent);
            transition: var(--transition);
        }

        .formation-card:hover::before {
            left: 100%;
        }

        .formation-card:hover {
            border-color: var(--color-crystal-blue);
            box-shadow: var(--shadow-glow);
            transform: translateY(-5px);
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 12px rgba(135, 206, 235, 0.35);
        }

        .formation-card h3 {
            color: var(--color-crystal-blue);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .formation-card p {
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-top: 0.5rem;
        }

        /* Sección de la Flor de l'Àmfora */
        .flower-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(144, 238, 144, 0.05) 0%, rgba(255, 191, 0, 0.05) 100%);
        }

        .flower-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .flower-description {
            background: rgba(26, 31, 58, 0.7);
            border: 2px solid rgba(144, 238, 144, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: var(--transition);
        }

        .flower-description:hover {
            border-color: var(--color-flower-green);
            box-shadow: var(--shadow-glow-green);
            transform: translateY(-5px);
        }

        .flower-description h3 {
            color: var(--color-flower-green);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .flower-description p {
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .flower-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 400px;
            position: relative;
        }

        .flower-of-amphora {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .flower-base {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-flower-green), var(--color-flower-amber));
            border-radius: 50px 50px 10px 10px;
            animation: flowerBreath 3s ease-in-out infinite;
        }

        .flower-bud {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--color-silica-white), var(--color-crystal-blue));
            border-radius: 50%;
            animation: crystalGlow 2s ease-in-out infinite;
        }

        .crystal-spikes {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
        }

        .spike {
            position: absolute;
            width: 4px;
            height: 20px;
            background: var(--color-silica-white);
            border-radius: 2px;
            top: 0;
            left: 50%;
            transform: translateX(-50%) rotate(0deg);
            animation: spikeGrow 3s ease-in-out infinite;
        }

        .spike:nth-child(1) { transform: translateX(-50%) rotate(0deg); animation-delay: 0s; }
        .spike:nth-child(2) { transform: translateX(-50%) rotate(45deg); animation-delay: 0.5s; }
        .spike:nth-child(3) { transform: translateX(-50%) rotate(90deg); animation-delay: 1s; }
        .spike:nth-child(4) { transform: translateX(-50%) rotate(135deg); animation-delay: 1.5s; }
        .spike:nth-child(5) { transform: translateX(-50%) rotate(180deg); animation-delay: 2s; }
        .spike:nth-child(6) { transform: translateX(-50%) rotate(225deg); animation-delay: 2.5s; }

        @keyframes flowerBreath {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
        }

        @keyframes crystalGlow {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        @keyframes spikeGrow {
            0%, 100% { height: 20px; opacity: 0.7; }
            50% { height: 30px; opacity: 1; }
        }

        .mineral-aura {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            border: 2px solid rgba(135, 206, 235, 0.3);
            border-radius: 50%;
            animation: auraPulse 4s ease-in-out infinite;
        }

        .aura-layer {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            animation: layerRotate 8s linear infinite;
        }

        .layer-1 { width: 200px; height: 200px; border: 1px solid rgba(255, 215, 0, 0.2); animation-duration: 6s; }
        .layer-2 { width: 300px; height: 300px; border: 1px solid rgba(144, 238, 144, 0.2); animation-duration: 10s; }
        .layer-3 { width: 400px; height: 400px; border: 1px solid rgba(135, 206, 235, 0.2); animation-duration: 14s; }

        @keyframes auraPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
        }

        @keyframes layerRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Sección de Absorción Mineral */
        .absorption-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(135, 206, 235, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
        }

        .absorption-process {
            background: rgba(26, 31, 58, 0.7);
            border: 2px solid rgba(135, 206, 235, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
            transition: var(--transition);
        }

        .absorption-process:hover {
            border-color: var(--color-crystal-blue);
            box-shadow: var(--shadow-glow);
        }

        .absorption-process h3 {
            color: var(--color-crystal-blue);
            font-size: 1.6rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--color-crystal-blue);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--color-mica-gold);
            color: var(--color-bg-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .process-step h4 {
            color: var(--color-crystal-blue);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .process-step p {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Galería Mineral */
        .gallery-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(135, 206, 235, 0.05) 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            background: rgba(26, 31, 58, 0.7);
            border: 2px solid rgba(135, 206, 235, 0.2);
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            border-color: var(--color-crystal-blue);
            box-shadow: var(--shadow-glow);
        }

        .gallery-image {
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle, rgba(135, 206, 235, 0.1), transparent);
        }

        .mineral-visual {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, var(--color-silica-white), var(--color-crystal-blue));
            border-radius: 20px;
            position: relative;
            animation: mineralShimmer 3s ease-in-out infinite;
            cursor: pointer;
        }

        .mica-layer {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: linear-gradient(45deg, var(--color-mica-gold), rgba(255, 215, 0, 0.7));
            border-radius: 15px;
            opacity: 0.8;
            animation: layerShift 4s ease-in-out infinite;
        }

        @keyframes mineralShimmer {
            0%, 100% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(5deg) scale(1.05); }
            50% { transform: rotate(-5deg) scale(1.02); }
            75% { transform: rotate(3deg) scale(1.03); }
        }

        @keyframes layerShift {
            0%, 100% { transform: translateX(0px) translateY(0px); }
            25% { transform: translateX(5px) translateY(-5px); }
            50% { transform: translateX(-5px) translateY(5px); }
            75% { transform: translateX(3px) translateY(-3px); }
        }

        .gallery-item:hover .mineral-visual {
            animation-duration: 1s;
        }

        .gallery-item h3 {
            color: var(--color-crystal-blue);
            margin: 1rem;
            font-size: 1.2rem;
        }

        .gallery-item p {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            margin: 0 1rem 1rem;
        }

        /* Sección Ecológica */
        .ecological-section {
            padding: 6rem 0;
            background: rgba(26, 31, 58, 0.5);
        }

        .ecological-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .ecological-card {
            background: rgba(26, 31, 58, 0.7);
            border: 2px solid rgba(144, 238, 144, 0.2);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
        }

        .ecological-card:hover {
            border-color: var(--color-flower-green);
            box-shadow: var(--shadow-glow-green);
            transform: translateY(-5px);
        }

        .ecological-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--color-flower-green);
        }

        .ecological-card h3 {
            color: var(--color-flower-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .ecological-card p {
            color: var(--color-text-muted);
            line-height: 1.8;
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, var(--color-bg-secondary) 0%, rgba(10, 14, 39, 0.8) 100%);
            border-top: 2px solid var(--color-crystal-blue);
            padding: 3rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--color-crystal-blue) 20%, 
                var(--color-mica-gold) 40%, 
                var(--color-flower-green) 60%, 
                var(--color-crystal-blue) 80%, 
                transparent);
            opacity: 0.5;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content h3 {
            color: var(--color-text-light);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .footer-content h3:first-child {
            color: var(--color-crystal-blue);
            text-shadow: 0 0 12px rgba(135, 206, 235, 0.3);
        }

        .footer-content p {
            color: var(--color-text-muted);
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 2rem auto;
            padding: 2rem 20px;
            border-top: 2px solid rgba(135, 206, 235, 0.2);
        }

        .footer-column {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column li strong {
            color: var(--color-crystal-blue);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
        }

        .footer-column a {
            color: var(--color-text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-column a:hover {
            color: var(--color-crystal-blue);
            transform: translateX(5px);
            text-shadow: 0 0 10px rgba(135, 206, 235, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: absolute;
                top: 60px;
                left: -100%;
                flex-direction: column;
                background-color: var(--color-bg-secondary);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                padding: 1rem 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .flower-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .formations-grid,
            .ecological-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .orb-1, .orb-2, .orb-3 {
                opacity: 0.05;
            }

            .crystal-particles {
                display: none;
            }

            .footer-nav {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                padding: 1.5rem 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .navbar-logo {
                font-size: 1rem;
            }

            .footer-nav {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1rem 10px;
            }

            .footer-column li strong {
                font-size: 0.85rem;
            }

            .footer-column a {
                font-size: 0.85rem;
            }
        }