/* CONTENEDOR PRINCIPAL DEL DETALLES */
.detalle-root {
    max-width: 850px;
    margin: 40px auto 70px;
    padding: 0 20px;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
}

/* TÍTULO Y META DEL BLOG */
.detalle-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1e2a32;
    line-height: 1.25;
    margin-bottom: 12px;
}

.detalle-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 25px;
}

/* BOTÓN VOLVER AL LISTADO */
.detalle-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #236a95;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 25px;
    transition: 0.15s ease;
}

.detalle-back-btn:hover {
    text-decoration: underline;
    transform: translateX(-3px);
}

/* IMAGEN PRINCIPAL DEL BLOG */
.detalle-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    margin-bottom: 35px;
    object-fit: cover;
}

/* CONTENIDO DEL BLOG */
.detalle-content {
    font-size: 1.06rem;
    line-height: 1.68;
    color: #373b47;
}

.detalle-content p { margin-bottom: 18px; }

.detalle-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #236a95;
    margin: 28px 0 12px;
}

.detalle-content ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.detalle-content li {
    margin-bottom: 10px;
    line-height: 1.55;
}

/* SEPARADOR ANTES DEL FOOTER */
.detalle-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 50px 0 40px;
}

/* BOTONES DE ACCIONES (PDF / COMPARTIR) */
.detalle-actions {
    display:flex;
    gap:14px;
    margin:25px 0;
    align-items:center;
}

.detalle-btn {
    padding:10px 16px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    border:none;
    transition:.15s ease;
    font-size:0.95rem;
}

.detalle-primary {
    background:#f28f32;
    color:white;
}

.detalle-primary:hover {
    background:#d9761f;
}

.detalle-secondary {
    background:#236a95;
    color:white;
}

.detalle-secondary:hover {
    background:#1d577c;
}

/* CONTENEDOR DEL DROPDOWN */
.share-wrapper {
    position: relative;
}

/* MENÚ DE COMPARTIR */
.share-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 170px;
    z-index: 50;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

/* BOTONES DEL DROPDOWN */
.share-dropdown button {
    background: transparent;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 10px;
    text-align: left;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover limpio */
.share-dropdown button:hover {
    background: #f1f5f9 !important;
}

/* Evitar borde al hacer clic */
.share-dropdown button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ANIMACIÓN ACTIVADA */
.share-dropdown.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* COLORES DE ICONOS SEGÚN RED */
.share-dropdown .whatsapp { color: #25D366; }
.share-dropdown .facebook { color: #1877F2; }
.share-dropdown .linkedin { color: #0A66C2; }
.share-dropdown .copylink { color: #374151; }

/* ICONOS OPTIMIZADOS */
.share-dropdown svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

/* CAJA DE COMPARTIR */
.share-box {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.share-box a,
.share-box button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

/* OCULTAR ELEMENTOS */
.hidden { display:none !important; }
.hidden-pdf { display:none !important; }

/* CUADRO DE SUSCRIPCIÓN */
.suscripcion-box {
    margin-top:40px;
    padding:18px;
    border-radius:12px;
    border:1px solid #e9eef3;
    background:#fbfbfd;
}

.suscripcion-box h3 { color:#1e2a32; margin-bottom:6px; }
.suscripcion-box p  { color:#6b7280; margin-bottom:12px; }

#suscribirForm {
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    align-items:center;
}

#emailInput {
    padding:10px 12px;
    border-radius:8px;
    border:1px solid #d1d5db;
    min-width:260px;
    font-size:1rem;
}

#suscribirForm button {
    background:#236a95;
    color:#fff;
    border:none;
    padding:10px 14px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
}

#suscripcionMsg {
    margin-top:10px;
    font-size:0.95rem;
}

/* RESPONSIVE PARA MÓVIL */
@media (max-width:600px) {
    .detalle-actions {
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    #suscribirForm {
        width:100%;
        flex-direction:column;
        align-items:stretch;
    }

    #emailInput { width:100%; }
}
