.producto-detalle {
    background: linear-gradient(135deg, var(--color-bg) 0%, #0d1117 100%);
    min-height: 100vh;
}

.producto-hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    position: relative;
    /*background: linear-gradient(135deg, rgba(0, 255, 200, 0.03) 0%, transparent 50%);*/
}

.producto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

.producto-detalle h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.producto-detalle .subtext {
    color: var(--color-subtle);
    margin-bottom: 3rem;
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.producto-imagen {
    text-align: center;
    margin: 3rem 0 4rem;
}

.producto-imagen img {
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(0, 255, 200, 0.1);
    transition: var(--transition-smooth);
}

.producto-imagen img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(0, 255, 200, 0.2);
}

.bloque {
    background: var(--color-glass);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bloque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.bloque:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 200, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bloque:hover::before {
    opacity: 1;
}

.bloque h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.bloque p,
.bloque ul {
    font-size: 1rem;
    color: var(--color-subtle);
    line-height: 1.7;
}

.bloque ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.bloque li {
    margin-bottom: 0.5rem;
}

.bloque li::marker {
    color: var(--color-accent);
}

.volver {
    text-align: center;
    margin: 4rem 0 2rem;
}

.volver .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.1) 0%, rgba(0, 255, 200, 0.05) 100%);
    color: var(--color-accent);
    text-decoration: none;
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.volver .btn-cta:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, #00e6b8 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 200, 0.3);
}

@media (max-width: 768px) {
    .producto-hero {
        padding: 3rem 1rem 2rem;
    }

    .bloque {
        padding: 1.5rem;
    }

    .producto-imagen img {
        max-width: 300px;
    }
}