@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap' );

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1DB954; /* Verde Spotify */
}

/* Ajuste do Card de Música */
.music-card {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

/* --- ESTILO DO CARROSSEL --- */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-slide {
    display: none; /* Esconde as imagens por padrão */
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
}

/* Animação de transição suave */
.fade {
    animation: fadeAnim 1.5s;
}

@keyframes fadeAnim {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* --- TEXTO ROMÂNTICO --- */
.romantic-text {
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    font-style: italic;
    margin-top: 20px;
}

.heart {
    color: #ff4d4d;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
