/* public/css/style.css - Formato blog */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fondo global */
.background-image {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a0a1e 0%, #1a0a2e 50%, #0a0a1e 100%);
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.78);
    z-index: -1;
}

/* Selector de idioma */
.language-selector {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 8px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.25s;
    font-size: 0.9rem;
}

.lang-btn.active,
.lang-btn:hover {
    background: #ffb366;
    border-color: #ffb366;
}

/* Contenedor principal */
.container {
    position: relative;
    z-index: 10;
    padding: 100px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section (contenido del antiguo splash) */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-image-container {
    margin-bottom: 2rem;
}

.hero-image {
    width: 180px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #7a70fa;
    box-shadow: 0 0 30px rgba(122, 112, 250, 0.6);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffb366;
    font-weight: 400;
    margin-top: 1rem;
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #7a70fa;
    text-shadow: 0 0 25px rgba(122, 112, 250, 0.7);
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #ffb366;
    font-weight: 400;
}

/* Artículo del blog */
.blog-post {
    background: rgba(25,25,45,0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.blog-section {
    margin-bottom: 2.5rem;
}

.blog-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    color: #7a70fa;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(122, 112, 250, 0.3);
    padding-bottom: 0.5rem;
    text-align: center;
}

.blog-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* Lista del blog */
.blog-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.blog-list li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog-list li:last-child {
    border-bottom: none;
}

/* Sección de precios */
.pricing-section {
    background: rgba(18,8,163,0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(122, 112, 250, 0.2);
}

.price-card,
.offer-card {
    background: rgba(25,25,45,0.75);
    border-radius: 16px;
    padding: 20px;
    margin: 15px auto;
    max-width: 400px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.offer-card.gift {
    border: 1px solid rgba(255,215,0,0.3);
}

.offers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
}

.price-text,
.offer-text,
.gift-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.gift-text {
    color: #ffd700;
}

/* Sección CTA */
.cta-section {
    text-align: center;
    background: rgba(122, 112, 250, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(122, 112, 250, 0.3);
}

.songs-link {
    display: inline-block;
    margin: 25px auto;
    padding: 16px 40px;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #1208a3, #7a70fa);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(122, 112, 250, 0.5);
    transition: all 0.3s;
    font-weight: 600;
}

.songs-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(122, 112, 250, 0.7);
}

/* Footer del blog */
.blog-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .blog-text,
    .description,
    .blog-list li {
        font-size: 1rem;
    }

    .entry-title {
        font-size: 2rem;
    }

    .container {
        padding: 80px 15px 60px;
    }

    .offers {
        gap: 8px;
    }

    .price-text,
    .offer-text,
    .gift-text {
        font-size: 1.2rem;
    }
}
