:root {
    --bg-color: #ffffff;
    --text-color: #1f1f1f;
    --text-muted: #333333;
    --glass-bg: rgba(255, 255, 255, 0.22);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: rgba(66, 80, 120, 0.10);
    --btn-bg: rgba(255, 255, 255, 0.32);
    --overlay: rgba(255, 255, 255, 0);
    --kirby-bg-url: url('https://static.vecteezy.com/ti/vecteur-libre/p1/27389825-vecteur-illustration-de-mignonne-en-train-de-dormir-kirby-vectoriel.jpg');
}

body.dark-mode {
    --bg-color: #121212;
    --text-color: #f1f1f1;
    --text-muted: #dcdcdc;
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    --btn-bg: rgba(40, 40, 50, 0.6);
    --overlay: rgba(10, 15, 30, 0.7);
}

/* Fondo con imagen de Kirby */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Arial', 'Verdana', sans-serif;
    background-color: var(--bg-color);
    background-image: linear-gradient(var(--overlay), var(--overlay)), var(--kirby-bg-url);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    scroll-behavior: smooth;
    color: var(--text-color);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body > * {
    position: relative;
    z-index: 2;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contenedor Frutiger Aero con Glassmorphism */
.container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    margin: 50px auto;
    width: min(760px, calc(100% - 32px));
    max-width: 760px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 12px 30px var(--glass-shadow),
        0 24px 60px rgba(100, 100, 100, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex: 1;
    animation: slideInUp 0.8s ease-out;
    box-sizing: border-box;
    transition: background 0.5s ease, border-color 0.5s ease;
}

h1 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    animation: slideInDown 0.8s ease-out;
}

.intro-texto {
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
    font-size: 1.05em;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.9s ease-out;
}

.botones {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

button:nth-child(1) {
    animation-delay: 0.2s;
}

button:nth-child(2) {
    animation-delay: 0.35s;
}

button:nth-child(3) {
    animation-delay: 0.5s;
}

button {
    padding: 12px 24px;
    font-size: 16px;
    background: var(--btn-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 18px var(--glass-shadow),
        0 14px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(20px);
    animation: slideInDown 0.6s ease-out 0.2s both;
    min-height: 48px;
}

button:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 14px 28px rgba(94, 110, 150, 0.14),
        0 22px 40px rgba(100, 100, 100, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

button:active {
    transform: translateY(-2px) scale(0.98);
}

/* ===== ACCORDION MENUS ===== */
.accordion-container {
    margin-bottom: 30px;
}
.accordion-item {
    margin-bottom: 12px;
}
.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    padding: 16px 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--glass-shadow);
    text-transform: none;
    letter-spacing: normal;
    min-height: auto;
}
.accordion-header:hover {
    background: var(--btn-bg);
    transform: translateY(-2px);
}
.accordion-header.active {
    background: var(--btn-bg);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.accordion-header.active i {
    transform: rotate(180deg);
}
.accordion-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 24px;
    display: none;
    animation: fadeIn 0.4s ease-out;
}
.accordion-content:not(.oculto) {
    display: block;
}
.accordion-content.info {
    margin-bottom: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
}

.info {
    background: var(--glass-bg);
    padding: 24px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 10px 24px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    animation: scaleIn 0.5s ease-out;
    margin-bottom: 24px;
    transition: background 0.5s ease;
}

.info:hover {
    transform: scale(1.02);
    box-shadow:
        0 14px 30px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.oculto {
    display: none;
}

.info h2 {
    color: var(--text-color);
    margin-top: 0;
    font-size: 1.8em;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.info h3 {
    color: var(--text-color);
    margin-top: 0;
    font-size: 1.2em;
}

.info p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.05em;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.info-extra {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: fadeIn 0.4s ease-out;
}

.btn-mas-info {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 10px 18px;
}

/* Estilo para GIFs en info */
.gif-info {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(100, 100, 100, 0.05);
    animation: slideInUp 0.6s ease-out 0.2s both;
    transition: all 0.4s ease;
}

.gif-info:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(100, 100, 100, 0.12);
}

/* Estilo para Name Tag */
.name-tag-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(100, 150, 255, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(100, 150, 255, 0.15));
    }
}

.name-tag-img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(100, 100, 100, 0.05);
    animation: slideInUp 0.6s ease-out both;
    transition: all 0.4s ease;
}

.name-tag-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(100, 100, 100, 0.12);
}

.name-tag-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
    color: #222;
    margin: 0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0 0 2px rgba(100, 100, 100, 0.1));
}

/* Estilo Graffiti para textos */
.graffiti {
    font-size: 52px !important;
    font-weight: 900 !important;
    color: #222 !important;
    font-family: 'Impact', 'Arial Black', sans-serif !important;
    text-shadow: 
        3px 3px 0px rgba(200, 200, 200, 0.3),
        6px 6px 0px rgba(180, 180, 180, 0.25),
        9px 9px 0px rgba(150, 150, 150, 0.2),
        12px 12px 5px rgba(100, 100, 100, 0.08) !important;
    transform: translate(-50%, -50%) rotate(-2deg) !important;
    letter-spacing: 2px !important;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5));
}

/* Menú Hamburguesa */
.menu-hamburguesa {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.btn-hamburguesa {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #333;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 0 0 20px 0;
    position: relative;
    z-index: 101;
    box-shadow:
        0 8px 18px rgba(94, 110, 150, 0.10),
        0 14px 30px rgba(100, 100, 100, 0.07);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: bold;
    backdrop-filter: blur(20px);
    animation: slideInDown 0.6s ease-out;
}

.btn-hamburguesa:hover {
    box-shadow:
        0 12px 24px rgba(94, 110, 150, 0.14),
        0 20px 38px rgba(100, 100, 100, 0.10);
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

.btn-hamburguesa:active {
    transform: scale(0.95);
}

/* Menú Desplegable */
.menu-desplegable {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 78vw);
    height: 100vh;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 60px 0 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 8px 0 25px rgba(100, 100, 100, 0.06);
    z-index: 99;
    overflow-y: auto;
    animation: slideInDown 0.5s ease-out;
}

.menu-desplegable.abierto {
    display: flex;
    flex-direction: column;
    animation: slideInDown 0.4s ease-out;
}

.menu-contenido {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
    width: 100%;
}

.menu-desplegable a {
    display: block;
    color: #333;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    border-left: 3px solid transparent;
}

.menu-desplegable a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #333;
    padding-left: 30px;
    border-left-color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.menu-spacer {
    flex: 1;
}

.menu-sugerencias {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Sugerencias */
.sugerencias {
    background: rgba(255, 255, 255, 0.14);
    margin-top: 30px;
    padding: 24px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 10px 24px rgba(94, 110, 150, 0.08),
        0 18px 42px rgba(100, 100, 100, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    animation: scaleIn 0.5s ease-out;
}

.sugerencias h2 {
    margin-top: 0;
    color: #222;
}

.sugerencias p {
    color: #333;
    line-height: 1.7;
}

.form-sugerencias {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.form-sugerencias input,
.form-sugerencias textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.3);
    color: #333;
    border-radius: 18px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-sugerencias textarea {
    min-height: 130px;
    resize: vertical;
}

.form-sugerencias input:focus,
.form-sugerencias textarea:focus {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(82, 123, 255, 0.28);
    transform: translateY(-1px);
}

.form-sugerencias button {
    align-self: flex-start;
}

/* Footer con Redes Sociales */
.footer {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 30px rgba(94, 110, 150, 0.08);
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.redes-sociales {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.redes-sociales a {
    color: #333;
    font-size: 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.redes-sociales a:hover {
    color: #333;
    transform: scale(1.4) rotate(15deg);
    box-shadow:
        0 12px 24px rgba(94, 110, 150, 0.14),
        0 18px 36px rgba(100, 100, 100, 0.10);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.redes-sociales a:active {
    transform: scale(1.2) rotate(10deg);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid #295cff;
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .info:hover,
    .gif-info:hover,
    .name-tag-img:hover,
    .btn-volver-arriba:hover,
    .redes-sociales a:hover,
    .btn-hamburguesa:hover,
    button:hover {
        transform: none !important;
    }
}

/* ===== BOTONES FLOTANTES ===== */
.btn-flotante {
    position: fixed;
    right: 24px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 120;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#btnVolverArriba {
    bottom: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#btnVolverArriba.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#btnThemeToggle {
    bottom: 90px; /* Sobre btnVolverArriba */
}

#btnMusica {
    right: 24px;
    bottom: 156px; /* Sobre btnThemeToggle */
}
#btnMusica.playing {
    color: #ff4785;
    animation: pulseMusic 2s infinite;
}

@keyframes pulseMusic {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 133, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 71, 133, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 133, 0); }
}

.btn-flotante:hover {
    transform: translateY(-6px) scale(1.08);
}
.btn-flotante:active {
    transform: translateY(-2px) scale(0.96);
}

/* ===== NUEVAS FEATURES ===== */

/* Animación Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contador */
.contador-dias {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    font-size: 1.1em;
    color: var(--text-color);
}
.numero-dias {
    display: inline-block;
    font-size: 2em;
    font-weight: 900;
    color: #ff6b95;
    margin: 0 8px;
    text-shadow: 0 2px 4px rgba(255, 107, 149, 0.3);
}

/* Proyectos Galería */
.proyectos {
    margin-top: 30px;
}
.proyectos-header {
    text-align: center;
    margin-bottom: 20px;
}
.proyectos-header h2 {
    color: var(--text-color);
    margin-bottom: 5px;
}
.proyectos-header p {
    color: var(--text-muted);
}
.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.proyecto-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.proyecto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--glass-shadow);
}
.proyecto-icono {
    font-size: 3em;
    margin-bottom: 15px;
}
.proyecto-info h3 {
    margin: 0 0 10px 0;
    color: var(--text-color);
}
.proyecto-info p {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.badge {
    background: rgba(255, 107, 149, 0.2);
    color: #ff6b95;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Cursor Canvas */
#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* Easter Egg */
.easter-egg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: opacity 1s;
}
.easter-egg-container.oculto {
    opacity: 0;
    visibility: hidden;
}
.easter-egg-text {
    color: #ff6b95 !important;
    text-shadow: 0 0 20px rgba(255, 107, 149, 0.8) !important;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Ajustes Responsive Botones Flotantes */
@media (max-width: 768px) {
    .btn-flotante {
        right: 16px;
        width: 52px;
        height: 52px;
    }
    #btnVolverArriba { bottom: 16px; }
    #btnThemeToggle { bottom: 82px; }
    #btnMusica { right: 16px; bottom: 148px; }
}

@media (max-width: 768px) {
    body { background-attachment: scroll; }
    .container { margin: 70px 16px 30px; padding: 24px 18px; border-radius: 24px; }
    h1 { font-size: clamp(1.8rem, 6vw, 2.2rem); letter-spacing: 1px; }
    .intro-texto, .info p, .sugerencias p { font-size: 1rem; line-height: 1.65; }
    .botones { flex-direction: column; }
    .botones button, .form-sugerencias button, .btn-mas-info { width: 100%; }
    .info, .sugerencias, .contador-dias { padding: 18px; border-radius: 20px; }
    .info h2, .sugerencias h2 { font-size: 1.5rem; }
    .name-tag-text { font-size: 34px; }
    .graffiti { font-size: 38px !important; }
    .menu-desplegable { width: min(300px, 85vw); }
    .btn-hamburguesa { padding: 14px 18px; }
    .footer { padding: 24px 16px; }
    .redes-sociales { gap: 14px; }
    .redes-sociales a { width: 48px; height: 48px; font-size: 26px; }
}

@media (max-width: 480px) {
    .container { width: min(100% - 20px, 760px); margin: 64px 10px 24px; padding: 18px 14px; }
    h1 { font-size: 1.6rem; }
    button { font-size: 14px; padding: 12px 16px; letter-spacing: 0.5px; }
    .info h2, .sugerencias h2 { font-size: 1.35rem; }
    .name-tag-text { font-size: 26px; }
    .graffiti { font-size: 28px !important; letter-spacing: 1px !important; }
    .menu-desplegable a { font-size: 15px; padding: 14px 16px; }
    .form-sugerencias input, .form-sugerencias textarea { font-size: 16px; }
    .numero-dias { font-size: 1.6em; }
}

/* ===== SELECTOR DE IDIOMA (píldoras) ===== */
.lang-selector {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 10px 16px 14px;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 10px;
    font-size: 11px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(94, 110, 150, 0.08);
    min-height: auto;
    min-width: auto;
    animation: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #444;
    border-left: none;
    font-family: 'Poppins', sans-serif;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 110, 150, 0.14);
    padding-left: 10px;
    border-left: none;
    color: #222;
}

.lang-option:active {
    transform: translateY(0) scale(0.96);
}

.lang-option.active {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
    color: #111;
    box-shadow:
        0 2px 8px rgba(94, 110, 150, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ===== TOAST DE NOTIFICACIÓN ===== */
.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 14px 40px var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast-notification.show {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}
.toast-notification i {
    color: #ff6b95; /* Color Kirby */
    font-size: 1.4em;
}

