/* Variables de colores - Tema Pasatiempo */
:root {
    --azul-principal: #1e3a5f;
    --azul-medio: #2d5aa0;
    --azul-claro: #4a90e2;
    --morado-oscuro: #3d2352;
    --morado-claro: #6b46c1;
    --plateado: #e2e8f0;
    --blanco-suave: #f8fafc;
    --transicion: all 0.3s ease;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--azul-principal);
    color: var(--blanco-suave);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Cinzel Decorative', cursive;
    font-weight: 700;
    color: var(--plateado);
    text-shadow: 0 0 5px rgba(226, 232, 240, 0.5);
}

/* Fondo mágico */
.fondo-magico {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 90, 160, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(30, 58, 95, 0.3) 0%, transparent 50%);
    z-index: -2;
}

/* Partículas mágicas */
.particulas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particula {
    position: absolute;
    background-color: var(--plateado);
    border-radius: 50%;
    opacity: 0.7;
    animation: caida linear infinite;
}

@keyframes caida {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hojas flotantes */
.hojas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hoja {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234a90e2"><path d="M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z"/></svg>');
    background-size: contain;
    opacity: 0.7;
    animation: flotar 15s linear infinite;
}

@keyframes flotar {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--morado-claro);
    color: var(--blanco-suave);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transicion);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.5);
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover:after {
    left: 100%;
}

/* Header */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(30, 58, 95, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.8rem;
    color: var(--plateado);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid var(--plateado);
    box-shadow: 0 0 10px rgba(226, 232, 240, 0.3);
}



nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 25px;
}

nav a {
    color: var(--blanco-suave);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transicion);
    position: relative;
}

nav a:hover {
    color: var(--plateado);
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--plateado);
    transition: var(--transicion);
}

nav a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: tituloBrillo 3s infinite alternate;
}

@keyframes tituloBrillo {
    0% {
        text-shadow: 0 0 5px rgba(226, 232, 240, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(226, 232, 240, 0.8), 0 0 30px rgba(107, 70, 193, 0.6);
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--blanco-suave);
}

/* Secciones */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--morado-claro);
    margin: 15px auto;
    border-radius: 3px;
}

/* Galería */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.producto {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transicion);
    background-color: var(--azul-medio);
}

.producto:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.producto-img {
    width: 100%;
    height: 250px;
    background-color: var(--morado-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.producto-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transicion);
}

.producto-placeholder {
    font-size: 4rem;
    color: var(--plateado);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.producto:hover .producto-imagen {
    transform: scale(1.05);
}

.producto-info {
    padding: 20px;
}

.producto h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.btn-producto {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--plateado);
    text-decoration: none;
    border: 2px solid var(--plateado);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transicion);
}

.btn-producto:hover {
    background-color: var(--plateado);
    color: var(--azul-principal);
    transform: translateY(-2px);
}

/* Sobre la artista */
.sobre-artista {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.artista-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.foto-artista {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transicion);
    border: 3px solid var(--plateado);
}

.foto-artista:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.artista-info {
    flex: 1;
    min-width: 300px;
}

.artista-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.artista-info .btn {
    margin-top: 10px;
}

/* Sección Redes Sociales */
.seccion-redes {
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--morado-claro) 100%);
    padding: 80px 5%;
}

.contenido-redes {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.texto-redes {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--blanco-suave);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.llamadas-accion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.cta-item {
    background-color: rgba(248, 250, 252, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    transition: var(--transicion);
    border: 2px solid transparent;
}

.cta-item:hover {
    transform: translateY(-5px);
    border-color: var(--plateado);
    background-color: rgba(248, 250, 252, 0.2);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-item p {
    margin-bottom: 20px;
    color: var(--blanco-suave);
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--plateado);
    color: var(--azul-principal);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transicion);
    box-shadow: 0 4px 15px rgba(226, 232, 240, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 232, 240, 0.5);
}

.incentivos {
    background-color: rgba(30, 58, 95, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 2px solid var(--plateado);
}

.incentivo-texto {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--plateado);
}

.lista-incentivos {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.lista-incentivos li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: var(--blanco-suave);
}

/* Footer */
footer {
    background-color: var(--morado-oscuro);
    padding: 40px 5%;
    text-align: center;
}

.footer-llamada {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--plateado);
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background-color: var(--plateado);
    border-radius: 30px;
    color: var(--azul-principal);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transicion);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.red-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 232, 240, 0.6);
}

.red-texto {
    margin-right: 8px;
}

.red-icon {
    font-weight: bold;
}

.footer-beneficio {
    font-size: 1rem;
    color: var(--blanco-suave);
    margin: 20px 0;
    font-style: italic;
}

/* Botón fijo de contacto */
.btn-contacto-fijo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--morado-claro);
    color: var(--blanco-suave);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
    transition: var(--transicion);
    animation: pulso 2s infinite;
}

@keyframes pulso {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(107, 70, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0);
    }
}

.btn-contacto-fijo:hover {
    transform: scale(1.1);
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .artista-info-centrado {
        padding: 10px;
    }
    
    .artista-info-centrado p {
        font-size: 1.1rem;
    }
    
    .sobre-artista {
        flex-direction: column;
        text-align: center;
    }
    
    .artista-img {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .foto-artista {
        max-width: 300px;
    }
    
    .llamadas-accion {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-item {
        padding: 20px 15px;
    }
    
    .texto-redes {
        font-size: 1.1rem;
    }
    
    .redes-sociales {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .red-social {
        width: 85%;
        max-width: 280px;
        justify-content: center;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}