        :root {
            --bg-color: #FFC6D4; 
            --box-bg: rgba(255, 255, 255, 0.85);
            --text-dark: #634b58; 
            --text-pink: #DE556D; 
            --heart-full: #DE556D;
            --heart-empty: #ffd1e1;
            --dot-acuarela: #5a8fee;
            --dot-acrilico: #e33e3a;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background-color: var(--bg-color);
            background-image: url('../icons/about/fondo.png'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            
            color: var(--text-dark);
        }

        .principal-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 97%; 
            margin: 0 auto;
        }

        .header-container {
            max-width: 97%; 
            width: 100%;
            background: rgba(255, 255, 255, 0);
            padding-top: 20px;
        }
        
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #11111100; }
        ::-webkit-scrollbar-thumb { background: var(--text-pink); border-radius: 0px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--text-pink); }

        .container {
            max-width: 1400px;
            width: 100%;
            background: rgb(255, 255, 255);
            padding: 20px;
            border-radius: 20px;
        }

        .window-header {
            background-color: white;
            border-radius: 15px; 
            border: 2px solid var(--text-pink); 
            margin-bottom: 20px;
            position: relative; 
        }

        .tabs-container {
            display: flex;
            background-color: white; 
            border-bottom: 2px solid var(--text-pink);
            padding: 5px 10px 0 10px; 
            align-items: flex-end; 
            border-radius: 15px 15px 0 0;
        }

        .tab {
            color: var(--text-dark);
            border: 2px solid var(--text-pink);
            border-bottom: none; 
            border-radius: 10px 10px 0 0; 
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .casa-tab {
            padding: 10px 20px;
            font-size: 0.95em;
            background-color: white; 
            z-index: 1;
        }
        
        .enlace-casa {
            text-decoration: none;
            color: var(--text-dark);
            
        }

        .about-tab {
            padding: 5px 15px; 
            font-size: 0.85em; 
            background-color: white; 
            color: var(--text-pink);
            margin-bottom: -2px; 
            padding-bottom: 7px; 
            margin-left: -5px; 
            z-index: 2;
        }

        .header-main {
            display: flex;
            justify-content: space-between; 
            align-items: center;
            padding: 10px 20px;
            background-color: white;
            position: relative; 
            min-height: 50px;
            border-radius: 0 0 15px 15px;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            object-fit: cover;
            z-index: 2;
        }

        .logo-text {
            position: absolute;
            left: 50%;
            transform: translateX(-50%); 
            font-size: 2em;
            font-weight: normal;
            color: var(--text-pink);
            letter-spacing: 2px;
            white-space: nowrap;
            z-index: 1; 
            font-family: 'Pacifico', cursive;
        }

        .heart-menu-btn {
            background: none;
            border: none;
            color: var(--text-pink);
            font-size: 2.2em;
            cursor: pointer;
            transition: transform 0.2s ease;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2; 
        }

        .heart-menu-btn:hover {
            transform: scale(1.1);
            color: #ff4785;
        }

        .dropdown-menu {
            display: none; 
            position: absolute;
            top: 100%; 
            right: 0;
            background-color: white;
            border: 2px solid var(--text-pink);
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 8px 20px rgba(216, 92, 138, 0.2);
            z-index: 1000;
            min-width: 150px;
            flex-direction: column;
            gap: 10px;
            margin-top: 5px; 
        }

        .dropdown-menu.show {
            display: flex;
        }

        .dropdown-menu a {
            font-family: 'Delius', cursive; 
            color: var(--text-pink); 
            text-decoration: none;
            font-size: 1.1em;
            padding: 5px 10px;
            border-radius: 8px;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-menu a:hover {
            background-color: var(--text-pink);
            color: white;
        }

        .profile-section {
            overflow: hidden;
            margin-bottom: 20px;
            border-radius: 20px;
        }

        .header-banner {
            height: 200px;
            background-color: #f7daec; 
            background-image: url('../icons/about/imagena.png'); 
            background-size: cover; 
            background-position: center 25%;
            background-repeat: no-repeat;
            position: relative;
        }

        .profile-about-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr; 
            gap: 20px;
            padding: 0 20px 20px 20px; 
        }

        .left-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .profile-info-wrapper {
            position: relative;
            margin-top: -70px; 
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .profile-avatar {
            width: 160px;
            height: 160px;
            border-radius: 100%;
            border: 4px solid var(--box-bg); 
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-details {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .display-name {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-pink);
            font-weight: 900;
            font-size: 1.5em;
        }

        .username {
            font-weight: 700;
            color: var(--text-dark);
            opacity: 0.7;
            font-size: 1.1em;
        }

        .bio {
            font-size: 1.0em;
            font-weight: 700;
            display: inline-block;
            margin-top: 5px;
        }

        .socials-wrapper h3 {
            margin-top: 0;
            color: var(--text-pink);
            padding-bottom: 5px;
            font-size: 1.2em;
        }

        .socials {
            display: flex;
            flex-direction: row; 
            gap: 10px;
            margin-top: -10px;
        }

        .social-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: bold;
            padding: 10px 17px; 
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .social-link i {
            font-weight: 100;
            font-size: 1.4em;
            color: var(--text-pink);
        }

        .social-link:hover {
            background: var(--text-pink);
            color: white;
        }

        .social-link:hover i {
            color: white;
        }

        .about-me-wrapper {
            margin-top: 20px; 
        }

        .about-me-wrapper .title {
            margin-top: 0;
            color: var(--text-pink);
            padding-bottom: 0px;
            font-size: 1.9em;
        }

        .about-me-text {
            font-size: 1.1em;
            line-height: 1.5;
            margin-bottom: 0;
            margin-top: -20px;
        }

        .content-main {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .boxs {
            border-radius: 15px;
            padding: 15px;
        }

        .skills-section h2 {
            text-align: center;
            color: var(--text-pink);
            margin-top: 0;
            margin-bottom: 20px; 
            font-size: 1.6em;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .digital {
            border-right: 2px dashed var(--text-pink); 
            padding-right: 20px; 
        }

        .tradicional {
            padding-left: 20px; 
        }

        .skill-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .skill-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px; 
            font-weight: bold;
            font-size: 1.20em;
        }

        .skill-name {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .skill-logo {
            width: 25px;
            height: 25px;
            border-radius: 4px; 
            object-fit: cover;
        }

        .hearts {
            display: flex;
            gap: 2px;
        }

        .hearts i {
            font-size: 1.1em;
        }

        .hearts .ri-heart-fill {
            color: var(--heart-full);
        }

        .hearts .ri-heart-line {
            color: var(--heart-empty);
        }

        .heart-half-wrapper {
            position: relative;
            display: inline-flex;
        }

        .heart-half-wrapper .half-filled {
            position: absolute;
            left: 0;
            top: 0;
            clip-path: inset(0 50% 0 0);
        }

        @media (max-width: 600px) {
            .profile-about-container {
                grid-template-columns: 1fr; 
            }
            .about-me-wrapper {
                margin-top: 0; 
            }
            .skills-grid {
                grid-template-columns: 1fr;
            }
            .digital {
                border-right: none;
                padding-right: 0;
                border-bottom: 2px dashed var(--text-pink); 
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
            .tradicional {
                padding-left: 0;
            }
            
            .header-main {
                flex-direction: row; 
                justify-content: space-between;
                padding: 10px 15px; 
            }
            
            .logo-text {
                font-size: 1.5em; 
            }
        }