/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1c0e2e;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

/* Container geral estilo "embed" */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Header */
header {
    margin-bottom: 20px;
}

.main-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    background-size: cover;
    background-position: center;
    border: 5px solid #ff6b81;
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    margin-top: 10px;
    color: #ff6b81;
}

.description {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.8;
}

/* Music player */
.music-player {
    margin: 30px 0;
}

/* Timer */
.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-unit {
    font-size: 24px;
    font-weight: bold;
}

.separator-heart {
    color: #ff6b81;
    font-size: 22px;
}

/* Galeria */
.gallery-section {
    margin: 40px 0;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #6a0dad;
}

.gallery-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(255, 107, 129, 0.5), 0 0 10px rgba(255, 107, 129, 0.4);
    border: 3px solid #bb86fc;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 999;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-btn,
.nav-btn {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.close-btn {
    top: 20px;
    right: 30px;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Música dedicada */
.music-section {
    margin: 50px 0;
}

.music-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.playlist-player {
    display: flex;
    justify-content: center;
    align-items: center;
}

.playlist-player iframe {
    max-width: 100%;
    border: none;
}

/* Nossos Favoritos */
.our-favorites-section {
    margin: 60px 0;
}

.favorites-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.favorites-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.favorite-item {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 15px;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.favorite-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 129, 0.5);
}

.favorite-cover {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid #ff6b81;
}

.favorite-name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.favorite-artist,
.favorite-type {
    font-size: 14px;
    color: #ccc;
}