        @import url('fonts.css');

        /* Variables de colores */
        :root {
            --color-dark: #1a1a1a;
            --color-primary: #5a3880;
            --color-primary-light: #7a5aa0;
            --color-secondary: #d4b995;
            --color-light: #f4f2f0;
            --color-bg: #f8f6f4;
            --color-white: #faf8f6;
            --color-text: #333333;
            --color-text-light: #666666;
            --color-text-lighter: #999999;
            --color-border: #e8e2dd;
            --color-success: #4a7862;

            --transition-fast: all 0.2s ease;
            --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Cormorant Garamond', serif;

            --border-radius-sm: 6px;
            --border-radius-md: 10px;
            --border-radius-lg: 14px;
            --border-radius-xl: 20px;
        }

        /* Base styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-primary); font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--color-text); background-color: var(--color-bg); overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
        h1, h2, h3, h4, h5, h6 { font-family: var(--font-secondary); font-weight: 600; line-height: 1.3; color: var(--color-dark); margin-bottom: 1rem; }
        p { margin-bottom: 1.5rem; }
        a { text-decoration: none; color: var(--color-primary); transition: var(--transition-fast); }
        a:hover { color: var(--color-primary-light); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 80px 0; }
        .section-title { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; position: relative; padding-bottom: 1rem; }
        .section-title::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background-color: var(--color-primary); }

        /* Header */
        .header { background-color: rgba(250, 248, 246, 0.98); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: var(--shadow-sm); transition: var(--transition-standard); }
        .header.scrolled { box-shadow: var(--shadow-md); }
        .header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; padding: 0 30px; }
        .logo { display: flex; align-items: center; gap: 10px; }
        .logo-icon { font-size: 1.5rem; color: var(--color-primary); }
        .logo-text { font-family: var(--font-secondary); font-size: 1.4rem; font-weight: 700; color: var(--color-dark); letter-spacing: 0.5px; }
        .nav-toggle { display: none; background: none; border: none; color: var(--color-dark); font-size: 1.5rem; cursor: pointer; transition: var(--transition-fast); }
        .nav-toggle:hover { color: var(--color-primary); }
        .main-nav ul { display: flex; gap: 10px; }
        .main-nav a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--color-text); text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-standard); position: relative; }
        .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background-color: var(--color-primary); transition: var(--transition-standard); }
        .main-nav a:hover { color: var(--color-primary); }
        .main-nav a:hover::after { width: 70%; }

        /* Main Content */
        .main-content { margin-top: 80px; flex: 1; }

        /* Page Header */
        .page-header { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: white; padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
        .page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: none; opacity: 0.1; }
        .page-header-content { position: relative; z-index: 2; }
        .page-title { font-size: 3rem; margin-bottom: 1rem; color: white; }
        .page-subtitle { font-size: 1.3rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        /* Chakras Grid */
        .chakras-section { background-color: var(--color-white); }
        .chakras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 3rem; }
        .chakra-card { background-color: var(--color-light); border-radius: var(--border-radius-lg); padding: 40px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition-standard); overflow: hidden; position: relative; cursor: pointer; display: flex; flex-direction: column; }
        .chakra-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .chakra-image { width: 200px; height: 200px; margin: 0 auto 2rem; border-radius: 50%; overflow: hidden; position: relative; }
        .chakra-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-standard); }
        .chakra-card:hover .chakra-image img { transform: scale(1.1); }
        .chakra-title { font-size: 1.6rem; margin-bottom: 1rem; color: var(--color-primary); }
        .chakra-description { color: var(--color-text); line-height: 1.7; text-align: justify; flex: 1; }
        .service-footer { margin-top: auto; padding-top: 20px; }
        .service-modality { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; background-color: var(--color-primary); color: white; border-radius: var(--border-radius-md); font-weight: 600; font-size: 0.95rem; transition: var(--transition-standard); text-decoration: none; cursor: pointer; }
        .chakra-card:hover .service-modality { background-color: var(--color-primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

        /* Info Section */
        .intro-section { background-color: var(--color-light); }
        .intro-content { text-align: center; max-width: 800px; margin: 0 auto; }
        .intro-title { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--color-primary); }
        .intro-text { font-size: 1.1rem; line-height: 1.8; color: var(--color-text-light); }

        /* Modal Styles */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); display: none; justify-content: center; align-items: center; z-index: 2000; backdrop-filter: blur(4px); }
        .modal-overlay.active { display: flex; }
        .modal { background-color: var(--color-white); border-radius: var(--border-radius-lg); max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-lg); position: relative; animation: modalFadeIn 0.3s ease-out; }
        @keyframes modalFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
        .modal-header { padding: 30px 30px 20px; border-bottom: 2px solid var(--color-border); position: sticky; top: 0; background-color: var(--color-white); z-index: 10; }
        .modal-title { font-size: 1.8rem; color: var(--color-primary); margin-bottom: 0; }
        .modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.8rem; color: var(--color-text-light); cursor: pointer; transition: var(--transition-fast); line-height: 1; padding: 5px; }
        .modal-close:hover { color: var(--color-primary); transform: rotate(90deg); }
        .modal-body { padding: 30px; }
        .modal-description { font-size: 1rem; line-height: 1.8; color: var(--color-text); margin-bottom: 1.5rem; text-align: justify; }
        .modal-notes-section { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid var(--color-border); }
        .modal-notes-title { font-size: 1.3rem; color: var(--color-dark); margin-bottom: 1rem; }

        /* Author Card */
        .author-card { background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%); border-radius: var(--border-radius-lg); padding: 40px; margin-top: 60px; box-shadow: var(--shadow-md); border: 2px solid var(--color-border); }
        .author-content { text-align: center; }
        .author-title { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.8rem; }
        .author-text { color: var(--color-text-light); line-height: 1.8; font-size: 1rem; margin-bottom: 0; }
        .back-button { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background-color: var(--color-primary); color: white; border-radius: var(--border-radius-md); font-weight: 600; font-size: 0.95rem; transition: var(--transition-standard); text-decoration: none; margin-top: 30px; }
        .back-button:hover { background-color: var(--color-primary-light); transform: translateX(-5px); box-shadow: var(--shadow-md); color: white; }
        .back-button i { font-size: 1rem; transition: var(--transition-fast); }
        .back-button:hover i { transform: translateX(-3px); }
        .button-container { text-align: center; margin-top: 30px; }

        /* Footer */
        .footer { background-color: var(--color-dark); color: rgba(255, 255, 255, 0.7); padding-top: 70px; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; padding-bottom: 50px; }
        .footer-column h3 { color: white; font-size: 1.2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; }
        .footer-column h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--color-primary); }
        .footer-about-text { margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: var(--transition-fast); position: relative; padding-left: 15px; }
        .footer-links a::before { content: '›'; position: absolute; left: 0; transition: var(--transition-fast); }
        .footer-links a:hover { color: white; padding-left: 20px; }
        .footer-links a:hover::before { left: 5px; }
        .footer-contact-item { display: flex; margin-bottom: 15px; }
        .footer-contact-icon { color: var(--color-primary); margin-right: 10px; font-size: 1.1rem; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 25px 0; text-align: center; font-size: 0.9rem; }

        /* Media Queries */
        @media (max-width: 768px) {
            .header-container { height: 70px; }
            .nav-toggle { display: block; }
            .main-nav { position: absolute; top: 70px; left: 0; width: 100%; background: var(--color-white); box-shadow: var(--shadow-md); max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
            .main-nav.active { max-height: 400px; }
            .main-nav ul { flex-direction: column; padding: 10px 0; gap: 0; }
            .main-nav a { padding: 15px 30px; border-bottom: 1px solid var(--color-border); }
            .main-nav a::after { display: none; }
            .main-content { margin-top: 70px; }
            .page-title { font-size: 2.5rem; }
            .section { padding: 60px 0; }
            .chakras-grid { grid-template-columns: 1fr; gap: 30px; }
            .chakra-card { padding: 30px 20px; }
            .chakra-image { width: 160px; height: 160px; }
            .footer-container { grid-template-columns: 1fr; gap: 30px; }
            .modal { width: 95%; max-height: 90vh; }
            .modal-header { padding: 20px 20px 15px; }
            .modal-body { padding: 20px; }
            .author-card { padding: 30px 25px; }
            .author-content { text-align: center; }
        }
        @media (max-width: 576px) {
            .page-title { font-size: 2rem; }
            .page-subtitle { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .chakra-card { padding: 25px 15px; }
            .chakra-image { width: 140px; height: 140px; }
            .chakra-title { font-size: 1.4rem; }
            .author-card { padding: 25px 20px; }
            .author-title { font-size: 1.3rem; }
            .back-button { width: 100%; justify-content: center; }
        }
