* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
         body {
            cursor: url('https://doesdwelling.neocities.org/cursor/veado.png') 8 8, auto;
            margin: 0;
            font-family: 'Varela Round', sans-serif;
            background-color: #FAF8F4;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        a, button, .play-btn, [onclick] {
            cursor: url('https://doesdwelling.neocities.org/cursor/chifre%20pointer.png') 8 8, pointer !important;
        }
        
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #A85050;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 500;
}

.language-switcher a {
    color: #5C5C5C;
    text-decoration: none;
}

.language-switcher a:last-child {
    color: #A85050;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #5C5C5C;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    font-size: 14px;
}

nav ul li a:hover {
    color: #A85050;
}

 .music-player {
            background: rgba(165, 42, 42, 0.1);
            padding: 10px 15px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 300px;
            margin: 20px auto;
            font-family: 'Varela Round', sans-serif;
            font-size: 14px;
            border: 1px solid rgba(165, 42, 42, 0.2);
        }

        .play-btn {
            background: #A52A2A;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: background 0.3s;
        }

        .play-btn:hover {
            background: #8B0000;
        }

        .music-info {
            flex-grow: 1;
        }

        .music-title {
            font-weight: bold;
            color: #A52A2A;
            font-size: 13px;
        }

        .music-artist {
            font-size: 11px;
            color: #666;
        }

        .container-galeria {
            display: flex;
            gap: 30px;
            flex-direction: row;
            width: 100%;
            max-width: 1200px;
            background-color: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            margin: 40px auto;
            padding: 20px;
        }

        .frase-motivacional {
            width: 50%;
            flex-shrink: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .slideshow {
            width: 50%;
            flex-shrink: 0;
            text-align: center;
        }

        .slideshow figcaption {
            font-size: 16px;
            font-weight: normal;
            color: #7f8c8d;
            margin-bottom: 15px;
            display: block;
            font-style: italic;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .slides-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            width: 600%; 
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slides-list li {
            width: 16.666%;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .image-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f0f0;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-info {
            height: 12%;
            flex-shrink: 0;
            background: #A52A2A;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }

        .slide-caption {
            color: white;
            text-align: left;
            font-size: 13px;
            font-weight: normal;
            line-height: 1.3;
            margin: 0;
            flex: 1;
        }

        .download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            color: #A52A2A;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
            margin-left: 10px;
        }

        .download-btn:hover {
            background-color: #f8f8f8;
            transform: scale(1.1);
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
        }

        .prev-button, .next-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #A52A2A;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            z-index: 10;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev-button:hover, .next-button:hover {
            background: white;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .prev-button {
            left: 15px;
        }

        .next-button {
            right: 15px;
        }

        .titulo-pinterest {
            color: #A52A2A;
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .caption-stripe {
            background-color: #A52A2A;
            width: 100%;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            color: white;
            font-size: 14px;
            margin-top: 15px;
            border-radius: 8px;
        }

        .caption-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-grow: 1;
        }

        .caption-stripe .download-btn {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .caption-stripe .download-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* FOOTER */
        #main-footer p, #main-footer a {
            color: #bdc3c7;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            text-align: center;
            font-size: 14px;
        }

        #main-footer a:hover {
            color: white; 
        }

        .footer-info {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4A4A4A;
            color: #bdc3c7;
            font-size: 12px;
            font-family: 'Varela Round', sans-serif;
        }

        .full-width-line {
            border: none;
            height: 1px;
            background-color: #333333;
            margin: 20px 0 10px 0;
            width: 100vw;
            opacity: 0.6;
            margin-left: calc(-50vw + 50%);
        }

        #main-footer {
            text-align: center;
            padding: 10px 0 20px 0;
            font-family: 'Varela Round', sans-serif;
            width: 100vw;
            max-width: 1200px;
            margin: 0;
        }

        .copyright {
            margin-top: 10px;
            font-size: 0.9em;
            color: #666;
        }

        .copyright p {
            margin: 0;
            padding: 0;
        }
    
    @media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
    
    .header-main .container {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
        text-align: center;
    }
    
    .logo {
        order: 1;
        margin-bottom: 5px;
    }
    
    .language-switcher {
        order: 2;
        margin-bottom: 8px;
    }
    
    nav {
        order: 3;
        width: 100%;
    }
    
    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin: 0;
        padding: 0;
    }
    
    body {
        padding-top: 140px;
    }

    .container-galeria {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .frase-motivacional {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .slideshow {
        width: 100%;
        order: -1;
    }
    
    .slideshow-container {
        height: 350px;
    }
    
    .titulo-pinterest {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .slideshow figcaption {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .prev-button, .next-button {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        font-size: 18px;
    }
    
    .prev-button {
        left: 10px;
    }
    
    .next-button {
        right: 10px;
    }
    
    .music-player {
        margin: 15px auto;
        max-width: 280px;
    }
    
    .slide-info {
        padding: 6px 12px;
    }
    
    .download-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .slide-caption {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 10px;
    }
    
    .header-main .container {
        padding: 10px 0;
        gap: 6px;
    }
    
    .logo {
        margin-bottom: 3px;
    }
    
    .language-switcher {
        margin-bottom: 6px;
    }
    
    nav ul {
        gap: 8px;
    }
    
    body {
        padding-top: 130px;
    }
    
    .container-galeria {
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .slideshow-container {
        height: 300px;
    }
    
    .frase-motivacional p {
        font-size: 0.95em;
        line-height: 1.5;
    }
    
    .music-player {
        max-width: 250px;
        padding: 8px 12px;
    }
    
    .music-title {
        font-size: 12px;
    }
    
    .music-artist {
        font-size: 10px;
    }
    
    .slideshow figcaption {
        font-size: 13px;
    }
    
    .slide-caption {
        font-size: 11px;
    }
    
    .download-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .prev-button, .next-button {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        font-size: 16px;
    }
}