/* ==========================================================================
   PLUGIN DETAIL — Estilos de las secciones de ficha de producto
   ========================================================================== */

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.plugin-breadcrumb {
    background-color: var(--navbar-bg-color);
    padding: 12px 25px;
    border-bottom: 1px solid var(--separator-color);
}

.plugin-breadcrumb .breadcrumb {
    margin: 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.plugin-hero {
    background-color: var(--primary-bg-color);
    padding: var(--section-padding) 25px;
}

.plugin-hero-tagline {
    color: var(--highlight-color);
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.plugin-hero-name {
    color: var(--heading-color);
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.plugin-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.plugin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.plugin-hero-image {
    border: 1px solid var(--separator-color);
    width: 100%;
}

/* ==========================================================================
   HIGHLIGHTS
   Las tarjetas usan .info-card de main.css
   ========================================================================== */
.plugin-highlights {
    background-color: var(--navbar-bg-color);
    padding: var(--section-padding) 25px;
}

/* ==========================================================================
   FEATURE BLOCKS
   El fondo alterna automáticamente entre bloques consecutivos.
   ========================================================================== */
.plugin-feature-block {
    padding: var(--section-padding) 25px;
    background-color: var(--primary-bg-color);
}

.plugin-feature-block:nth-child(even of .plugin-feature-block) {
    background-color: var(--navbar-bg-color);
}

.plugin-feature-title {
    color: var(--heading-color);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.plugin-feature-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.plugin-feature-image {
    border: 1px solid var(--separator-color);
    width: 100%;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.plugin-cta {
    background-color: var(--highlight-color);
    padding: var(--section-padding) 25px;
}

.plugin-cta-title {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.plugin-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   VOLVER
   ========================================================================== */
.plugin-back {
    padding: 2.5rem 25px;
    background-color: var(--primary-bg-color);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .plugin-hero-name {
        font-size: 2rem;
    }

    .plugin-feature-title {
        font-size: 1.5rem;
    }

    .plugin-cta-title {
        font-size: 1.75rem;
    }

    .plugin-hero-actions,
    .plugin-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
