
        /* --- VARIABLES GLOBALES --- */
        :root {
            --bg-color: #F5F2F0; 
            --main-text: #191919; 
            --border-color: #000; 
            --nav-bg: #e4cba6; 
            --hover-color: #555; 
        }

        /* --- Configuración General del BODY --- */
        body {
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
            font-family: 'DM Sans', sans-serif;
            color: var(--main-text);
            display: flex;
            flex-direction: column;
            align-items: center; 
            overflow-x: hidden; 
        }

        /* Estilos globales para links */
        a {
            transition: color 0.3s ease, opacity 0.3s ease;
        }
        
        a:not(.cartridge):not(.app-button):hover {
            color: var(--hover-color);
            opacity: 0.8;
            text-decoration: underline;
        }

        p.cartucho {
            margin: 5px 0 0 0;
            font-size: 16px;
            color: #111;
            font-weight: 400;
        }

          p {
           line-height: 1.6; /* Antes seguro estaba en 1.2 o default */
            margin-bottom: 20px; /* Separación entre párrafos */
            font-size: 1.1rem;   /* Un pelín más grande si es necesario */
        }
        
        
        /* ################# LAYOUT PRINCIPAL ################# */
        
        /* Clase de utilidad para centrar y limitar ancho (Antes: new-section-base) */
        .container {
            width: 90%; 
            max-width: 800px; 
            margin: 0 auto;
            box-sizing: border-box;
        }

        /* Contenedor de los cartuchos (Antes: cartridge-container-wrapper) */
        .cartridges-layout {
            display: flex; 
            flex-direction: column; 
            justify-content: center;
            align-items: center; 
            min-height: calc(100vh - 150px);
            padding-bottom: 50px;
            gap: 50px; 
            width: 100%; 
        }
        
        /* ################# HEADER ################# */

        .header-box {
            width: 90%;
            max-width: 800px;
            margin: 40px auto; 
            box-shadow: -3px 3px 0 var(--border-color); 
            border: 3px solid var(--border-color);
        }

        .header-title {
            background-color: var(--title-bg);
            padding: 15px 20px;
            border-bottom: 3px solid var(--border-color);
        }

        .header-title h1 {
            margin: 0;
            font-size: 24px;
            font-weight: 700;
        }

        .nav-bar {
            background-color: var(--nav-bg);
            padding: 15px 20px;
        }

        .nav-bar ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 30px;
            flex-wrap: nowrap; 
            justify-content: flex-start; 
        }

        .nav-bar a {
            text-decoration: none;
            color: var(--main-text);
            font-size: 18px;
            font-weight: 500;
            white-space: nowrap; 
        }
        
        /* ################# CARTRIDGE (COMPONENT) ################# */

        .cartridge {
            width: 95%; 
            max-width: 600px; 
            background-color: #FCE166; 
            border: 3px solid #000;
            border-radius: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 25px;
            box-shadow: -3px 3px 0 #000;
            z-index: 2; 
            box-sizing: border-box;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .cartridge:hover {
            transform: translateY(-5px);
            box-shadow: -5px 6px 0 #000;
        }

        .michiCafe {
            background-color: #FF83AF; 
        }
        
        .michiCafe .cart-connector {
            background-color: #CD5A83; 
        }
        
        .cart-lines {
            width: 100%;
            height: 35px;
            border-bottom: 2px solid #000;
            margin-bottom: 5px;
            position: relative;
        }
        .cart-lines::before,
        .cart-lines::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #000;
        }
        .cart-lines::before { top: 14px; }
        .cart-lines::after { top: 24px; }

        .cart-content {
            background-color: #fff;
            width: 90%;
            border: 3px solid #000;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 15px;
        }

        .cart-image-box {
            height: 220px;
            width: 100%;
            position: relative;
            border-bottom: 3px solid #000;
            overflow: hidden;
            transition: height 0.3s ease; 
        }

        /* Clase general para imagenes que ocupan todo el espacio (Antes: real-image) */
        .img-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            
        }

        .cart-text-box {
            padding: 15px 20px;
            text-align: left;
        }

        .cart-text-box h1 {
            margin: 0;
            font-size: 32px;
            color: #000;
            font-weight: 700;
            line-height: 1.2;
        }

        .cart-connector {
            position: absolute;
            bottom: -30px;
            width: 80%;
            height: 25px;
            background-color: #F2C04D; 
            border: 3px solid #000;
            border-top: none;
            border-radius: 0 0 15px 15px;
            box-shadow: -3px 3px 0 #000;
            z-index: -1; 
        }

        /* ################# SECCIONES DE CONTENIDO ################# */
        
        /* Títulos principales de sección (Antes: new-section-h2) */
.section-title {
    /* --- Tipografía estilo Memphis --- */
    font-family: 'DM Sans', sans-serif;
    font-size: 4rem;      /* Tamaño gigante */
    font-weight: 500;     
    letter-spacing: -2px; /* Letras juntas */
    line-height: 1;
    color: #000;
    text-transform: none; /* Permite minúsculas */
    
    /* --- Alineación y Posición --- */
    text-align: left;     /* Alineado a la izquierda */
    
    /* Esto es clave para que se alinee con el resto de tu texto: */
    width: 90%;           
    max-width: 800px;
    
    /* Margen: 70px arriba, 'auto' a los lados (para centrar el bloque), 30px abajo */
    margin: 40px auto 10px auto; 

    /* Reseteamos estilos de caja anteriores */
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}
.title-about{

    margin-bottom: 70px;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .section-title {
        font-size: 2.5rem; /* Un poco más chico en celular para que quepa */
    }
}
        
        /* Subtítulos (Antes: link-subtitle) */
        .subtitle {
            margin: 30px auto 10px auto; 
            font-size: 20px;
            color: var(--main-text);
            font-weight: 700;
            text-align: left;
            padding: 0 10px; 
        }

        /* Contenedor de imagen grande (Antes: new-section-image-area) */
        .hero-image {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--border-color); 
            box-shadow: -3px 3px 0 var(--border-color); 
        }
        
        /* Bloque de texto estándar (Antes: new-section-text-area) */
        .text-block {
             margin: 15px auto 0 auto;
             padding: 10px 5px 0;
             text-align: left;
             
        }
      .text-block a {
            color: inherit; /* Esto hace que el enlace herede el color de su elemento padre (el párrafo, que es negro) */
            font-weight: bold;
        }



        .project-title{
            font-family: 'DM Sans', sans-serif;
            font-size: 3rem;       /* 32px aprox, grande pero menor al título principal */
            font-weight: 500;     
    letter-spacing: -2px; /* Letras juntas */
    line-height: 1;
            margin-bottom: 15px;   /* Espacio antes del texto */
            margin-top: 0;
            text-align: left;
            color: #000;
        }


        /* Estilos específicos para las listas dentro de las descripciones */
.text-block ul {
    margin-top: 20px;      /* Separa la lista del párrafo de arriba */
    margin-bottom: 20px;   /* Separa la lista de lo que siga abajo */
    padding-left: 20px;    /* Asegura que los puntitos (bullets) no se salgan del margen */
}

.text-block li {
    line-height: 1.6;      /* Igual que tus párrafos: más aire para leer */
    margin-bottom: 15px;   /* Espacio entre cada ítem de la lista */
    font-size: 1.1rem;     /* El tamaño aumentado que pediste */
    color: var(--main-text);
}
        
        .links-list {
            padding: 0 0 0 0px; 
            margin: 0 auto 0 auto;
            list-style-type: disc; 
        }
        
        .links-list li {
            margin-bottom: 8px;
            font-size: 16px;
            color: var(--main-text);
        }

        .links-list a {
            color: var(--main-text);
            font-size: 16px;
            text-decoration: underline;
            font-weight: 500;
        }
        
        /* ################# FOOTER Y BOTONES ################# */

        .footer {
            width: 100%;
            margin-top: 50px; 
            padding-bottom: 15px;
            background-color: var(--title-bg);
            text-align: center;
            max-width: 900px;
        }

        .divider {
            width: 90%; 
            max-width: 800px; 
            margin: 0 auto 13px auto; 
            border-top: 2px dashed var(--border-color); 
            border-bottom: none;
        }

        .divider2 {
    width: 100%;      
    max-width: 100%;
    margin: 4rem auto; /* Mantiene el espaciado amplio que definimos antes */
    border: none;      /* Quitamos la línea punteada anterior */
    height: 12px;      /* Altura total de la onda */
    
    /* Dibujamos el Zig-Zag usando un SVG en línea */
    /* stroke-width='1.5' controla el grosor de la línea (cámbialo si lo quieres más fino o grueso) */
    /* stroke='%23000000' es el color negro (#000000) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath d='M0 10 L10 0 L20 10' fill='none' stroke='%23000000' stroke-width='1.5'/%3E%3C/svg%3E");
    
    background-repeat: repeat-x; /* Repetir horizontalmente */
    background-position: center;
    background-size: 20px 100%;  /* El "20px" controla qué tan anchos son los picos del zig-zag */
    opacity: 0.8; /* Un poco de opacidad para que no sea tan agresivo */
}

        .footer-email {
            font-size: 18px;
            font-weight: 500;
            text-decoration: none; 
            color: var(--main-text);
            display: block;
        }

        .buttons-group {
            display: flex; 
            flex-direction: row; 
            justify-content: center; 
            align-items: center; 
            margin-top: 40px;
            gap: 20px; 
            padding: 0 10px;
            flex-wrap: nowrap; 
        }

        .app-button:hover {
            background-color: #f0f0f0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .app-button {
            display: flex;
            align-items: center;
            border: 2px solid #000000;
            border-radius: 10px;
            padding: 10px 15px;
            background-color: #fff;
            text-decoration: none;
            color: #000;
            width: auto; 
            min-width: 140px; 
            max-width: 200px; 
            box-sizing: border-box; 
            margin: 0;
            flex: 1; 
            justify-content: center; 
            transition: background-color 0.2s, box-shadow 0.2s;
        }

        .btn-text-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .font-button {
            font-size: 18px;
            font-weight: bold;
            color: #000;
            white-space: nowrap; 
        }

        .available {
            font-size: 14px;
            color: #666;
            display: block;
            white-space: nowrap;
        }

        .store-icon {
            margin-right: 10px;
            max-width: 30px; 
            height: auto;
            flex-shrink: 0; 
        }

        /* ################# SECCIÓN "SOBRE MÍ" ################# */

        /* Layout específico para About Me (Antes: about-me-layout) */
        .about-section {
            display: flex;
            gap: 20px; 
            align-items: flex-start; 
            padding: 0 10px; 
            box-sizing: border-box;
        }

        .about-section .hero-image {
            width: 35%; 
            max-width: 250px; 
            flex-shrink: 0; 
            margin: 0; 
        }

        .about-section .text-block {
            width: 65%; 
            margin: 0; 
            padding: 0; 
        }

        .about-section .img-cover {
            width: 100%;
            height: auto; 
            object-fit: cover;
            display: block;
          
        }

        .about-section .text-block a {
            color: var(--main-text); 
            text-decoration: underline; 
        }

      .highlight-text2 {
    /* Tipografía igual al título principal */
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;       /* 48px aprox. Excelente tamaño para jerarquía */
    font-weight: 500;      /* Medium, para que se vea elegante, no tosco */
    
    /* Ajuste visual */
    letter-spacing: -1.5px; /* Un pelín menos apretado para que se lea mejor el nombre */
    line-height: 1.1;       /* Un poco más de aire vertical para que no se corten los ascendentes */
    
    /* Espaciado */
    margin-bottom: 20px;    /* Separa el título del texto descriptivo */
    margin-top: 40px;       /* Le da aire respecto a lo anterior */
    
    /* Alineación y Color */
    text-align: left;
    color: var(--main-text); /* Solo necesitas definirlo una vez */
    display: block;          /* Asegura que ocupe su propia línea */
}


.highlight-text {
    /* Tipografía igual al título principal */
    font-family: 'DM Sans', sans-serif;
    font-size: 1.9rem;       /* 48px aprox. Excelente tamaño para jerarquía */
    font-weight: 500;      /* Medium, para que se vea elegante, no tosco */
    /* Centrado y Tamaño */
    display: table;       /* Mantiene el ajuste al contenido */
    
    /* CAMBIO AQUÍ: */
    /* Arriba: 50px | Derecha: auto (o 0) | Abajo: 30px | Izquierda: 0 */
    margin: 50px auto 30px 0; 
    
    /* Estética Retro/Cartucho */

    border: 3px solid #000;
    box-shadow: -3px 3px 0 #000; 
    padding: 15px 35px 15px 20px;
    
 
}    


.bg-yellow {
    background-color: #FCE166; /* Tu amarillo original */
}


.bg-pink {
    background-color: #FF83AF ; /* #F4A6A6 Ejemplo: Un rosa suave */
}
/* --- Ajuste para móviles (responsive) --- */
@media (max-width: 600px) {
    .highlight-text {
        font-size: 1.3rem;    /* Bajamos de 3rem a 2.2rem */
        letter-spacing: -1px; /* Ajustamos el espaciado para que se lea bien en pequeño */
        margin-top: 30px;     /* Un poco menos de aire arriba */
        margin-bottom: 15px;
    }
}

        /* ################# GALERÍA ################# */
        .gallery {
            padding: 20px 10px 0 10px;
            column-count: 2; 
            column-gap: 20px; 
            max-width: 900px; 
            width: 100%; 
            box-sizing: border-box;
        }

        .card {
            break-inside: avoid; 
            margin-bottom: 20px;
            display: inline-block;
            width: 100%;
            border: 3px solid #000; 
            background-color: #fff; 
        }

        .card img {
            width: 100%;
            height: auto;
            display: block;
            transition: opacity 0.3s ease;
            cursor: zoom-in; 
            border: none; 
        }

        .card img:hover {
            opacity: 0.85;
        }

        .card-info {
            border-top: 3px solid #000; 
            background-color: #f4f4f4; 
            padding: 15px; 
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            line-height: 1.3;
            text-align: left;
        }

        .card-info span {
            display: block;
            margin-top: 8px; 
            font-weight: 400;
            font-size: 0.9rem;
            color: #333;
            line-height: 1.5;
        }

        /* ################# MODAL ################# */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.9); 
            backdrop-filter: blur(5px); 
            
            /* Centrado Flex */
            justify-content: center;
            align-items: center;
            padding-top: 0; 
        }

        .modal-content {
            display: block;
            max-width: 95%;
            max-height: 90vh; 
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            animation-name: zoom;
            animation-duration: 0.3s;
        }

        @keyframes zoom {
            from {transform:scale(0.8); opacity: 0;} 
            to {transform:scale(1); opacity: 1;}
        }

        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            font-family: sans-serif;
            z-index: 1001; 
        }

        .close:hover,
        .close:focus {
            color: #f1c241; 
            text-decoration: none;
            cursor: pointer;
        }


        /* =========================================================
           MEDIA QUERIES
           ========================================================= */

        @media (max-width: 768px) {
            .cart-image-box { height: 180px; }
            .nav-bar ul { gap: 15px; }
            .nav-bar a { font-size: 16px; }
        }

        @media (max-width: 600px) {
            .header-box { margin: 20px auto; }
            .nav-bar { padding: 10px 15px; }
            .nav-bar ul { gap: 10px; justify-content: flex-start; width: 100%; }
            .nav-bar a { font-size: 13px; }
            .header-title h1 { font-size: 18px; }
            .cart-image-box { height: 140px; }
            .cart-text-box h1 { font-size: 20px; }
            .cart-text-box { padding: 10px 10px; }
            .cart-text-box p { font-size: 13px; margin-top: 5px; }
            .cartridge { padding-bottom: 20px; }
            .buttons-group { gap: 8px; }
            .app-button { padding: 8px 5px; min-width: 0; }
            .store-icon { max-width: 22px; margin-right: 5px; }
            .font-button { font-size: 14px; }
            .available { font-size: 10px; }
            .about-section { flex-direction: column; gap: 15px; }
            .about-section .hero-image { width: 70%; max-width: 250px; margin: 0 auto; }
            .about-section .text-block { width: 100%; }
            .gallery { column-count: 1; }
        }
    