/* Hero de portada para landing de la Revista DeVuego */
.hero-revista {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, var(--dvgo-color-muy-oscuro) 0%, var(--dvgo-color-principal) 100%);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}

/* Textura de puntos que rellena el hueco a la derecha, a juego con el logo pixelado */
.hero-revista::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background-image: radial-gradient(rgba(255, 255, 255, .12) 2px, transparent 2px);
    background-size: 24px 24px;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
    pointer-events: none;
    z-index: 0;
}

.hero-revista-portada {
    flex-shrink: 0;
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-revista-badge {
    position: absolute;
    top: -.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1a1a1a;
    font-family: KodeMono-Medium;
    font-size: .75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .4rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    z-index: 2;
}

.hero-revista-img {
    display: block;
    width: 260px;
    height: auto;
    border-radius: .5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45), 0 0 0 6px rgba(255, 255, 255, .08);
    transition: transform .3s ease;
}

.hero-revista-img:hover {
    transform: scale(1.03) rotate(-1deg);
}

.hero-revista-info {
    color: #fff;
    flex: 1;
    min-width: 260px;
    position: relative;
    z-index: 1;
}

.hero-revista-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: KodeMono-Medium;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #FFD700;
    margin-bottom: .5rem;
}

.hero-revista-titulo {
    font-family: IBMPlexSans;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 .75rem 0;
    line-height: 1.1;
    border: 0;
}

.hero-revista-tagline {
    font-family: IBMPlexSerif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    max-width: 32rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.hero-revista-etiquetas {
    display: flex;
    gap: .75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-revista-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-family: IBMPlexSans;
    font-size: .85rem;
    padding: .4rem .9rem;
    border-radius: 2rem;
}

.hero-revista-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #FF9900;
    color: #fff !important;
    font-family: IBMPlexSans;
    font-weight: bold;
    font-size: 1.1rem;
    padding: .9rem 2rem;
    border-radius: .5rem;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(255, 153, 0, .4);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero-revista-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 153, 0, .5);
    text-decoration: none !important;
}

/* FAQ */
.faq-item {
    border: 1px dashed var(--dvgo-color-principal);
    border-radius: .5rem;
    margin-bottom: .75rem;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: .9rem 1.2rem;
    font-family: IBMPlexSans;
    font-weight: bold;
    font-size: 1rem;
    color: var(--dvgo-color-principal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background-color: var(--dvgo-gris-fondo-claro);
}

.faq-item summary i.fa-chevron-down {
    font-size: .85rem;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.faq-item[open] summary i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.2rem 1.1rem 1.2rem;
    margin: 0;
    font-family: IBMPlexSerif;
    font-size: .95rem;
    color: #333;
    line-height: 1.6;
}

/* Solo 3 personas: centradas y compactas, en vez del space-evenly pensado para muchas */
.mosaicomiembros-revista {
    justify-content: center;
    gap: 2rem;
}

.mosaicomiembros-revista.mosaicomiembros .tdmiembrodoble {
    flex-basis: auto;
    min-width: 200px;
    max-width: 220px;
}

@media (max-width: 768px) {
    .hero-revista {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-revista-titulo {
        font-size: 2.2rem;
    }

    .hero-revista-etiquetas {
        justify-content: center;
    }

    .hero-revista-tagline {
        margin-left: auto;
        margin-right: auto;
    }
}
